@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
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.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);
  }
}

.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {

  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.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);
  }
}

.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);
  }
}

.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);
  }
}

.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);
  }
}

.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);
  }
}

.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@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;
  }
}

.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);
  }
}

.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);
  }
}

.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;
  }
}

.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;
  }
}

.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;
  }
}

.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);
  }
}

.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);
  }
}

.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);
  }
}

.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.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);
  }
}

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.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;
  }
}

.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);
  }
}

.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);
  }
}

.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;
  }
}

.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;
  }
}

.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;
  }
}

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.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;
  }
}

.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;
  }
}

.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;
  }
}

.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;
  }
}

.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;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.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;
  }
}

.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;
  }
}

.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;
  }
}

.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;
  }
}

.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;
  }
}

.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);
  }
}

.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.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);
  }
}

.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);
  }
}

.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);
  }
}

.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);
  }
}

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.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);
  }
}

.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;
  }
}

.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;
  }
}

.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);
  }
}

.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}

/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical>.swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow>.swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode>.swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal>.swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical>.swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  border-left: #0072ef solid 3px;
  border-bottom: #0072ef solid 3px;
  transform: rotate(45deg);
  left: 13px;
}

.swiper-button-next:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  border-right: #0072ef solid 3px;
  border-top: #0072ef solid 3px;
  transform: rotate(45deg);
  right: 13px;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: relative;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: -43px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #fff;
  opacity: 1;
  border: 0;
  margin: 0 8px;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #fccf5a;
}

.swiper-container-vertical>.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #989898;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical>.swiper-pagination-progressbar,
.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal>.swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical>.swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: 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%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next+.swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

.swiper-button-prev,
.swiper-button-next {
  top: 50%;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  cursor: pointer;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  /* border-radius: 50%; */
  background-color: rgba(255, 255, 255, 0.13);
  -webkit-tap-highlight-color: transparent;
}

.swiper-button-prev:hover,
.swiper-button-prev:active,
.swiper-button-next:hover,
.swiper-button-next:active {
  /* background-color: #fff; */
}

.swiper-button-prev:focus,
.swiper-button-prev:active,
.swiper-button-prev:hover,
.swiper-button-next:focus,
.swiper-button-next:active,
.swiper-button-next:hover {
  outline: 0;
  -moz-outline-style: none;
}

/*
.swiper-button-prev {
  background-image: url(../img/swiper-prev-disabled.svg);
  left: 16px;
}
.swiper-button-prev:before {
  content: "";
  background-image: url(../img/swiper-next.svg);
  opacity: 0;
}
.swiper-button-prev.swiper-button-disabled {
  background-image: url(../img/swiper-prev-disabled.svg);
  background-color: rgba(255, 255, 255, 0.13);
  opacity: 1;
}
.swiper-button-prev:hover, .swiper-button-prev:active {
  background-image: url(../img/swiper-prev.svg);
}

 .swiper-button-next {
  background-image: url(../img/swiper-next-disabled.svg);
  right: 16px;
}
.swiper-button-next:before {
  content: "";
  background-image: url(../img/swiper-next.svg);
  opacity: 0;
}
.swiper-button-next.swiper-button-disabled {
  background-image: url(../img/swiper-next-disabled.svg);
  background-color: rgba(255, 255, 255, 0.13);
  opacity: 1;
}
.swiper-button-next:hover, .swiper-button-next:active {
  background-image: url(../img/swiper-next.svg);
} */

.scroll--hidden {
  overflow: hidden;
}

.lg-view {
  display: block;
}

.sm-view {
  display: none;
}

.is-toggle {
  display: block;
}

.in-view {
  opacity: 0;
}

body {
  min-width: inherit;
}

.content {
  max-width: 1164px;
  margin: 0 auto;
  padding: 0px 0;
  color: #222222;
  font-family: "微軟正黑體", "5FAE8EDF6B639ED19AD4", "Microsoft JhengHei", "PingFang TC", "Hiragino Sans CNS", sans-serif;
}

.content h1 {
  font-size: 34px;
  font-weight: bold;
  color: #222222;
  padding: 0 0 47px 0;
  margin: 0;
  line-height: normal;
  /*font-family: Verdana, Microsoft JhengHei, "微軟正黑體", sans-serif;*/
}

.breadcrumbs * {
  font-family: sans-serif;
}

.vitoas-container {
  position: relative;
  width: 100%;
  max-width: 1164px;
  margin: 0 auto;
  font: 1em/1.6 "微軟正黑體", "5FAE8EDF6B639ED19AD4", "Microsoft JhengHei", "PingFang TC", "Hiragino Sans CNS", sans-serif;
  min-width: 320px;
  -webkit-text-size-adjust: 100%;
  image-rendering: -webkit-optimize-contrast;
  color: #1a1a1a;
  padding-bottom: 120px;
  z-index: 14;
  background-color: #fff;
  /* fade image in while loading and show a spinner as background image (good for progressive images) */
}

.vitoas-container * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.vitoas-container a {
  outline: none;
  color: #1a1a1a;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  cursor: pointer;
  behavior: expression(this.onFocus=this.blur());
}

.vitoas-container a:focus,
.vitoas-container a:active,
.vitoas-container a:hover {
  outline: 0;
  -moz-outline-style: none;
  text-decoration: none;
}

.vitoas-container :focus {
  outline: none;
}

.vitoas-container img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -moz-user-select: none;
  -webkit-user-select: none;
  display: block;
}

.vitoas-container strong {
  font-weight: 700;
}

.vitoas-container .lazyload {
  opacity: 0;
}

.vitoas-container .lazyloading {
  opacity: 1;
  transition: opacity 300ms;
  background: #f7f7f7;
}

.vitoas-container .action {
  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;
}

.vitoas-container .section-header {
  margin-bottom: 25px;
}

.vitoas-container .section-header h3,
.vitoas-container .section-header .title {
  position: relative;
  font-size: 36px;
  line-height: 48px;
  text-align: center;
  font-weight: 700;
  margin: 0 auto 25px;
}

.vitoas-container .section-header .line {
  position: absolute;
  bottom: -14px;
  width: 100%;
  height: 4px;
  background: #fee870;
  background: linear-gradient(90deg, #fee870 0%, #fb9731 24%, #fccf5a 55%, #f15a24 100%);
}

.vitoas-container .section-header p,
.vitoas-container .section-header .sub-title {
  font-size: 24px;
  line-height: 36px;
  text-align: center;
}

.vitoas-container .section-header p span,
.vitoas-container .section-header .sub-title span {
  display: inline-block;
}

.vitoas-container .video-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.vitoas-container .video-container .video {
  position: relative;
  display: block;
  padding-bottom: 56.25%;
  cursor: pointer;
  background-color: #e6e6e6;
}

.vitoas-container .video-container .video img.placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
}

.vitoas-container .video-container .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.vitoas-container .video-container .video:hover,
.vitoas-container .video-container .video:active {
  filter: brightness(1.1);
}

.vitoas-container .video-container .playbutton {
  position: absolute;
  top: calc(50% - 77px / 2);
  right: calc(50% - 77px / 2);
  width: 77px;
  height: 77px;
}

.vitoas-container .video-container .icon-play {
  background-image: url(../img/icon-play.svg);
  width: 77px;
  height: 77px;
}

.vitoas-container .vitoas-icon {
  width: 24px;
  height: 24px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  background-position: center center;
}

.vitoas-container .vitoas-btn {
  width: 340px;
  height: 70px;
  line-height: 70px;
  background-color: #f06b31;
  background-image: url(../img/btn-bg.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  font-size: 24px;
  position: relative;
  text-align: center;
  display: block;
  margin: 0 auto;
  text-decoration: none;
  font-weight: 700;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.vitoas-container .vitoas-btn .icon-arrow {
  position: absolute;
  right: 25px;
  top: calc(50% - 24px / 2);
  background-image: url(../img/arrow-right_white.svg);
  width: 24px;
  height: 24px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.vitoas-container .vitoas-btn:hover,
.vitoas-container .vitoas-btn:active {
  filter: brightness(1.2);
}

.vitoas-container .vitoas-btn:hover .icon-arrow,
.vitoas-container .vitoas-btn:active .icon-arrow {
  right: 16px;
}

.vitoas-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  z-index: 2;
  border-top: 1px solid #e6e6e6;
  background-color: #fff;
}

.vitoas-header .logo {
  width: 88px;
  height: 35px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  background-image: url(../img/logo.svg);
  position: absolute;
  top: 34px;
  left: 56px;
  z-index: 6;
  display: block;
}

.vitoas-header .logo--white {
  background-image: url(../img/logo_white.svg);
}

.vitoas-header.sticky {
  border-top: 0;
}

.vitoas-content {
  position: relative;
  margin-left: 200px;
  width: calc(100% - 200px);
  overflow: hidden;
}

.vitoas-content.plus-header {
  border-top: 1px solid #e6e6e6;
}

.vitoas-menu-panel {
  position: relative;
  padding-top: 100px;
  padding-bottom: 20px;
  min-height: 650px;
}

.vitoas-menu-panel .logo {
  display: none;
}

.vitoas-menu-panel .action {
  display: none;
  text-align: center;
  font-size: 18px;
}

.vitoas-menu-panel .action .close {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -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;
  cursor: pointer;
}

.vitoas-menu-panel .action .icon-close {
  overflow: hidden;
  margin-left: 10px;
  padding: 0;
  width: 21px;
  height: 21px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/icon-close.svg);
}

.vitoas-menu-panel .menu-close {
  display: none;
}

.vitoas-menu {
  width: 100%;
  max-width: 144px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 21px;
  text-align: center;
}

.vitoas-menu a,
.vitoas-menu .sub-menu-trigger {
  position: relative;
  display: block;
  color: #1a1a1a;
  text-decoration: none;
  cursor: pointer;
}

.vitoas-menu a:hover,
.vitoas-menu a:active,
.vitoas-menu a.active,
.vitoas-menu .sub-menu-trigger:hover,
.vitoas-menu .sub-menu-trigger:active,
.vitoas-menu .sub-menu-trigger.active {
  color: #ed7700;
}

.vitoas-menu>ul>li+li {
  margin-top: 30px;
}

.vitoas-menu .icon-arrow {
  position: absolute;
  right: 0;
  top: calc(50% - 16px / 2);
  background-image: url(../img/menu-arrow-down.svg);
  width: 16px;
  height: 16px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.vitoas-menu .sub-menu {
  padding-top: 8px;
  padding-bottom: 8px;
  display: none;
}

.vitoas-menu .sub-menu a {
  font-size: 14px;
  line-height: 20px;
  padding: 2px 0;
}

.vitoas-menu .is-toggle .icon-arrow {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.vitoas-menu .is-toggle .sub-menu {
  display: block;
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
}

.menu-toggle {
  position: absolute;
  top: 12px;
  right: 15px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 44px;
  height: 44px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  z-index: 10;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/menu-toggle.svg);
  display: none;
}

.menu-toggle.is-hide {
  display: none !important;
}

.menu-close {
  position: absolute;
  top: 24px;
  right: 21px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 32px;
  height: 32px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  z-index: 11;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/menu-close.svg);
  display: block;
}

.btn-cta {
  max-width: 115px;
  margin: 30px auto 90px;
}

.post-iframe {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.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) {
  .post-iframe {
    padding-top: 0;
  }
}

@media (min-width: 1164px) {
  .vitoas-header.sticky {
    left: calc(50% - 1164px / 2);
  }
}

@media (min-width: 768px) {
  .vitoas-container {
    min-width: 1164px;
  }

  .vitoas-header {
    height: 100vh;
  }
}

@media (max-width: 767px) {
  .breadcrumbs {
    margin: 10px 0;
    font-size: 12px;
  }

  .breadcrumbs ol {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #222;
  }

  .breadcrumbs ol li {
    margin: 0;
    padding: 0;
    word-break: break-all;
    display: inline;
    line-height: 21px;
    font-weight: 300;
    letter-spacing: 0;
  }

  .breadcrumbs ol li a {
    color: #0072ef;
    margin-right: 13px;
    position: relative;
    text-decoration: none;
    word-break: break-all;
  }

  .breadcrumbs ol li a:hover {
    color: #00bbff;
    text-decoration: underline;
  }

  .breadcrumbs ol li a::after {
    content: "";
    width: 30px;
    height: 30px;
    background: url(../img/arrow_breadcrumbs.svg) no-repeat 2px 7px;
    background-size: 7px;
    position: absolute;
    right: -33px;
  }

  .content {
    width: auto;
    padding: 0 13px !important;
  }

  .content h1 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    padding: 0;
    color: #222 !important;
  }

  .lg-view {
    display: none;
  }

  .sm-view {
    display: block;
  }

  .breadcrumbs-container {
    padding: 10px 15px 0;
  }

  .breadcrumbs-container .breadcrumbs {
    margin-bottom: 10px;
  }

  .breadcrumb_trail {
    margin: 27vw auto 1vw auto
  }

  .vitoas-container {
    padding-bottom: 0;
  }

  .vitoas-container .section-header {
    margin-bottom: 25px;
    padding: 0 15px;
  }

  .vitoas-container .section-header h3,
  .vitoas-container .section-header .title {
    font-size: 24px;
    line-height: 36px;
    margin: 0 auto 16px;
  }

  .vitoas-container .section-header .line {
    bottom: -8px;
    height: 2px;
  }

  .vitoas-container .section-header p,
  .vitoas-container .section-header .sub-title {
    font-size: 18px;
    line-height: 28px;
  }

  .vitoas-container .video-container .playbutton {
    top: calc(50% - 54px / 2);
    right: calc(50% - 54px / 2);
    width: 54px;
    height: 54px;
  }

  .vitoas-container .video-container .icon-play {
    width: 54px;
    height: 54px;
  }

  .vitoas-container .vitoas-btn {
    width: 255px;
    height: 53px;
    line-height: 53px;
    font-size: 18px;
  }

  .vitoas-container .vitoas-btn .icon-arrow {
    right: 20px;
    top: calc(50% - 18px / 2);
    width: 18px;
    height: 18px;
  }

  .vitoas-container .vitoas-btn:hover .icon-arrow,
  .vitoas-container .vitoas-btn:active .icon-arrow {
    right: 16px;
  }

  .vitoas-header {
    width: 100%;
    border-top: 0;
    height: 68px;
    position: relative;
  }

  .vitoas-header .logo {
    width: 82px;
    height: 33px;
    top: 18px;
    left: 18px;
  }

  .vitoas-header.sticky {
    position: absolute;
  }

  .vitoas-content {
    margin-left: 0;
    width: 100%;
  }

  .vitoas-content.plus-header {
    border: 0;
  }

  .vitoas-content.plus-header:before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #f5f5f5;
    position: absolute;
    top: 0;
    left: 0;
  }

  .vitoas-menu-panel {
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100%;
    height: 100%;
    padding: 100px 15px 50px;
    -moz-transition: ease 0.5s;
    -o-transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
    background-color: rgba(66, 33, 11, 0.93);
    z-index: 10;
    min-height: 100%;
    opacity: 0;
  }

  .vitoas-menu-panel .logo {
    display: block;
    position: absolute;
    top: 24px;
    left: 15px;
  }

  .vitoas-menu-panel .action {
    display: block;
  }

  .vitoas-menu-panel .menu-close {
    display: block;
  }

  .vitoas-menu {
    max-width: 100%;
    font-size: 21px;
    line-height: 30px;
    text-align: left;
    margin-bottom: 136px;
  }

  .vitoas-menu a,
  .vitoas-menu .sub-menu-trigger {
    color: #fff;
  }

  .vitoas-menu a br,
  .vitoas-menu .sub-menu-trigger br {
    display: none;
  }

  .vitoas-menu>ul>li {
    background-image: url(../img/vitoas-menu-border.png);
    background-position: left top;
    background-repeat: repeat-x;
  }

  .vitoas-menu>ul>li:first-child {
    background-image: none;
  }

  .vitoas-menu>ul>li>a,
  .vitoas-menu>ul>li>.sub-menu-trigger {
    padding: 15px 0;
  }

  .vitoas-menu>ul>li+li {
    margin-top: 0;
  }

  .vitoas-menu .icon-arrow {
    top: calc(50% - 40px / 2);
    right: 5px;
    background-image: url(../img/menu-arrow-down_white.svg);
    width: 40px;
    height: 40px;
  }

  .vitoas-menu .sub-menu {
    padding-top: 0;
    padding-bottom: 15px;
    padding-left: 25px;
  }

  .vitoas-menu .sub-menu>li+li {
    margin-top: 15px;
  }

  .vitoas-menu .sub-menu a {
    font-size: 17px;
    line-height: 20px;
    padding: 4px 0;
  }

  .menu-toggle {
    display: block;
  }

  .menu-view {
    overflow: hidden;
  }

  .menu-view #common_header_wrap {
    z-index: 0;
  }

  .menu-view #common_footer {
    z-index: 0;
  }

  .menu-view .vitoas-menu-panel {
    left: 0;
    overflow: auto;
    opacity: 1;
    margin-top: 27vw
  }

  .menu-view .menu-close {
    display: block;
  }
}

@media (min-width: 768px) and (max-height: 659px) {
  .vitoas-menu-panel {
    padding-bottom: 20px;
    min-height: 600px;
  }

  .vitoas-menu>ul>li+li {
    margin-top: 20px;
  }
}

/* 01 首頁 */
.index-kv {
  margin-bottom: 30px;
}

.index-kv .swiper-pagination {
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.index-kv .swiper-slide {
  opacity: 0;
}

.index-kv .swiper-slide-active {
  opacity: 1;
}

.index-top {
  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;
  margin-bottom: 30px;
}

.index-top .index-aio {
  width: calc(100% - 322px - 10px);
  margin-right: 10px;
  position: relative;
  background-image: url(../img/index-aio-bg.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  text-align: center;
  padding: 65px 20px 20px;
  min-height: 440px;
  overflow: hidden;
}

.index-top .index-aio .section-header {
  opacity: 0;
}

.index-top .index-aio .section-header .line {
  width: 330px;
  left: calc(50% - 330px / 2);
}

.index-top .index-aio .text {
  font-size: 18px;
  line-height: 36px;
  margin-bottom: 32px;
}

.index-top .index-aio .section-content {
  opacity: 0;
}

.index-top .index-aio .action {
  opacity: 0;
}

.index-top .index-aio.animated .section-header {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
  animation-delay: .5s;
}

.index-top .index-aio.animated .section-content {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: 1s;
}

.index-top .index-aio.animated .action {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: 1.5s;
}

.index-top .index-news {
  width: 322px;
  position: relative;
  background-image: url(../img/index-news-bg.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 65px 20px 20px;
  min-height: 440px;
}

.index-top .index-news .section-header {
  margin-bottom: 45px;
  opacity: 0;
}

.index-top .index-news .section-header .line {
  width: 180px;
  left: calc(50% - 180px / 2);
}

.index-top .index-news .section-content {
  opacity: 0;
  width: 225px;
  margin: 0 auto;
}

.index-top .index-news li+li {
  margin-top: 16px;
}

.index-top .index-news a {
  text-decoration: underline;
  color: #1a1a1a;
  font-size: 18px;
  line-height: 36px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  max-height: 36px;
}

.index-top .index-news a:hover,
.index-top .index-news a:active {
  text-decoration: none;
  filter: brightness(1.2);
}

.index-top .index-news.animated .section-header {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
  animation-delay: .5s;
}

.index-top .index-news.animated .section-content {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: 1s;
}

.index-product {
  background: white;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  min-height: 814px;
  padding: 60px 20px 20px;
  margin-bottom: 30px;
}

.index-product .section-header {
  margin-bottom: 35px;
  opacity: 0;
}

.index-product .section-header .line {
  width: 180px;
  left: calc(50% - 180px / 2);
}

.index-product .section-content {
  max-width: 804px;
  margin: 0 auto;
  opacity: 0;
}

.index-product.animated .section-header {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
  animation-delay: .5s;
}

.index-product.animated .section-content {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: 1s;
}

.index-product.animated .action {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: 1.5s;
}

.index-product .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;
  margin: 0 -62px;
}

.index-product .list .divider {
  position: relative;
  width: 100%;
  height: 3px;
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center top;
  overflow: hidden;
  background-image: url(../img/index-product-line.jpg);
  pointer-events: none;
  display: none;
  margin: 60px 0;
}

.index-product .item {
  width: calc(100% / 2 - 62px * 2);
  margin: 0 62px;
  position: relative;
}

.index-product .step {
  width: 84px;
  height: 84px;
  text-align: center;
  line-height: 84px;
  color: #ed7700;
  border-radius: 50%;
  border: 1px solid #ed7700;
  position: absolute;
  top: 70px;
  left: -20px;
  font-size: 18px;
}

.index-product .step .text-lg {
  font-size: 24px;
  line-height: 78px;
}

.index-product .main-text {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.index-instructions {
  padding: 35px 20px 20px;
  margin-bottom: 30px;
}

.index-instructions .section-header {
  margin-bottom: 50px;
  opacity: 0;
}

.index-instructions .section-header .line {
  width: 180px;
  left: calc(50% - 180px / 2);
}

.index-instructions .section-content {
  opacity: 0;
}

.index-instructions .action {
  margin-top: 70px;
}

.index-instructions.animated .section-header {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
  animation-delay: .5s;
}

.index-instructions.animated .section-content {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: 1s;
}

.index-instructions.animated .action {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: 1.5s;
}

.index-reviews {
  margin-bottom: 30px;
}

.index-reviews .section-header {
  margin-bottom: 50px;
  opacity: 0;
}

.index-reviews .section-header .line {
  width: 180px;
  left: calc(50% - 180px / 2);
}

.index-reviews .section-content {
  max-width: 706px;
  margin: 0 auto;
  opacity: 0;
}

.index-reviews.animated .section-header {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
  animation-delay: .5s;
}

.index-reviews.animated .section-content {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: 1s;
}

.index-reviews.animated .action {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: 1.5s;
}

.index-reviews .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;
  margin: 0 -45px;
}

.index-reviews .item {
  width: calc(100% / 2 - 45px * 2);
  margin: 0 45px;
  position: relative;
  max-width: 308px;
}

.index-reviews .item a {
  display: block;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  cursor: pointer;
}

.index-reviews .item a:hover,
.index-reviews .item a:active {
  filter: brightness(1.1);
}

.index-reviews .item__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px 24px;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.65);
  min-height: 104px;
  display: block;
}

.index-reviews .inner {
  position: relative;
  display: block;
  margin-bottom: 8px;
  box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.2);
}

.index-reviews .top-text {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 5px;
}

.index-reviews .main-text {
  font-size: 24px;
  font-weight: 700;
}

.index-reviews .icon-arrow {
  position: absolute;
  right: 24px;
  top: calc(100% - 30px - 24px);
  background-image: url(../img/index-reviews-arrow.svg);
  width: 24px;
  height: 24px;
}

.index-reviews .bottom-text {
  font-size: 10px;
  text-align: right;
}

.index-reviews .age {
  margin-left: 1em;
}

.index-reviews .action {
  margin-top: 60px;
}

.index-advertising {
  padding: 60px 20px 20px;
}

.index-advertising .section-header {
  margin-bottom: 65px;
  opacity: 0;
}

.index-advertising .section-header .line {
  width: 180px;
  left: calc(50% - 180px / 2);
}

.index-advertising .section-content {
  opacity: 0;
}

.index-advertising.animated .section-header {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
  animation-delay: .5s;
}

.index-advertising.animated .section-content {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: 1s;
}

.index-advertising.animated .action {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: 1.5s;
}

.index-advertising .video-container+.video-container {
  margin-top: 115px;
}

.index-advertising .text-block {
  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;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  margin-top: 30px;
  padding: 5px 0;
  line-height: 36px;
}

.index-advertising .main-text {
  font-size: 21px;
  font-weight: 700;
}

.index-advertising .text-lg {
  font-size: 24px;
  margin-left: 18px;
  margin-right: 18px;
}

.index-advertising .sub-text {
  font-size: 18px;
}

.index-advertising .action {
  margin-top: 65px;
}

@media (max-width: 1164px) and (min-width: 768px) {
  .index-product .list {
    margin: 0 -5.32vw;
  }

  .index-product .item {
    width: calc(100% / 2 - 5.32vw * 2);
    margin: 0 5.32vw;
  }

  .index-product .step {
    width: 7.2vw;
    height: 7.2vw;
    line-height: 7.2vw;
    top: 70px;
    left: 0;
    font-size: 1.54vw;
  }

  .index-product .step .text-lg {
    font-size: 2vw;
    line-height: 7vw;
  }
}

@media (max-width: 767px) {
  .index-kv {
    margin-bottom: 10px;
  }

  .index-kv .swiper-pagination {
    bottom: 24px;
  }

  .index-top {
    margin-bottom: 0;
  }

  .index-top .index-aio {
    width: 100%;
    margin-right: 0;
    padding: 30px 20px 20px;
    min-height: 320px;
    order: 1;
    background-image: url(../img/index-aio-bg_s.jpg);
  }

  .index-top .index-aio .section-header .line {
    width: 230px;
    left: calc(50% - 230px / 2);
  }

  .index-top .index-aio .text {
    font-size: 17px;
    line-height: 30px;
  }

  .index-top .index-news {
    width: 100%;
    padding: 20px;
    min-height: 250px;
    margin-bottom: 10px;
    text-align: center;
    background-image: url(../img/index-news-bg_s.jpg);
    background-size: 100% 100%;
  }

  .index-top .index-news .section-header {
    margin-bottom: 15px;
  }

  .index-top .index-news .section-header .line {
    width: 120px;
    left: calc(50% - 120px / 2);
  }

  .index-top .index-news .section-content {
    width: 100%;
  }

  .index-top .index-news li+li {
    margin-top: 20px;
  }

  .index-top .index-news a {
    font-size: 16px;
    line-height: 30px;
  }

  .index-product {
    min-height: inherit;
    padding: 45px 0 50px;
    margin-bottom: 0;
  }

  .index-product .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
  }

  .index-product .section-header .line {
    width: 120px;
    left: calc(50% - 120px / 2);
  }

  .index-product .section-content {
    max-width: 100%;
  }

  .index-product .list {
    display: block;
    margin: 0 12px;
    position: relative;
  }

  .index-product .list .divider {
    display: block;
  }

  .index-product .item {
    width: 100%;
    max-width: 255px;
    margin: 0 auto;
  }

  .index-product .step {
    width: 64px;
    height: 64px;
    line-height: 64px;
    top: 15px;
    left: 0;
    font-size: 14px;
  }

  .index-product .step .text-lg {
    font-size: 18px;
    line-height: 60px;
  }

  .index-product .main-text {
    font-size: 22px;
  }

  .index-instructions {
    padding: 35px 0 20px;
    margin-bottom: 50px;
  }

  .index-instructions .section-header {
    margin-bottom: 20px;
  }

  .index-instructions .section-header .line {
    width: 120px;
    left: calc(50% - 120px / 2);
  }

  .index-instructions .action {
    margin-top: 35px;
  }

  .index-reviews {
    margin-bottom: 50px;
  }

  .index-reviews .section-header {
    margin-bottom: 25px;
  }

  .index-reviews .section-header .line {
    width: 120px;
    left: calc(50% - 120px / 2);
  }

  .index-reviews .section-content {
    max-width: 270px;
  }

  .index-reviews .list {
    display: block;
    margin: 0;
  }

  .index-reviews .item {
    width: 100%;
    margin: 0;
    max-width: 270px;
  }

  .index-reviews .item+.item {
    margin-top: 35px;
  }

  .index-reviews .item__content {
    padding: 8px 20px;
    min-height: 92px;
  }

  .index-reviews .inner {
    position: relative;
    display: block;
    margin-bottom: 8px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  }

  .index-reviews .top-text {
    font-size: 18px;
  }

  .index-reviews .main-text {
    font-size: 21px;
  }

  .index-reviews .bottom-text {
    font-size: 7px;
  }

  .index-reviews .action {
    margin-top: 30px;
  }

  .index-advertising {
    padding: 0 0 55px;
  }

  .index-advertising .section-header {
    margin-bottom: 20px;
  }

  .index-advertising .section-header .line {
    width: 120px;
    left: calc(50% - 120px / 2);
  }

  .index-advertising .video-container+.video-container {
    margin-top: 20px;
  }

  .index-advertising .text-block {
    display: block;
    margin-top: 8px;
    padding: 0;
    line-height: 24px;
    text-align: center;
  }

  .index-advertising .main-text {
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
  }

  .index-advertising .text-lg {
    font-size: 18px;
    margin-left: 16px;
    margin-right: 0;
  }

  .index-advertising .sub-text {
    font-size: 14px;
  }

  .index-advertising .action {
    margin-top: 20px;
  }
}

/* 02 AIO */
.aio {
  position: relative;
  background-image: url(../img/aio-bg.jpg);
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
}

.aio-top {
  padding-top: 70px;
  padding-bottom: 235px;
}

.aio-top .section-header {
  margin-bottom: 40px;
  opacity: 0;
}

.aio-top .section-header .line {
  width: 460px;
  left: calc(50% - 460px / 2);
}

.aio-top .section-content {
  opacity: 0;
}

.aio-top.animated .section-header {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
}

.aio-top.animated .section-content {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: .5s;
}

.aio-top p {
  font-size: 18px;
  line-height: 36px;
  text-align: center;
}

.aio-top p+p {
  margin-top: 20px;
}

.aio-bottom .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: 0 -68px;
}

.aio-bottom .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}

.aio-bottom .item {
  width: calc(100% / 2 - 68px * 2);
  margin: 0 68px;
  position: relative;
  max-width: 340px;
}

.aio-bottom .item__image {
  width: 135px;
  height: 60px;
  position: relative;
}

.aio-bottom .item__image img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.aio-bottom .item__content {
  width: calc(100% - 135px);
}

.aio-bottom .main-text {
  font-size: 21px;
  line-height: 30px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .aio {
    background-image: url(../img/aio-bg_s.jpg);
  }

  .aio-top {
    padding-top: 40px;
    padding-bottom: 150px;
  }

  .aio-top .section-header {
    margin-bottom: 20px;
  }

  .aio-top .section-header .line {
    width: 310px;
    left: calc(50% - 310px / 2);
  }

  .aio-top .section-content {
    padding: 0 10px;
  }

  .aio-top p {
    font-size: 17px;
    line-height: 29px;
  }

  .aio-top p span {
    display: inline-block;
  }

  .aio-bottom {
    padding-bottom: 75px;
  }

  .aio-bottom .list {
    direction: block;
    margin: 0 auto;
    max-width: 255px;
  }

  .aio-bottom .item {
    width: 100%;
    margin: 0;
  }

  .aio-bottom .item__image {
    width: 102px;
    height: 50px;
  }

  .aio-bottom .item__image img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
  }

  .aio-bottom .item__content {
    width: calc(100% - 102px);
  }

  .aio-bottom .main-text {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 20px;
  }

  .aio-bottom .item-2 {
    margin-top: 90px;
  }
}

/* 03 商品介紹 */
.product-top {
  padding-top: 100px;
  padding-bottom: 85px;
  color: #4d4d4d;
}

.product-top__inner {
  position: relative;
  padding-left: 390px;
}

.product-top .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 390px;
  z-index: 0;
}

.product-top .image img {
  max-width: 300px;
  margin: 0 auto;
  z-index: 0;
}

.product-top .main-text {
  color: #1a1a1a;
  font-size: 36px;
  /*  line-height: 48px;*/
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 700;
}

.product-top .main-text small {
  font-size: 77.7%;
  display: block;
}

.product-top .sub-text {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
}

.product-top .text {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 25px;
  max-width: 520px;
  text-align: justify;
}

.product-top .features {
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: -5px;
  margin-bottom: 10px;
}

.product-top .features-item {
  color: #ed7700;
  border: 1px solid #ed7700;
  font-size: 21px;
  font-weight: 700;
  line-height: 32px;
  padding: 0 15px;
  margin: 5px;
  text-align: center;
}

.product-top .tags {
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: -4px;
}

.product-top .tags .tag {
  color: #787873;
  border: 1px solid #787873;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  padding: 0 15px;
  border-radius: 5px;
  margin: 4px;
  text-align: center;
}

.product-top .tags .tag-small {
  font-size: 14px;
  padding: 0 8px;
}

.product-top .action {
  padding-top: 55px;
  display: block;
}

.product-top .vitoas-btn {
  margin: 0;
}

.product-a .product-top {
  padding-bottom: 85px;
  border-bottom: 2px solid #f2f2f2;
}

.product-a .product-top .text {
  max-width: 520px;
}

.product-a .product-feature {
  padding-top: 70px;
}

.product-a .product-feature .section-header {
  margin-bottom: 40px;
  opacity: 0;
}

.product-a .product-feature .section-header .line {
  width: 400px;
  left: calc(50% - 400px / 2);
  height: 2px;
}

.product-a .product-feature .section-content {
  opacity: 0;
}

.product-a .product-feature.animated .section-header {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
}

.product-a .product-feature.animated .section-content {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: .5s;
}

.product-a .product-feature .image {
  margin: 0 auto;
}

.product-a .product-feature .top-block {
  padding-bottom: 65px;
}

.product-a .product-feature .top-block .image {
  max-width: 400px;
}

.product-a .product-feature .top-block p {
  text-align: center;
  font-size: 18px;
  line-height: 36px;
  color: #4d4d4d;
}

.product-a .product-feature .top-block p+p {
  margin-top: 20px;
}

.product-a .product-feature .bottom-block .main-text {
  color: #4d4d4d;
  font-size: 36px;
  line-height: 48px;
  padding: 5px 0;
  font-weight: 700;
  text-align: center;
  background-color: #f2f2f2;
  margin-bottom: 30px;
}

.product-a .product-feature .bottom-block .sub-text {
  font-size: 24px;
  line-height: 38px;
  margin-bottom: 55px;
  text-align: center;
  color: #1a1a1a;
}

.product-a .box {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
}

.product-a .box .image {
  position: relative;
  font-weight: 700;
}

.product-a .box .image .text-1 {
  position: absolute;
  top: 276px;
  left: 16px;
  color: #c84902;
}

.product-a .box .image .text-2 {
  position: absolute;
  top: 309px;
  left: 117px;
  color: #4d4d4d;
}

.product-a .box .note {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 12px;
  line-height: 18px;
}

.product-a .box .list {
  position: absolute;
  top: 15px;
  left: 520px;
}

.product-a .box .hd {
  position: relative;
  line-height: 32px;
  font-weight: 700;
}

.product-a .box .hd img {
  width: 50px;
  position: absolute;
  top: -20px;
  left: 45px;
}

.product-a .box .bd {
  line-height: 24px;
  color: #4d4d4d;
}

.product-a .box .item {
  padding-left: 40px;
  position: relative;
}

.product-a .box .item:nth-child(2) {
  margin-top: 45px;
}

.product-a .box .item:nth-child(3) {
  margin-top: 52px;
}

.product-a .box .pull-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  display: none;
}

.product-a .box .item-1 {
  max-width: 260px;
}

.product-a .box .item-1 .hd {
  color: #84a464;
}

.product-a .box .item-2 {
  max-width: 280px;
}

.product-a .box .item-2 .hd {
  color: #fcb15a;
}

.product-a .box .item-2 .hd img {
  top: -15px;
}

.product-a .box .item-3 {
  max-width: 225px;
}

.product-a .box .item-3 .hd {
  color: #7cc0c8;
}

.product-a .box .item-3 .hd img {
  top: -15px;
}

.product-b .product-top {
  padding-bottom: 115px;
}

.product-b .product-top .text {
  /*  max-width: 330px;*/
}

.product-b .product-top .tags .tag {
  padding: 0 4px;
}

.product-b .product-top .tags .tag-small {
  padding: 0 8px;
}

.product-b .product-top .image img {
  max-width: 360px;
}

.product-b .banner {
  max-width: 904px;
  margin: 0 auto 120px;
}

.product-b .section .section-header {
  opacity: 0;
}

.product-b .section .section-content {
  opacity: 0;
}

.product-b .section.animated .section-header {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
}

.product-b .section.animated .section-content {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: .5s;
}

.product-b .product-type .section-header .title {
  color: #666666;
}

.product-b .product-type .type-flex {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.product-b .product-type .type-flex .item {
  position: relative;
}

.product-b .product-type .type-flex .item:nth-of-type(1) {
  color: #785340;
}

.product-b .product-type .type-flex .item:nth-of-type(2) {
  color: #6f758a;
}

.product-b .product-type .type-flex ul {
  font-size: 20px;
  position: absolute;
  letter-spacing: 2px;
  top: 52%;
  left: 57%;
}

.product-b .product-type .type-flex li {
  margin-bottom: 15px;
}

.product-b .product-usage {
  padding-bottom: 120px;
}

.product-b .product-usage .section-header {
  margin-bottom: 40px;
}

.product-b .product-usage .section-header .line {
  width: 500px;
  left: calc(50% - 500px / 2);
}

.product-b .product-usage .image {
  margin: 0 auto 60px;
  max-width: 766px;
}

.product-b .product-usage .bottom-block .main-text {
  color: #e66f02;
  font-size: 30px;
  line-height: 48px;
  padding: 5px 0;
  font-weight: 700;
  text-align: center;
  /*  background: #ed7700;*/
  /*  background: radial-gradient(circle, #ed7700 0%, #c84902 100%);*/
  margin-bottom: 80px;
}

.product-b .product-usage .video-container {
  max-width: 840px;
}

.product-b .product-feature {
  padding-bottom: 120px;
}

.product-b .product-feature .section-header {
  margin-bottom: 50px;
}

.product-b .product-feature .section-header .title {
  font-size: 39px;
}

.product-b .product-feature .section-header .line {
  width: 515px;
  left: calc(50% - 515px / 2);
}

.product-b .product-feature .image {
  margin: 0 auto;
  position: relative;
}

.product-b .product-feature .image .text {
  position: absolute;
  right: 29.5%;
  font-size: 24px;
  font-weight: 700;
}

.product-b .product-feature .image .text-a {
  color: #00b3db;
  top: 4.5%;
}

.product-b .product-feature .image .text-b {
  color: #e7641b;
  top: 13%;
}

.product-b .product-feature .image .text-c {
  color: #eea400;
  top: 23.5%;
}

.product-b .product-feature .image .item {
  position: absolute;
  top: 67%;
  width: 28.66%;
  text-align: center;
}

.product-b .product-feature .image .item-a {
  left: 3.5%;
}

.product-b .product-feature .image .item-b {
  left: 35.5%;
}

.product-b .product-feature .image .item-c {
  left: 67.5%;
}

.product-b .product-feature .image h4 {
  color: #884d29;
  font-size: 33px;
  line-height: 44px;
  font-weight: 700;
}

.product-b .product-feature .image h5 {
  color: #884d29;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.product-b .product-feature .main-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 38px;
  text-align: center;
  background-color: #fafafa;
  margin-bottom: 25px;
}

.product-b .product-feature .sub-text p {
  text-align: center;
  font-size: 18px;
  line-height: 36px;
  color: #4d4d4d;
}

.product-b .product-feature .sub-text p+p {
  margin-top: 20px;
}

.product-b .product-feature .image {
  max-width: 782px;
  margin-top: 20px;
}

.product-b .product-feature ul {
  font-size: 22px;
  font-weight: bold;
  color: #9a9a9a;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  position: absolute;
  top: 145px;
  left: 438px;
  letter-spacing: 1px;
}

.product-b .product-feature li {
  padding-top: 55px;
}

.product-b .product-feature li:nth-of-type(1) {
  margin-bottom: 32px;
}

.product-b .product-feature li:nth-of-type(2) {
  margin-bottom: 42px;
}

.product-b .product-feature2 .section-header {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.product-b .product-feature2 .section-header .line {
  width: 370px;
  left: calc(50% - 370px / 2);
}

.product-b .product-feature2 .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: 0 0 70px;
}

.product-b .product-feature2 .item {
  width: calc(100% / 4 - 8px * 2);
  margin: 0 8px;
  position: relative;
  background-color: #fff;
  text-align: center;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.2);
}

.product-b .product-feature2 .item__content {
  padding: 10px 10px 15px;
}

.product-b .product-feature2 .item .main-text {
  font-size: 25px;
  font-weight: 700;
  line-height: 36px;
  color: #f06b31;
}

.product-b .product-feature2 .item .sub-text {
  font-size: 17px;
  line-height: 29px;
  color: #1a1a1a;
}

.product-b .product-feature2 .top-block {
  margin-bottom: 40px;
}

.product-b .product-feature2 .top-block p {
  text-align: center;
  font-size: 18px;
  line-height: 36px;
  color: #4d4d4d;
}

.product-b .product-feature2 .top-block p+p {
  margin-top: 20px;
}

.product-b .product-feature2 .top-block .highlight {
  color: #f06b31;
  font-weight: 700;
}

.product-b .product-feature2 .top-block .image {
  margin-top: -40px;
}

.product-b .product-feature2 .center-block .image {
  margin: 0 auto;
  max-width: 800px;
}

.product-b .product-feature2 .center-block .main-text {
  font-size: 30px;
  font-weight: 700;
  line-height: 46px;
  color: #1a1a1a;
  text-align: center;
}

.product-b .product-feature2 .bottom-block .image {
  position: relative;
  z-index: 0;
  max-width: 802px;
  margin: auto;
}

.product-b .product-feature2 .bottom-block .main-text {
  font-size: 36px;
  font-weight: 700;
  line-height: 59px;
  color: #ed7700;
  text-align: center;
  position: relative;
  z-index: 1;
}

.product-b .product-feature2 .bottom-block .ps {
  font-size: 10px;
  margin: 10px 0;
  text-align: center;
}

@media (max-width: 767px) {
  .product-top {
    padding-top: 60px;
    padding-bottom: 55px;
  }

  .product-top__inner {
    padding-left: 0;
  }

  .product-top .group {
    position: relative;
    padding-left: 130px;
  }

  .product-top .image {
    width: 130px;
  }

  .product-top .image img {
    max-width: 130px;
  }

  .product-top .main-text {
    font-size: 24px;
    /*    line-height: 36px;*/
    margin-bottom: 15px;
  }

  .product-top .sub-text {
    font-size: 17px;
    line-height: 29px;
    margin-bottom: 15px;
  }

  .product-top .text {
    font-size: 17px;
    line-height: 29px;
    margin-bottom: 20px;
  }

  .product-top .features {
    margin: -4px;
  }

  .product-top .features-item {
    font-size: 13px;
    line-height: 19px;
    padding: 0 8px;
    margin: 4px;
  }

  .product-top .tags {
    margin: -4px;
  }

  .product-top .tags .tag {
    font-size: 13px;
    line-height: 19px;
    padding: 0 8px;
    border-radius: 4px;
    margin: 4px;
  }

  .product-top .tags .tag-small {
    font-size: 11px;
    padding: 0 4px;
  }

  .product-top .vitoas-btn {
    margin: 0 auto;
  }

  .product-a .product-top {
    padding-bottom: 55px;
    border-bottom: 4px solid #f2f2f2;
  }

  .product-a .product-top__inner {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 375px;
    margin: 0 auto;
  }

  .product-a .product-top .image {
    top: -45px;
    width: 130px;
  }

  .product-a .product-top .top-block {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 20px * 2);
  }

  .product-a .product-top .group {
    padding-bottom: 50px;
  }

  .product-a .product-top .sub-text {
    letter-spacing: -.025em;
  }

  .product-a .product-feature {
    padding-top: 45px;
  }

  .product-a .product-feature .section-header {
    margin-bottom: 20px;
    opacity: 0;
  }

  .product-a .product-feature .section-header .line {
    width: 310px;
    left: calc(50% - 310px / 2);
  }

  .product-a .product-feature .section-content {
    max-width: 375px;
    margin: 0 auto;
  }

  .product-a .product-feature .top-block {
    padding: 0 20px 40px;
  }

  .product-a .product-feature .top-block .image {
    max-width: 280px;
  }

  .product-a .product-feature .top-block p {
    text-align: justify;
    font-size: 17px;
    line-height: 29px;
  }

  .product-a .product-feature .bottom-block {
    padding-bottom: 50px;
  }

  .product-a .product-feature .bottom-block .main-text {
    font-size: 18px;
    line-height: 30px;
    padding: 0 10px;
    margin-bottom: 35px;
  }

  .product-a .product-feature .bottom-block .sub-text {
    font-size: 17px;
    line-height: 29px;
    text-align: justify;
    padding: 0 20px;
    letter-spacing: -.08em;
  }

  .product-a .product-feature .bottom-block .sub-text br {
    display: none;
  }

  .product-a .box {
    max-width: 375px;
    font-size: 16px;
  }

  .product-a .box .image {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .product-a .box .image .text-1 {
    top: 80%;
    left: 3%;
  }

  .product-a .box .image .text-2 {
    top: 90%;
    left: 26%;
  }

  .product-a .box .note {
    position: relative;
    padding: 0 10px;
    margin-bottom: 40px;
  }

  .product-a .box .list {
    position: relative;
    top: 0;
    left: 0;
    padding: 0 10px;
  }

  .product-a .box .hd {
    line-height: 30px;
  }

  .product-a .box .hd img {
    width: 44px;
    left: 40px;
  }

  .product-a .box .bd {
    line-height: 21px;
  }

  .product-a .box .item {
    padding-left: 36px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #fafafa;
  }

  .product-a .box .item:nth-child(2) {
    margin-top: 0;
  }

  .product-a .box .item:nth-child(3) {
    margin-top: 0;
  }

  .product-a .box .pull-left {
    width: 30px;
  }

  .product-a .box .item-1 {
    max-width: 100%;
  }

  .product-a .box .item-2 {
    max-width: 100%;
  }

  .product-a .box .item-2 .hd img {
    top: -15px;
  }

  .product-a .box .item-2 .bd {
    max-width: 260px;
  }

  .product-a .box .item-3 {
    max-width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
  }

  .product-a .box .item-3 .hd img {
    top: -15px;
  }

  .product-b .section {
    max-width: 375px;
    margin: 0 auto;
  }

  .product-b .product-top {
    padding-bottom: 55px;
    border-bottom: 4px solid #f2f2f2;
    max-width: 100%;
  }

  .product-b .product-top__inner {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 375px;
    margin: 0 auto;
  }

  .product-b .product-top .image {
    top: -45px;
    width: 100%;
  }

  .product-b .product-top .top-block {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 20px * 2);
  }

  .product-b .product-top .group {
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 340px;
  }

  .product-b .product-top .sub-text {
    letter-spacing: -.025em;
    /*    text-align: center;*/
  }

  .product-b .product-top .text {
    /*        font-size: 14px;*/
    /*        line-height: 1.5;*/
  }

  .product-b .section-header .sub-title {
    font-size: 16px;
  }

  .product-b .banner {
    margin-bottom: 50px;
  }

  .product-b .product-type {
    padding-top: 45px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-b .product-type .type-flex {
    flex-direction: column;
    gap: 0;
  }

  .product-b .product-type .type-flex ul {
    font-size: 14px;
    top: 26vw;
    left: 51vw;
  }

  .product-b .product-type .type-flex li {
    margin-bottom: 3vw;
    line-height: 1;
  }

  .product-b .product-usage {
    padding-bottom: 40px;
  }

  .product-b .product-usage .section-header {
    margin-bottom: 20px;
  }

  .product-b .product-usage .section-header .line {
    width: 250px;
    left: calc(50% - 250px / 2);
  }

  .product-b .product-usage .image {
    margin: 0 auto 45px;
  }

  .product-b .product-usage .bottom-block .main-text {
    font-size: 18px;
    line-height: 33px;
    padding: 0;
    margin-bottom: 15px;
  }

  .product-b .product-usage .video-container {
    max-width: 325px;
  }

  .product-b .product-feature {
    padding-bottom: 45px;
  }

  .product-b .product-feature .section-header {
    margin-bottom: 20px;
  }

  .product-b .product-feature .section-header .title {
    font-size: 24px;
  }

  .product-b .product-feature .section-header .line {
    width: 250px;
    left: calc(50% - 250px / 2);
  }

  .product-b .product-feature .main-text {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
  }

  .product-b .product-feature .sub-text p {
    /*    text-align: justify;*/
    font-size: 12px;
    line-height: 2;
    padding: 0 20px;
  }

  .product-b .product-feature .sub-text p+p br {
    display: none;
  }

  .product-b .product-feature .image {
    margin-top: 0;
  }

  .product-b .product-feature ul {
    top: 20vw;
    left: 56vw;
    font-size: 2.9vw;
  }

  .product-b .product-feature li {
    padding-top: 7vw;
    line-height: 1;
  }

  .product-b .product-feature li:nth-of-type(1) {
    margin-bottom: 5vw;
  }

  .product-b .product-feature li:nth-of-type(2) {
    margin-bottom: 6vw;
  }

  .product-b .product-feature .image .text {
    right: 8.5%;
    font-size: 20px;
  }

  .product-b .product-feature .image .text-a {
    top: 2%;
  }

  .product-b .product-feature .image .text-b {
    top: 5.8%;
  }

  .product-b .product-feature .image .text-c {
    top: 10.5%;
  }

  .product-b .product-feature .image .item {
    width: 53%;
    left: 22.75%;
  }

  .product-b .product-feature .image .item-a {
    top: 31.5%;
  }

  .product-b .product-feature .image .item-b {
    top: 58%;
  }

  .product-b .product-feature .image .item-c {
    top: 85%;
  }

  .product-b .product-feature .image h4 {
    font-size: 28px;
    line-height: 40px;
  }

  .product-b .product-feature .image h5 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .product-b .product-feature .image p {
    line-height: 22px;
    font-size: 15px;
  }

  .product-b .product-feature2 .section-header {
    margin-bottom: 25px;
  }

  .product-b .product-feature2 .section-header .line {
    width: 250px;
    left: calc(50% - 250px / 2);
  }

  .product-b .product-feature2 .list {
    display: block;
    margin: 0 auto 45px;
    max-width: 213px;
  }

  .product-b .product-feature2 .item {
    width: 100%;
    margin: 0;
    display: block;
  }

  .product-b .product-feature2 .item+.item {
    margin-top: 15px;
  }

  .product-b .product-feature2 .item__content {
    padding: 10px 10px 15px;
  }

  .product-b .product-feature2 .item .main-text {
    font-size: 24px;
    line-height: 36px;
  }

  .product-b .product-feature2 .item .sub-text {
    font-size: 16px;
    line-height: 29px;
  }

  .product-b .product-feature2 .top-block {
    margin-bottom: 30px;
  }

  .product-b .product-feature2 .top-block p {
    text-align: justify;
    font-size: 17px;
    line-height: 29px;
    padding: 0 20px;
  }

  .product-b .product-feature2 .top-block p br {
    display: none;
  }

  .product-b .product-feature2 .center-block {
    position: relative;
    z-index: 1;
  }

  .product-b .product-feature2 .center-block .main-text {
    font-size: 18px;
    line-height: 29px;
  }

  .product-b .product-feature2 .center-block .image {
    width: calc(100% - 15px * 2);
  }

  .product-b .product-feature2 .bottom-block .image {
    margin-top: -90px;
  }

  .product-b .product-feature2 .bottom-block .main-text {
    font-size: 18px;
    line-height: 29px;
  }

  .product-b .product-feature2 .top-block .image {
    margin-top: -70px;
  }

  .product-b .product-feature2 .bottom-block .ps {
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 1.4;
    font-size: 10px;
    margin: -70px 0 50px;
    position: relative;
  }
}

@media (max-width: 480px) {
  .product-a .product-top__inner {
    max-width: 100%;
  }

  .product-a .product-feature .section-content {
    max-width: 100%;
  }

  .product-b .section {
    max-width: 100%;
  }

  .product-b .product-top__inner {
    max-width: 100%;
  }
}

@media (max-width: 374px) {
  .product-b .product-feature .image .text {
    font-size: 5vw;
  }

  .product-b .product-feature .image h4 {
    font-size: 7vw;
    line-height: 1.4;
  }

  .product-b .product-feature .image h5 {
    font-size: 5vw;
    margin-bottom: 5px;
  }

  .product-b .product-feature .image p {
    line-height: 1.4;
    font-size: 4vw;
  }

  .product-b .product-feature2 .center-block .main-text {
    font-size: 4.8vw;
    line-height: 1.6;
  }

  .product-b .product-feature2 .bottom-block .image {
    margin-top: -18vw;
  }

  .product-b .product-feature2 .bottom-block .main-text {
    font-size: 4.8vw;
    line-height: 1.6;
  }
}

.mask {
  background: rgba(0, 0, 0, 0.45);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  display: none;
  cursor: pointer;
  /*font-family: Verdana, Microsoft JhengHei, "微軟正黑體", sans-serif;*/
}

.mask * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mask.d_b {
  display: block !important;
}

.mask_in {
  position: absolute;
  width: 430px;
  top: 80px;
  left: calc(50% - 430px / 2);
  background: #fff;
  padding: 35px 15px;
  font-size: 20px;
  line-height: 32px;
  color: #222;
  text-align: center;
}

.mask_in b {
  font-weight: 700;
}

.btn_close {
  background: linear-gradient(to bottom, #ff4a00 0%, #ff0d00 100%);
  border-radius: 4px;
  box-shadow: 0 0 2px #ccc;
  padding: 11px 10px;
  color: #fff;
  position: relative;
  font-size: 22px;
  width: 140px;
  text-align: center;
  text-indent: 7px;
  font-weight: bold;
  margin-top: 25px !important;
  margin: auto;
  margin-top: auto;
  cursor: pointer;
}

.btn_close:before {
  content: "\2715";
  position: absolute;
  color: #fff;
  font-size: 17px;
  left: 18px;
}

/* 04 商品購買 */
.purchase .banner {
  margin-bottom: 60px;
}

.purchase .banner a {
  display: block;
}

.purchase .section-header {
  opacity: 0;
  position: relative;
  z-index: 1;
}

.purchase .section-content {
  opacity: 0;
}

.purchase .section.animated .section-header {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
}

.purchase .section.animated .section-content {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: .5s;
}

.purchase .grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.purchase .grid__image {
  width: calc(100% - 565px);
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.purchase .grid__image img {
  max-width: 340px;
  margin: 0 auto;
  z-index: 0;
}

.purchase .grid__content {
  width: 565px;
  position: relative;
  z-index: 1;
}

.purchase .single {
  padding: 28px 5px;
  background: white;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.35) 0%, rgba(242, 242, 242, 0.35) 10%);
  margin-bottom: 30px;
}

.purchase .panel {
  border: 1px solid #ccc;
  background-color: #fff;
  max-width: 490px;
  margin: 0 auto;
}

.purchase .panel-header {
  font-size: 36px;
  font-weight: 700;
  background-color: #e6e6e6;
  text-align: center;
  line-height: 75px;
}

.purchase .item {
  padding: 20px;
}

.purchase .item+.item {
  border-top: 1px solid #ccc;
}

.purchase .item__inner {
  position: relative;
  padding: 15px 25px;
  padding-left: 135px;
  padding-right: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  border-radius: 15px;
}

.purchase .item__content {
  width: calc(100% - 70px);
  max-width: 185px;
}

.purchase .item__image {
  width: 70px;
}

.purchase .item .main-text {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  text-align: justify;
}

.purchase .item .main-text span {
  letter-spacing: .05em;
}

.purchase .item .sub-text {
  font-size: 18px;
  margin-bottom: 20px;
}

.purchase .item .price {
  font-size: 18px;
}

.purchase .item .text-lg {
  font-size: 28px;
  /*font-family: arial;*/
}

.purchase .item-radio {
  position: relative;
}

.purchase .item-radio input[type="radio"] {
  display: none;
}

.purchase .item-radio label {
  cursor: pointer;
}

.purchase .item-radio label:before {
  content: '';
  position: absolute;
  width: 27px;
  height: 27px;
  background-color: #e6e6e6;
  border-radius: 50%;
  display: block;
  top: 18px;
  left: 95px;
  box-shadow: 0;
}

.purchase .item-radio label:after {
  content: '';
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #ed7700;
  position: absolute;
  top: 18px;
  left: 95px;
  display: none;
  opacity: 0;
}

.purchase .item-radio.is-checked label {
  box-shadow: 0 0 0 2px #ed7700;
}

.purchase .item-radio.is-checked label:after {
  display: block;
  opacity: 1;
}

.purchase .regular {
  padding: 28px 38px;
  background: #fef3d7;
  margin-bottom: 70px;
}

.purchase .regular .panel {
  border: 1px solid #ccc;
  background-color: #fff;
}

.purchase .regular .panel-header {
  position: relative;
  color: #fff;
  background: #ed7700;
  background: radial-gradient(circle, #ed7700 0%, #c84902 100%);
}

.purchase .regular .discount {
  position: absolute;
  top: -2px;
  left: 18px;
  width: 87px;
  height: 96px;
  background-image: url(../img/purchase-discount.png);
  background-size: contain;
  font-size: 30px;
  line-height: 90px;
  font-weight: 700;
  text-align: center;
  color: #000;
}

.purchase .regular .discount .text-lg {
  font-size: 72px;
  /*font-family: arial;*/
}

.purchase .regular .top-text {
  background-color: #fffaba;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.04em;
  text-align: center;
  line-height: 60px;
  color: #000;
}

.purchase .regular .item__inner {
  padding-top: 25px;
  padding-bottom: 25px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
}

.purchase .regular .item img {
  margin-bottom: -10px;
}

.purchase .regular .item-radio label:before {
  top: 26px;
}

.purchase .regular .item-radio label:after {
  top: 26px;
}

.purchase .regular .main-text {
  font-size: 24px;
  line-height: 30px;
}

.purchase .regular .sub-text {
  margin-bottom: 40px;
}

.purchase .regular .highlight {
  color: #ed1c24;
  font-weight: 700;
}

.purchase .regular .note {
  color: #fff;
  background-color: #ed1c24;
  line-height: 27px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  margin-top: -25px;
  width: 145px;
  display: block;
  text-align: center;
}

.purchase .icon-cart {
  width: 40px;
  height: 40px;
  background-image: url(../img/icon-cart.svg);
  position: absolute;
  top: 15px;
  left: 25px;
}

.purchase .perks {
  display: none;
  border-top: 1px solid #ccc;
}

.purchase .perks.is-toggle {
  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;
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
}

.purchase .perks-item {
  position: relative;
  width: 50%;
  padding-left: 40px;
  padding-right: 10px;
  padding-top: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
  font-size: 17px;
  line-height: 25px;
  color: #000;
  overflow: hidden;
}

.purchase .perks-item:before {
  content: "";
  position: absolute;
  top: 30px;
  right: 0;
  width: 1px;
  height: calc(100% - 30px);
  background-color: #ccc;
  opacity: 0;
}

.purchase .perks-item .hd {
  background-color: #ed7700;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 65px;
  width: 82px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  display: block;
}

.purchase .perks-item .bd {
  position: relative;
  z-index: 1;
}

.purchase .perks-item .text-lg {
  font-size: 24px;
}

.purchase .perks-item .image {
  position: absolute;
  width: 100px;
  z-index: 0;
}

.purchase .perks-item-1:before {
  opacity: 1;
}

.purchase .perks-item-1 .hd {
  margin-bottom: 75px;
}

.purchase .perks-item-1 .text-lg {
  font-size: 48px;
  line-height: 1;
}

.purchase .perks-item-2 {
  padding-left: 30px;
}

.purchase .perks-item-2 .text-md {
  font-size: 24px;
}

.purchase .perks-item-2 .text-lg {
  font-size: 36px;
}

.purchase .perks-item-3:before {
  opacity: 1;
}

.purchase .perks-item-3 .image {
  top: 58px;
  left: 130px;
}

.purchase .perks-item-4 {
  padding-left: 30px;
}

.purchase .perks-item-4 .image {
  top: 63px;
  left: 110px;
}

.purchase .perks-bottom {
  width: 100%;
  text-align: center;
  padding: 20px 10px 25px;
  color: #ed7700;
  font-size: 21px;
  font-weight: 700;
  line-height: 29px;
}

.purchase-top {
  padding-bottom: 50px;
}

.purchase-top .section-header .line {
  width: 160px;
  left: calc(50% - 160px / 2);
}

.purchase-a {
  padding-bottom: 70px;
}

.purchase-a .section-header {
  margin-bottom: 40px;
}

.purchase-a .section-header .line {
  width: 520px;
  left: calc(50% - 520px / 2);
}

.purchase-b {
  border-top: 1px solid #b3b3b3;
  padding-top: 60px;
}

.purchase-b .section-header {
  margin-bottom: 40px;
}

.purchase-b .section-header .line {
  width: 570px;
  left: calc(50% - 570px / 2);
}

.purchase-b .item__inner {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
}

.purchase-b .item__content {
  width: calc(100% - 80px);
}

.purchase-b .item__image {
  width: 80px;
}

.purchase-b .regular .item__inner {
  padding-right: 20px;
}

.purchase-b .regular .item__content {
  width: calc(100% - 90px);
}

.purchase-b .regular .item__image {
  width: 90px;
  margin-bottom: 10px;
  margin-left: -10px;
}

@media (max-width: 767px) {
  .mask_in {
    width: 300px;
    left: calc(50% - 300px / 2);
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 20px;
    font-size: 16px;
    line-height: 24px;
  }

  .purchase .section-header {
    margin-bottom: 20px;
  }

  .purchase .section-header .title {
    line-height: 42px;
  }

  .purchase .section-header span {
    display: block;
  }

  .purchase .section-header .line {
    width: 140px;
    left: calc(50% - 140px / 2);
    bottom: 41px;
  }

  .purchase .banner {
    margin-bottom: 40px;
  }

  .purchase .grid {
    display: block;
  }

  .purchase .grid__image {
    width: 100%;
  }

  .purchase .grid__image img {
    max-width: 220px;
  }

  .purchase .grid__content {
    width: 100%;
    padding: 0 13px;
  }

  .purchase .single {
    padding: 20px 2px;
    margin-bottom: 20px;
  }

  .purchase .panel {
    max-width: 325px;
  }

  .purchase .panel-header {
    font-size: 24px;
    line-height: 50px;
  }

  .purchase .item {
    padding: 14px;
  }

  .purchase .item__inner {
    padding: 15px 25px;
    padding-left: 88px;
    padding-right: 10px;
    border-radius: 8px;
  }

  .purchase .item__content {
    width: calc(100% - 50px);
    max-width: 125px;
  }

  .purchase .item__image {
    width: 50px;
  }

  .purchase .item .main-text {
    font-size: 16px;
    line-height: 19px;
  }

  .purchase .item .sub-text {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .purchase .item .price {
    font-size: 12px;
  }

  .purchase .item .text-lg {
    font-size: 19px;
  }

  .purchase .item-radio label:before {
    width: 18px;
    height: 18px;
    top: 15px;
    left: 60px;
  }

  .purchase .item-radio label:after {
    width: 18px;
    height: 18px;
    top: 15px;
    left: 60px;
  }

  .purchase .regular {
    padding: 20px 2px;
    margin-bottom: 50px;
  }

  .purchase .regular .discount {
    top: -2px;
    left: 12px;
    width: 58px;
    height: 65px;
    font-size: 20px;
    line-height: 65px;
  }

  .purchase .regular .discount .text-lg {
    font-size: 48px;
  }

  .purchase .regular .top-text {
    font-size: 16px;
    line-height: 39px;
  }

  .purchase .regular .item__inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .purchase .regular .item img {
    margin-bottom: -5px;
  }

  .purchase .regular .item-radio label:before {
    top: 20px;
  }

  .purchase .regular .item-radio label:after {
    top: 20px;
  }

  .purchase .regular .main-text {
    font-size: 16px;
    line-height: 19px;
  }

  .purchase .regular .sub-text {
    margin-bottom: 25px;
  }

  .purchase .regular .note {
    line-height: 18px;
    font-size: 12px;
    margin-bottom: 5px;
    margin-top: -15px;
    width: 100px;
  }

  .purchase .icon-cart {
    width: 29px;
    height: 29px;
    top: 12px;
    left: 20px;
  }

  .purchase .perks-item {
    width: 50%;
    padding-left: 25px;
    padding-right: 5px;
    padding-top: 20px;
    padding-bottom: 10px;
    font-size: 12px;
    line-height: 18px;
  }

  .purchase .perks-item:before {
    top: 20px;
    height: calc(100% - 20px);
  }

  .purchase .perks-item .hd {
    font-size: 16px;
    margin-bottom: 40px;
    width: 54px;
    height: 24px;
    line-height: 24px;
  }

  .purchase .perks-item .text-lg {
    font-size: 16px;
  }

  .purchase .perks-item .image {
    width: 65px;
  }

  .purchase .perks-item-1 .hd {
    margin-bottom: 48px;
  }

  .purchase .perks-item-1 .text-lg {
    font-size: 32px;
  }

  .purchase .perks-item-2 {
    padding-left: 18px;
  }

  .purchase .perks-item-2 .text-md {
    font-size: 16px;
  }

  .purchase .perks-item-2 .text-lg {
    font-size: 24px;
  }

  .purchase .perks-item-3 .image {
    top: 38px;
    left: 92px;
  }

  .purchase .perks-item-4 {
    padding-left: 18px;
  }

  .purchase .perks-item-4 .image {
    top: 42px;
    left: 75px;
  }

  .purchase .perks-bottom {
    padding: 15px 10px;
    font-size: 14px;
    line-height: 19px;
  }

  .purchase-top {
    padding-bottom: 20px;
  }

  .purchase-top .section-header .line {
    width: 120px;
    left: calc(50% - 120px / 2);
    bottom: 0;
  }

  .purchase-a {
    padding-bottom: 50px;
  }

  .purchase-a .grid__image {
    height: 280px;
  }

  .purchase-a .grid__image img {
    position: relative;
    top: -30px;
    max-width: 200px;
  }

  .purchase-b {
    padding-top: 40px;
    padding-bottom: 20px;
    border-top: 2px solid #b3b3b3;
  }

  .purchase-b .grid__image {
    height: 180px;
  }

  .purchase-b .grid__image img {
    position: relative;
    top: -85px;
    max-width: 240px;
  }

  .purchase-b .item__content {
    width: calc(100% - 56px);
  }

  .purchase-b .item__image {
    width: 56px;
  }

  .purchase-b .regular .item__inner {
    padding-right: 10px;
  }

  .purchase-b .regular .item__content {
    width: calc(100% - 60px);
  }

  .purchase-b .regular .item__image {
    width: 60px;
    margin-bottom: 10px;
    margin-left: -5px;
  }
}

@media (min-width: 768px) {
  .purchase {
    /*txt*/
  }

  .purchase .smalltxt {
    font-size: 11px;
    transform: scale(0.87);
    letter-spacing: -1px;
    margin-bottom: -3px;
    margin-left: -1px;
    margin-top: 6px;
    font-weight: bold;
  }

  .purchase .smalltxt_2 {
    font-size: 16px;
    margin-left: -5px;
    font-weight: bold !important;
    /*font-family: "Arial Black" !important;*/
  }

  .purchase .txt h1 {
    font-size: 26px !important;
  }

  .purchase .flex2Block {
    display: flex;
  }

  .purchase .pleft {
    width: 520px !important;
    margin-right: 60px;
    padding-top: 0 !important;
  }

  .purchase .column2Row {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .purchase .column2Row label input {
    margin-right: 13px;
    margin-top: 6px;
  }

  .purchase .txt {
    flex: 1;
    position: relative;
  }

  .purchase .plus {
    font-size: 21px !important;
    font-weight: bold !important;
  }

  .purchase #panes2 {
    border: #e2e2e2 solid 1px !important;
    width: 100% !important;
    height: 474px !important;
  }

  .purchase #tab_nav2 li a {
    border: #e2e2e2 solid 1px !important;
    box-sizing: border-box;
  }

  .purchase #panes2 div {
    width: 100% !important;
    height: 474px !important;
    position: absolute !important;
  }

  .purchase #panes2 div img {
    width: 100% !important;
    height: 474px !important;
  }

  .purchase .pleft .zoom {
    top: inherit !important;
    bottom: 0 !important;
  }

  .purchase #tab_nav2 {
    margin-top: 20px;
  }

  .purchase #tab_nav2 ul {
    display: flex;
  }

  .purchase #tab_nav2 li {
    flex: 1;
    margin-right: 8px !important;
    text-align: center !important;
    height: auto !important;
  }

  .purchase #tab_nav2 li:last-child {
    margin-right: 0 !important;
  }

  .purchase #tab_nav2 img {
    width: 100% !important;
    margin: auto !important;
    height: auto;
  }

  .purchase .fR {
    float: right;
  }

  .purchase .mt8 {
    margin-top: 8px;
  }

  .purchase .mt15 {
    margin-top: 15px;
  }

  .purchase p {
    line-height: normal;
  }

  .purchase .txt h1 {
    padding: 0 !important;
  }

  .purchase .f13 {
    font-size: 13px;
  }

  .purchase .f18 {
    font-size: 18px;
    line-height: normal;
  }

  .purchase .f15 {
    font-size: 15px;
  }

  .purchase .f16 {
    font-size: 17px;
    font-weight: bold;
    color: #222;
    letter-spacing: -0.5px;
    line-height: 20px;
  }

  .purchase .pro_m {
    position: absolute;
    left: 10px;
    bottom: 6px;
    width: 52px;
  }

  .purchase .pro_m img {
    width: 100%;
    height: auto;
  }

  .purchase .brown {
    color: #996e33 !important;
    font-size: 14px;
    font-weight: bold;
  }

  .purchase .pink {
    color: #eb0000 !important;
    margin-left: 0 !important;
  }

  .purchase .t_indent {
    text-indent: -31px;
    padding-left: 36px;
    font-size: 14px;
  }

  .purchase .ver_t {
    vertical-align: top;
  }

  .purchase .ver_b {
    vertical-align: bottom;
  }

  .purchase .blue {
    color: #0072ef;
    font-size: 14px;
    line-height: inherit;
    margin: 0;
  }

  .purchase .orange {
    color: #ff6600 !important;
  }

  .purchase .orange span {
    font-weight: bold;
  }

  .purchase .lineNarrow {
    line-height: 16px !important;
    margin-top: -6px;
  }

  .purchase .f22 {
    font-size: 22px;
    font-weight: bold;
  }

  .purchase .f26 {
    font-size: 26px;
    font-weight: bold;
  }

  .purchase .f34 {
    font-size: 34px;
    font-weight: bold;
    vertical-align: baseline;
    /*font-family: Arial, Helvetica, sans-serif;*/
  }

  .purchase .t_align_center {
    text-align: center;
  }

  .purchase .flex1 {
    flex: 1;
  }

  .purchase .w100 {
    width: 100%;
  }

  .purchase .f_name {
    font-size: 19px;
    margin-bottom: 7px;
    font-weight: bold;
    line-height: 20px;
  }

  .purchase .f_1 {
    flex: 1;
  }

  .purchase .text_ad {
    font-size: 16px;
    font-weight: bold;
    line-height: 26px;
    vertical-align: 2px;
    margin-bottom: 6px;
  }

  .purchase .text_ad_pink {
    color: #eb0000;
    font-size: 16px;
    font-weight: bold;
    line-height: 26px;
    vertical-align: 2px;
    margin-bottom: 6px;
  }

  .purchase .flex_end {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .purchase .content_1 {
    padding: 13px 10px 15px 20px;
    margin-bottom: 3px;
  }

  .purchase .pa10 {
    font-size: 38px;
    font-weight: bold;
    letter-spacing: -2px;
    margin-right: 4px;
    /*font-family: Arial, Helvetica, sans-serif;*/
  }

  .purchase .wrap2row {
    display: flex;
    flex-wrap: wrap;
  }

  .purchase .bgGray {
    background: #f0f0f0;
    margin-top: 18px;
  }

  .purchase .bgOrange {
    /* background: linear-gradient(to bottom, #ffeecc 62%, #ffffff 62%); */
    background: #ffeecc;
  }

  .purchase .txt>h2 {
    font-weight: 500;
    margin: 0;
    padding: 0 0 8px 8px;
    font-size: 26px;
    line-height: 36px;
  }

  .purchase .txt .content_1 h3 {
    font-weight: bold;
    color: #222222;
    margin-top: 9px;
    padding: 0 0 8px 8px;
    font-size: 21px;
    line-height: 36px;
    width: 140px;
  }

  .purchase .d_flex {
    display: flex;
  }

  .purchase .a_items_center {
    align-items: center;
  }

  .purchase .a_items_center a {
    text-decoration: none;
  }

  .purchase .fR {
    float: right;
  }

  .purchase .f_detail,
  .purchase .f_detail_1 {
    font-size: 15px;
    color: #666;
    margin-right: 15px;
    vertical-align: 2px;
  }

  .purchase .box2_in {
    margin-left: 30px;
    text-align: right;
    width: 100%;
    padding-top: 15px;
    letter-spacing: -1px;
    white-space: nowrap;
  }

  .purchase .bold {
    font-weight: bold;
  }

  .purchase .shadow_G {
    box-shadow: 0px 0px 5px #d1d1d1;
  }

  .purchase .shadow_O {
    box-shadow: 0px 0px 5px #fbc678;
  }

  .purchase .active_1 {
    border: #ff8800 solid 3px;
  }

  .purchase .dollars {
    font-size: 25px;
    font-weight: bold;
    /*font-family: "Arial", Microsoft JhengHei, "微軟正黑體";*/
    color: #222;
    padding: 0;
    margin-top: -5px;
  }

  .purchase .dollars1 {
    font-size: 28px;
    font-weight: bold;
    /*font-family: "Arial", Microsoft JhengHei, "微軟正黑體";*/
    color: #222;
    padding: 0 4px;
  }

  .purchase .dollars2 {
    font-size: 20px;
    font-weight: bold;
    /*font-family: "Arial", Microsoft JhengHei, "微軟正黑體";*/
    color: #222;
    padding: 0 0 10px 0;
  }

  .purchase .phone_only {
    display: none;
  }

  .purchase .mL-5 {
    margin-left: 5px;
  }

  .purchase .h35 {
    height: 35px;
  }

  .purchase .nowrap {
    white-space: nowrap;
  }

  .purchase .items {
    display: flex;
    align-items: center;
    padding: 8px;
    cursor: pointer;
  }

  .purchase .items img {
    margin-right: 5px;
    width: 22px;
  }

  .purchase .items a {
    text-decoration: none;
  }

  .purchase .items p:hover {
    color: #00bbff !important;
    text-decoration: underline;
  }

  .purchase .Pinklinear {
    padding: 6px 12px;
    color: white;
    display: flex;
    align-items: center;
    width: calc(100% - 31px);
    font-weight: bold;
    position: relative;
    height: 52px;
    background: linear-gradient(to right, #ff1254 0%, #ff6600 100%);
  }

  .purchase .Pinklinear::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 0;
    bottom: -25px;
    border-style: solid;
    border-width: 0 15px 25px 0;
    border-color: transparent #b80000 transparent transparent;
  }

  .purchase .Pinklinear::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 52px;
    top: 0;
    right: -10px;
    clip-path: polygon(100% 0%, 0 50%, 100% 100%, 0% 100%, 0% 0%);
    background: #ff6600;
  }

  .purchase .Pinklinear b {
    line-height: 20px;
    font-size: 15px;
    padding-left: 30px;
    font-weight: bold;
  }

  .purchase .Pinklinear img {
    position: absolute;
    right: 30px;
    bottom: 10px;
    width: 45px;
  }

  .purchase .Pinklinear span {
    font-weight: bold;
    font-size: 21px;
    color: white;
    padding-left: 18px;
  }

  .purchase .whitediv {
    background: white;
    width: calc(100% - 18px);
    margin: auto;
    background: white;
    padding: 0;
    position: relative;
    /*font-family: 'Arial', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';*/
  }

  .purchase .whitediv a {
    color: #0072ef;
    text-decoration: none;
    position: relative;
  }

  .purchase .whitediv a:hover {
    text-decoration: underline;
  }

  .purchase .whitediv a::after {
    position: absolute;
    content: "";
    top: 0px;
    right: -5px;
    width: 14px;
    height: 17px;
    background: url(../img/arrow.svg) no-repeat;
    background-size: auto 85%;
  }

  .purchase .whitediv .div4 {
    box-sizing: border-box;
    margin-bottom: -1px;
    margin-right: -1px;
    padding: 7px;
    border-right: #e4e4e4 solid 1px;
    position: relative;
  }

  .purchase .div4 .t_align_center {
    margin-top: 25px !important;
  }

  .purchase .whitediv .div4:nth-child(1) {
    flex: 0.95;
  }

  .purchase .whitediv .div4:nth-child(2) {
    flex: 1.1;
  }

  .purchase .whitediv .div4:nth-child(3) {
    flex: 1.05;
  }

  .purchase .whitediv .div4:last-child {
    flex: 1;
    border: none;
  }

  .purchase .LFh1 {
    color: #ff6600;
    font-weight: bold;
    font-size: 18px;
    width: 90%;
    position: absolute;
    top: 63%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    letter-spacing: -1px;
  }

  .purchase .LFh1 p {
    font-weight: bold;
    font-size: 22px;
  }

  .purchase .routine_more {
    border-top: #e4e4e4 solid 1px;
    color: #ff6000;
    font-weight: bold;
    font-size: 14px;
    padding: 15px;
  }

  .purchase .div4 .h1 {
    font-size: 15px;
    color: #ff6600;
    font-weight: bold;
  }

  .purchase .pro_1 {
    position: absolute;
    width: 68px;
    height: 69px;
    background: url(../img/pro_1.png) no-repeat;
    background-size: auto 100%;
    top: 2px;
    right: 2px;
  }

  .purchase .pro_2 {
    position: absolute;
    width: 56px;
    height: 67px;
    background: url(../img/pro_2.png) no-repeat;
    background-size: auto 100%;
    top: 4px;
    right: 8px;
  }

  .purchase .tit2 {
    font-size: 20px;
    color: #222;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .purchase .tit2 small {
    font-size: 16px;
  }

  .purchase .d_i {
    display: inline !important;
  }

  .purchase .mL-15 {
    margin-left: -15%;
  }

  .purchase .item4 {
    color: white;
    padding: 3px 10px;
    background: #ff6600;
    border-radius: 50px;
    display: inline-block;
    font-size: 13px;
    white-space: nowrap;
    margin-bottom: 6px;
  }

  .purchase .div4 h3 {
    color: #ff6600 !important;
    font-size: 20px;
  }

  .purchase .t_align_center {
    text-align: center;
  }

  .purchase .orangebox,
  .purchase .orangebox1 {
    background: #ff9900;
    color: white;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    padding: 15px 12px 70px 12px;
    border-radius: 5px;
    position: relative;
    width: 103px;
    margin-left: 9px;
    margin-top: 8px;
    white-space: nowrap;
  }

  .purchase .orangebox::before,
  .purchase .orangebox1::before {
    position: absolute;
    content: "";
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #ff9900 transparent;
    top: -4px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .purchase .orangebox::after {
    position: absolute;
    content: "";
    background: url(../img/off1.png) no-repeat;
    background-size: auto 100%;
    width: 66px;
    height: 43px;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .purchase .orangebox1::after {
    position: absolute;
    content: "";
    background: url(../img/75.svg) no-repeat;
    background-size: auto 100%;
    width: 83px;
    height: 40px;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .purchase .proDetail {
    background: #5bc946;
    color: white;
    padding: 5px;
    margin-top: 10px;
    border-radius: 5px;
    display: inline-block;
  }

  .purchase .carousel-inner img {
    width: 100%;
    height: auto;
  }

  .purchase .carousel-inner .active {
    border: none;
  }

  .purchase .box2-1 {
    display: table;
    width: calc(100% - 24px);
  }

  .purchase .btn,
  .purchase .btn2,
  .purchase .btn3,
  .purchase .btn4 {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 20px auto;
    padding: 20px 0;
    text-align: center;
    text-indent: 15px;
    background: url(../img/chat_1.svg) no-repeat left 20px center, linear-gradient(to bottom, #ff6000 0%, #ff4100 100%);
    color: white;
    font-size: 24px;
    border-radius: 5px;
    box-shadow: 1px 1px 3px #00000041;
    height: auto !important;
  }

  .purchase #move_top {
    z-index: 9;
  }

  .purchase .iframe {
    width: 100%;
    height: calc(100% - 10px);
  }

  .purchase .p1 {
    color: #222 !important;
  }

  .purchase .p115 i {
    text-decoration: none !important;
  }

  .purchase .mt8 {
    margin-top: 8px !important;
  }

  .purchase .f14 {
    font-size: 14px;
  }

  .purchase .ps {
    font-size: 14px !important;
    line-height: normal;
    color: #222;
  }

  .purchase .ps1 {
    font-size: 14px !important;
    line-height: normal;
    text-indent: -12px;
    padding-left: 12px;
  }

  .purchase .ps2 {
    font-size: 14px !important;
    line-height: normal;
    text-indent: -26px;
    padding-left: 26px;
  }

  .purchase .ps3 {
    font-size: 14px !important;
    line-height: normal;
    text-indent: -21px;
    padding-left: 21px;
  }

  .purchase .txt_f14 {
    text-align: right;
    color: #eb0000;
    padding: 8px 0;
    font-weight: bold;
  }

  .purchase .mt15 {
    margin-top: 15px;
  }

  .purchase .mt35 {
    margin-top: 35px;
  }

  .purchase .txt h2 {
    padding: 0 !important;
  }

  .purchase .f13 {
    font-size: 13px;
    line-height: 20px;
    padding-bottom: 5px;
    letter-spacing: -0.3px;
  }

  .purchase .f11 {
    font-size: 11px;
  }

  .purchase .f18 {
    font-size: 18px;
    line-height: normal;
  }

  .purchase .f15 {
    font-size: 15px;
  }

  .purchase .f16 {
    font-size: 17px;
    font-weight: bold;
    color: #222;
    letter-spacing: -0.5px;
    line-height: 20px;
  }

  .purchase .pro_s {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 50px;
    height: 50px;
  }

  .purchase .pro_s img {
    width: 100%;
    height: auto;
  }

  .purchase .pro_m {
    position: absolute;
    left: 10px;
    bottom: 6px;
    width: 52px;
  }

  .purchase .pro_m img {
    width: 100%;
    height: auto;
  }

  .purchase .ver_t {
    vertical-align: top;
  }

  .purchase .ver_b {
    vertical-align: bottom;
  }

  .purchase .lineNarrow {
    line-height: 16px !important;
    margin-top: -6px;
  }

  .purchase .f22 {
    font-size: 22px;
    font-weight: bold;
  }

  .purchase .f26 {
    font-size: 26px;
    font-weight: bold;
  }

  .purchase .t_align_center {
    text-align: center;
  }

  .purchase .flex1 {
    flex: 1;
  }

  .purchase .w100 {
    width: 100%;
  }

  .purchase .f_name {
    font-size: 19px;
    margin-bottom: 7px;
    font-weight: bold;
    line-height: 20px;
  }

  .purchase .d_flex {
    display: flex;
    flex-wrap: wrap;
  }

  .purchase .a_items_center {
    align-items: center;
  }

  .purchase .a_items_center a {
    text-decoration: none;
  }

  .purchase .fR {
    float: right;
  }

  .purchase .box2 {
    background: white;
    flex: 1;
    padding: 15px 15px 15px 10px;
  }

  .purchase .shadow_G {
    box-shadow: 0px 0px 5px #d1d1d1;
  }

  .purchase .shadow_O {
    box-shadow: 0px 0px 5px #fbc678;
  }

  .purchase .box2:last-child {
    margin-right: 0;
  }

  .purchase .phone_only {
    display: none;
  }

  .purchase .mL-5 {
    margin-left: 5px;
  }

  .purchase .nowrap {
    white-space: nowrap;
  }

  .purchase .text2 {
    color: #eb0000;
    font-weight: bold;
    font-size: 13px;
    line-height: 14px;
    margin-top: -5px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    height: 33px;
  }

  .purchase .tit2 {
    font-size: 20px;
    color: #222;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .purchase .tit2 small {
    font-size: 16px;
  }

  .purchase .iframeBox {
    overflow-y: auto;
    height: calc(100vh - 150px);
  }

  .purchase .d_n,
  .purchase .d_n2,
  .purchase .d_n3,
  .purchase .d_n4,
  .purchase .d_n5,
  .purchase .d_n6,
  .purchase .d_n7 {
    display: none;
  }

  .purchase .d_b,
  .purchase .d_b2,
  .purchase .d_b3,
  .purchase .d_b4,
  .purchase .d_b5,
  .purchase .d_b6,
  .purchase .d_n7 {
    display: block !important;
  }

  .purchase .mL-15 {
    margin-left: -15%;
  }

  .purchase .div4 h3 {
    color: #ff6600 !important;
    font-size: 20px;
  }

  .purchase .btn,
  .purchase .btn2,
  .purchase .btn3,
  .purchase .btn4 {
    width: 100%;
    max-width: 380px;
    margin: 0 auto 20px auto;
    padding: 18px 0;
    text-align: center;
    text-indent: 15px;
    background: linear-gradient(to bottom, #ff6000 0%, #ff4100 100%);
    color: white;
    font-size: 24px;
    border-radius: 5px;
    box-shadow: 1px 1px 3px #00000041;
    height: auto !important;
    cursor: pointer;
    font-weight: bold;
    position: relative;
  }

  .purchase .btn::before,
  .purchase .btn2::before,
  .purchase .btn3::before,
  .purchase .btn4::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 30px;
    background: url(../img/chat_1.svg) no-repeat;
    background-size: auto 100%;
    left: 50px;
    top: 16px;
  }

  .purchase .btn:hover,
  .purchase .btn2:hover,
  .purchase .btn3:hover,
  .purchase .btn4:hover,
  .purchase .btn:active,
  .purchase .btn2:active,
  .purchase .btn3:active,
  .purchase .btn4:active {
    background: linear-gradient(to bottom, #ff4100 0%, #ff6000 100%);
  }

  .purchase #popbox,
  .purchase #popbox1,
  .purchase #popbox2,
  .purchase #popbox3,
  .purchase #popbox4,
  .purchase #popbox5,
  .purchase #popbox6,
  .purchase #popbox7,
  .purchase #popbox8,
  .purchase #popbox9,
  .purchase #popbox10,
  .purchase #popbox11 {
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    margin-top: 4px;
    display: none;
  }

  .purchase .popbox_in {
    position: relative;
    width: auto;
    overflow-y: auto;
    margin-top: 0px;
    padding-bottom: 145px;
    border: #666 solid 2px;
    background: #fff;
  }

  .purchase .plusPC {
    margin: 4px 0;
    font-weight: bold;
    font-size: 22px !important;
  }

  .purchase .close_bottom {
    width: 50% !important;
    top: inherit !important;
    height: 37px !important;
    bottom: -9px !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    background: linear-gradient(to bottom, #ff5100 0%, #ff2800 100%) !important;
    border-radius: 4px;
    box-shadow: 0 0 2px #ccc;
    padding: 17px 10px 0px 10px;
    color: #fff;
    font-size: 22px;
    display: inline-block;
    text-align: center;
    text-indent: 7px;
    font-weight: bold;
    z-index: 99;
    cursor: pointer;
    margin-top: 20px;
  }

  .purchase .close_bottom::before {
    content: "✕";
    position: absolute;
    color: #fff;
    font-size: 17px;
    left: 18px;
    top: 19px;
  }

  .purchase .close_bottom:hover,
  .purchase .close_bottom:active {
    background: linear-gradient(to bottom, #ff2800 0%, #ff5100 100%);
  }

  .purchase #move_top {
    z-index: 9;
  }

  .purchase .stage_pop {
    font-size: 14px;
  }

  .purchase .recommend a {
    text-decoration: none;
  }

  .purchase .recommend a:hover h3 {
    text-decoration: underline;
    color: #00bbff;
  }

  .purchase .recommend a:hover p,
  .purchase .recommend a:active p {
    text-decoration: underline;
    color: #222;
  }

  .purchase .recommend a:hover .recommend_img>img {
    opacity: 0.6;
  }

  .purchase .recommend_div {
    width: 400px;
    display: flex;
    padding-right: 30px;
  }

  .purchase .recommend_txt h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #0072ef;
    height: 35px;
    line-height: normal;
    /*font-family: "Arial";*/
  }

  .purchase .recommend_txt p {
    font-size: 15px;
    color: #222;
  }

  .purchase .recommend_img {
    margin-right: 20px;
    position: relative;
  }

  .purchase .recommend_img img {
    width: 180px;
    height: auto;
  }

  .purchase .recommend_txt {
    padding-top: 25px;
    text-align: center;
  }

  .purchase .f13_top {
    font-size: 13px;
    vertical-align: super;
  }

  .purchase .awwrdRT {
    position: absolute;
    width: 78px;
    height: 78px;
    top: -7px;
    right: -20px;
  }

  .purchase .awwrdRT img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .purchase {
    /*fixslider*/
    /*colorbox*/
    /*txt*/
    /**/
    /**/
  }

  .purchase .qaa {
    margin-bottom: 20px;
  }

  .purchase .qaa a {
    color: #0072EF;
    font-size: 14px;
    padding-left: 22px;
    background-size: 17px auto;
    display: block;
    line-height: 1.4em;
    position: relative;
    background: none;
    text-align: left;
  }

  .purchase .qaa a:hover {
    text-decoration: underline;
  }

  .purchase .qaa a::before {
    position: absolute;
    content: "";
    background: url(../img/que.svg) no-repeat;
    width: 20px;
    height: 20px;
    left: 0;
    top: -2px;
  }

  .purchase .qaa a:not(:last-of-type) {
    padding-bottom: 10px;
  }

  .purchase .qaa .big {
    font-size: 20px;
    font-weight: bold;
  }

  .purchase .pleft {
    padding-top: 5px !important;
    width: 100% !important;
    height: auto !important;
  }

  .purchase #panes2 {
    border: #e2e2e2 solid 1px !important;
    width: 100% !important;
    height: auto !important;
  }

  .purchase #tab_nav2 li a {
    border: #e2e2e2 solid 1px !important;
    box-sizing: border-box;
  }

  .purchase #panes2 div {
    width: 100% !important;
    height: auto !important;
    position: absolute !important;
  }

  .purchase #panes2 div img {
    width: 100% !important;
    height: auto !important;
  }

  .purchase .pleft .zoom {
    top: inherit !important;
    bottom: 0 !important;
  }

  .purchase #tab_nav2 li {
    width: 25% !important;
    margin-left: 0 !important;
    text-align: center !important;
  }

  .purchase #tab_nav2 img {
    width: 90% !important;
    margin: auto !important;
  }

  .purchase #colorbox {
    width: 100% !important;
  }

  .purchase #cboxWrapper,
  .purchase #cboxTopCenter,
  .purchase #cboxContent,
  .purchase #cboxLoadedContent,
  .purchase #cboxLoadedContent {
    width: 100% !important;
    height: auto !important;
  }

  .purchase #cboxMiddleLeft {
    height: auto;
  }

  .purchase #cboxLoadedContent img {
    width: 100% !important;
    height: auto !important;
  }

  .purchase #cboxContent,
  .purchase #cboxLoadedContent {
    background: none !important;
  }

  .purchase #cboxContent {
    margin-top: 50px !important;
  }

  .purchase #cboxClose {
    border: 0;
    padding: 0;
    margin: 0;
    overflow: visible;
    text-indent: -9999px;
    width: 40px !important;
    height: 40px !important;
    position: absolute;
    top: -40px !important;
    right: 10px !important;
    background: url(../img/close.svg) !important;
    background-size: auto 100% !important;
    background-position-x: 80px !important;
    background-position-y: 0px !important;
  }

  .purchase .mt8 {
    margin-top: 3px !important;
  }

  .purchase .mt15 {
    margin-top: 15px;
  }

  .purchase p {
    line-height: normal;
    font-weight: 300;
  }

  .purchase .txt h1 {
    padding: 0 !important;
  }

  .purchase .f13 {
    font-size: 13px;
    line-height: 20px;
    padding-bottom: 5px;
    letter-spacing: -0.3px;
  }

  .purchase .f18 {
    font-size: 18px;
    line-height: normal;
  }

  .purchase .f15 {
    font-size: 15px;
    font-weight: 300;
  }

  .purchase .f16 {
    font-size: 15px;
    font-weight: bold;
    color: #222;
    letter-spacing: -0.5px;
    line-height: 20px;
    white-space: nowrap;
  }

  .purchase .pro_s {
    position: absolute;
    left: 2px;
    bottom: 5px;
    width: 36px;
  }

  .purchase .pro_s img {
    width: 100%;
    height: auto;
  }

  .purchase .pro_m {
    position: absolute;
    left: 10px;
    bottom: 6px;
    width: 52px;
  }

  .purchase .pro_m img {
    width: 100%;
    height: auto;
  }

  .purchase .brown {
    color: #996e33 !important;
  }

  .purchase .pink {
    color: #eb0000 !important;
  }

  .purchase .t_indent {
    text-indent: -34px;
    padding-left: 38px;
  }

  .purchase .ver_t {
    vertical-align: top;
  }

  .purchase .ver_b {
    vertical-align: bottom;
  }

  .purchase .blue {
    color: #0072ef !important;
  }

  .purchase .orange {
    color: #ff8800;
  }

  .purchase .lineNarrow {
    line-height: 16px !important;
    margin-top: -6px;
  }

  .purchase .f22 {
    font-size: 22px;
    font-weight: bold;
  }

  .purchase .f26 {
    font-size: 26px;
    font-weight: bold;
  }

  .purchase .f34 {
    font-size: 34px;
    font-weight: bolder;
    vertical-align: baseline;
  }

  .purchase .t_align_center {
    text-align: center;
  }

  .purchase .flex1 {
    flex: 1;
  }

  .purchase .w100 {
    width: 100%;
  }

  .purchase .f_name {
    font-size: 19px;
    margin-bottom: 7px;
    font-weight: bold;
    line-height: 20px;
  }

  .purchase .content_1 {
    padding: 13px 8px;
    /*font-family: "Noto Sans TC", sans-serif;*/
    font-size: 14px;
  }

  .purchase .bgGray {
    background: #f0f0f0;
    margin-top: 45px;
  }

  .purchase .bgOrange {
    background: linear-gradient(to bottom, #ffeecc 57%, #ffffff 100%);
  }

  .purchase .content_1 h1 {
    font-weight: bold;
    color: #222222;
    margin: 0;
    padding: 0 0 25px 20px;
    font-size: 24px;
    line-height: 36px;
  }

  .purchase .content_1 h2 {
    font-weight: bold;
    color: #222222;
    margin: 0;
    padding: 0 0 8px 8px;
    font-size: 24px;
    line-height: 36px;
  }

  .purchase .d_flex {
    display: flex;
  }

  .purchase .a_items_center {
    align-items: center;
  }

  .purchase .a_items_center a {
    text-decoration: none;
  }

  .purchase .fR {
    float: right;
  }

  .purchase .f_detail,
  .purchase .f_detail_1 {
    font-size: 11px;
    margin-top: 5px;
    letter-spacing: -0.3px;
    font-weight: 300;
    color: #666;
    white-space: nowrap;
  }

  .purchase .box2_in {
    margin-left: 30px;
    text-align: right;
    width: 100%;
    padding-top: 10px;
    letter-spacing: -1px;
    white-space: nowrap;
    position: absolute;
    right: 10px;
    bottom: 10px;
  }

  .purchase .bold {
    font-weight: bold;
    /*font-family: "Noto Sans TC", sans-serif;*/
  }

  .purchase .box2 {
    background: white;
    flex: 1;
    padding: 15px 15px 15px 10px;
  }

  .purchase .shadow_G {
    box-shadow: 0px 0px 5px #d1d1d1;
  }

  .purchase .shadow_O {
    box-shadow: 0px 0px 5px #fbc678;
  }

  .purchase .box2:last-child {
    margin-right: 0;
  }

  .purchase label.active_1 {
    border: #ff8800 solid 3px;
  }

  .purchase .dollars {
    font-size: 19px;
    font-weight: bold;
    /*font-family: 'Arial', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';*/
    color: #222;
    padding: 0;
    line-height: normal;
    letter-spacing: -1px;
  }

  .purchase .dollars1 {
    font-size: 28px;
    font-weight: bold;
    /*font-family: 'Arial', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';*/
    color: #222;
    padding: 0 4px 0 8px;
  }

  .purchase .phone_only {
    display: none;
  }

  .purchase .mL-5 {
    margin-left: 5px;
  }

  .purchase .h35 {
    height: 24px;
  }

  .purchase .nowrap {
    white-space: nowrap;
  }

  .purchase .items {
    display: flex;
    align-items: center;
    padding: 8px 0;
    margin-top: 3px;
  }

  .purchase .items img {
    margin-right: 5px;
    width: 20px;
  }

  .purchase .items a {
    color: #0072ef;
    font-weight: 300;
  }

  .purchase .orangediv {
    padding: 12px 18px;
    position: relative;
    color: #fff;
    font-size: 20px;
    margin-left: 30px;
    flex: 1;
    background: url(../img/off.png) no-repeat center right 2px #ff9900;
    background-size: 52px auto !important;
  }

  .purchase .orangediv::before,
  .purchase .orangediv1::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 10px;
    left: -12px;
    border-style: solid;
    border-width: 12px 12px 12px 0;
    border-color: transparent #ff9900 transparent transparent;
  }

  .purchase .orangediv1 {
    padding: 12px 18px;
    position: relative;
    color: #fff;
    font-size: 20px;
    margin-left: 30px;
    flex: 1;
    background: url(../img/75.png) no-repeat center right 2px #ff9900;
    background-size: 52px auto !important;
  }

  .purchase .Pinklinear {
    padding: 15px 12px;
    color: white;
    display: flex;
    align-items: center;
    width: calc(100% - 4px);
    position: relative;
    height: 70px;
    background: linear-gradient(to right, #ff1254 0%, #ff6600 100%);
  }

  .purchase .Pinklinear::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 0;
    bottom: -7px;
    border-style: solid;
    border-width: 0 5px 7px 0;
    border-color: transparent #b80000 transparent transparent;
  }

  .purchase .Pinklinear::after {
    position: absolute;
    content: "";
    width: 9px;
    height: 70px;
    top: 0;
    right: -8px;
    clip-path: polygon(100% 0%, 0 50%, 100% 100%, 0% 100%, 0% 0%);
    background: #ff6600;
  }

  .purchase .Pinklinear b {
    font-weight: 300;
    line-height: 20px;
    font-size: 15px;
    position: absolute;
    right: 15px;
  }

  .purchase .LF_div {
    width: 100%;
    padding: 0 10px;
    height: 80px;
    border-bottom: #e4e4e4 solid 1px;
    position: relative;
  }

  .purchase .LFh1 {
    color: #ff6600;
    font-weight: bold;
    font-size: 18px;
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .purchase .whitediv {
    background: white;
    width: calc(100% - 50px);
    margin: auto;
    background: white;
    padding: 0 10px 0px 10px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
  }

  .purchase .whitediv::after {
    content: "";
    width: 12px;
    height: 12px;
    background: white;
    position: absolute;
    top: 88px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .purchase .whitediv a {
    color: #0072ef;
    text-decoration: none;
    font-weight: 300 !important;
    position: relative;
  }

  .purchase .whitediv a:hover {
    text-decoration: underline;
  }

  .purchase .whitediv a::after {
    position: absolute;
    content: "";
    top: 0px;
    right: -26px;
    width: 14px;
    height: 20px;
    background: url(../img/arrow.svg) no-repeat;
    background-size: auto 85%;
  }

  .purchase .div4 {
    width: 50%;
    border-bottom: #e4e4e4 solid 1px;
    box-sizing: border-box;
    margin-bottom: -1px;
    margin-right: -1px;
    padding: 10px;
    border-right: #e4e4e4 solid 1px;
    position: relative;
  }

  .purchase .div4:nth-child(2n + 2) {
    border-right: none;
  }

  .purchase .div4:nth-child(3),
  .purchase .div4:nth-child(4) {
    border-bottom: #ccc solid 1px;
  }

  .purchase .div4 .h1 {
    font-size: 22px;
    color: #ff6600;
    font-weight: bold;
  }

  .purchase .pro_1 {
    position: absolute;
    width: 72px;
    height: 73px;
    background: url(../img/pro_1.png) no-repeat;
    background-size: auto 100%;
    top: 2px;
    right: 0px;
  }

  .purchase .pro_2 {
    position: absolute;
    width: 56px;
    height: 73px;
    background: url(../img/pro_2.png) no-repeat;
    background-size: auto 100%;
    top: 4px;
    right: 0px;
  }

  .purchase .text2 {
    color: #eb0000;
    font-weight: bold;
    font-size: 13px;
    line-height: 16px;
    margin-top: -5px;
    margin-bottom: 5px;
  }

  .purchase .tit2 {
    font-size: 20px;
    color: #222;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .purchase .tit2 small {
    font-size: 16px;
  }

  .purchase .ps {
    font-size: 14px !important;
    line-height: normal !important;
    font-weight: 300 !important;
    text-indent: -13px !important;
    padding-left: 13px !important;
  }

  .purchase .ps1 {
    font-size: 11px;
    text-indent: -21px;
    padding-left: 21px;
    line-height: normal;
  }

  .purchase .ps3 {
    font-size: 14px;
    text-indent: -26px;
    padding-left: 26px;
    line-height: 21px;
  }

  .purchase .d_i {
    display: inline !important;
  }

  .purchase .d_n,
  .purchase .d_n2,
  .purchase .d_n3,
  .purchase .d_n4,
  .purchase .d_n5,
  .purchase .d_n6,
  .purchase .d_n7 {
    display: none;
  }

  .purchase .d_b,
  .purchase .d_b2,
  .purchase .d_b3,
  .purchase .d_b4,
  .purchase .d_b5,
  .purchase .d_b6,
  .purchase .d_n7 {
    display: block !important;
  }

  .purchase .mL-15 {
    margin-left: -15%;
  }

  .purchase .item4 {
    color: white;
    padding: 3px 10px;
    background: #ff6600;
    border-radius: 50px;
    display: inline-block;
    font-size: 13px;
    font-weight: 300;
    white-space: nowrap;
  }

  .purchase .div4 h3 {
    color: #ff6600 !important;
    font-size: 20px;
  }

  .purchase .t_align_center {
    text-align: center;
  }

  .purchase .proDetail {
    background: #5bc946;
    color: white;
    padding: 5px;
    margin-top: 10px;
    border-radius: 5px;
    display: inline-block;
  }

  .purchase .carousel-inner img {
    width: 100%;
    height: auto;
  }

  .purchase .carousel-inner .active {
    border: none;
  }

  .purchase .box2-1 {
    display: table;
    width: calc(100% - 24px);
  }

  .purchase .btn,
  .purchase .btn2,
  .purchase .btn3,
  .purchase .btn4 {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 25px auto;
    padding: 20px 0;
    text-align: center;
    text-indent: 15px;
    background: url(../img/chat.svg) no-repeat left 20px center, linear-gradient(to bottom, #ff6000 0%, #ff4100 100%);
    color: white;
    font-size: 24px;
    border-radius: 5px;
    box-shadow: 0px 2px 2px #00000031;
    height: auto !important;
    font-weight: bold;
    border: none;
  }

  .purchase #popbox,
  .purchase #popbox1,
  .purchase #popbox2,
  .purchase #popbox3,
  .purchase #popbox4,
  .purchase #popbox5,
  .purchase #popbox6,
  .purchase #popbox7,
  .purchase #popbox8,
  .purchase #popbox9,
  .purchase #popbox10,
  .purchase #popbox11 {
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    margin-top: 4px;
    display: none;
  }

  .purchase .popbox_in {
    position: relative;
    width: auto;
    overflow-y: auto;
    margin-top: 0px;
    padding-bottom: 83px;
    border: #666 solid 2px;
    background: #fff;
  }

  .purchase .plus {
    padding-left: 34%;
    margin: 4px 0;
    font-weight: bold;
    font-size: 22px !important;
  }

  .purchase #close,
  .purchase #close1,
  .purchase #close2,
  .purchase #close3,
  .purchase #close4,
  .purchase #close5,
  .purchase #close6,
  .purchase #close7,
  .purchase #close8,
  .purchase #close9,
  .purchase #close10,
  .purchase #close11 {
    position: absolute;
    width: 40px;
    height: 40px;
    background: url(../img/close1.svg) no-repeat #666;
    top: 6px;
    right: 6px;
    z-index: 9;
  }

  .purchase .close_bottom {
    width: 50% !important;
    top: inherit !important;
    height: 54px !important;
    bottom: -9px !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    background: linear-gradient(to bottom, #ff5100 0%, #ff2800 100%) !important;
    border-radius: 4px;
    box-shadow: 0 0 2px #ccc;
    padding: 17px 10px 0px 10px;
    color: #fff;
    font-size: 22px;
    display: inline-block;
    text-align: center;
    text-indent: 7px;
    font-weight: bold;
    z-index: 99;
    cursor: pointer;
    margin-top: 20px;
  }

  .purchase .close_bottom::before {
    content: "✕";
    position: absolute;
    color: #fff;
    font-size: 17px;
    left: 18px;
    top: 19px;
  }

  .purchase .close_bottom:hover,
  .purchase .close_bottom:active {
    background: linear-gradient(to bottom, #ff2800 0%, #ff5100 100%);
  }

  .purchase #move_top {
    z-index: 9;
  }

  .purchase .iframe {
    width: 100%;
    height: 100vh;
  }

  .purchase .recommend {
    margin-bottom: 20px;
  }

  .purchase .recommend a {
    text-decoration: none;
    width: 100%;
  }

  .purchase .recommend a:hover h3 {
    text-decoration: underline;
    color: #00bbff;
  }

  .purchase .recommend a:hover p,
  .purchase .recommend a:active p {
    text-decoration: underline;
    color: #222;
  }

  .purchase .recommend a:hover .recommend_img>img {
    opacity: 0.6;
  }

  .purchase .recommend_div {
    display: flex;
  }

  .purchase .recommend_txt h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0072ef;
    height: 35px;
    line-height: 22px;
    /*font-family: "Arial";*/
    white-space: nowrap;
  }

  .purchase .recommend_txt p {
    font-size: 14px;
    color: #222;
    white-space: nowrap;
  }

  .purchase .recommend_img {
    margin-right: 18px;
    position: relative;
    width: 40%;
  }

  .purchase .recommend_img img {
    width: 100%;
    height: auto;
  }

  .purchase .recommend_txt {
    padding-top: 25px;
    text-align: center;
    flex: 1;
  }

  .purchase .f13_top {
    font-size: 13px;
    vertical-align: super;
  }

  .purchase .pro_tit+a {
    border: none;
    margin-bottom: 20px;
  }

  .purchase .awwrdRT {
    position: absolute;
    width: 63px;
    top: -7px;
    right: -20px;
  }

  .purchase .awwrdRT img {
    width: 100%;
  }
}

@media only screen and (max-width: 574px) {
  .purchase .box2 {
    padding: 10px;
  }

  .purchase .ver_t {
    vertical-align: 0px;
  }

  .purchase .content_1 h1 {
    padding: 0 0 5px 8px;
  }

  .purchase .box2_in {
    margin-left: -4px;
  }

  .purchase .dollars1 {
    letter-spacing: -1px;
    padding-left: 4px;
  }

  .purchase .pink {
    margin: 0;
  }

  .purchase .phone_only {
    display: block;
  }

  .purchase .f_detail_1 {
    display: inline;
    white-space: nowrap;
  }

  .purchase .orangediv,
  .purchase .orangediv1 {
    flex: 1;
    margin-left: 0px;
    padding: 10px 12px 10px 3.5%;
    font-size: 20px;
    background-size: auto 80%;
    letter-spacing: -0.5px;
    font-weight: bold;
  }

  .purchase .orangediv::before,
  .purchase .orangediv1::before {
    border-width: 9px 9px 9px 0;
    top: 50%;
    left: -4px;
    transform: translate(-50%, -50%) !important;
  }

  .purchase .orangediv span,
  .purchase .orangediv1 span {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.364);
    letter-spacing: 0.5px;
  }

  .purchase .whitediv {
    width: calc(100% - 10px);
    padding: 0;
  }

  .purchase .div4 {
    padding: 10px 6px;
  }

  .purchase .div4 .h1 {
    font-size: 18px;
  }

  .purchase .brown {
    font-size: 14px;
    padding-top: 2px;
  }
}

@media only screen and (max-width: 480px) {
  .purchase .pro_1 {
    width: 60px;
    height: 60px;
    top: 15px;
    right: -25px;
  }

  .purchase .pro_2 {
    width: 39px;
    height: 46px;
    top: 23px;
    right: -3px;
  }
}

@media only screen and (max-width: 321px) {
  .purchase .div4 .h1 {
    letter-spacing: -1.5px;
  }

  .purchase .orange {
    letter-spacing: -1.5px;
  }

  .purchase .orangediv,
  .purchase .orangediv1 {
    margin-left: 11px;
    padding: 12px 6px;
  }

  .purchase .orangediv span,
  .purchase .orangediv1 span {
    font-size: 20px;
    letter-spacing: -1px;
  }

  .purchase .content_1 h1 {
    letter-spacing: -1px;
  }

  .purchase .orangediv {
    background: url(../img/off.png) no-repeat center right 0px #ff9900;
  }

  .purchase .orangediv1 {
    background: url(../img/75.png) no-repeat center right 0px #ff9900;
  }

  .purchase .Pinklinear {
    padding: 15px 6px;
    width: calc(100% - 15px);
  }

  .purchase .Pinklinear b {
    right: 0px;
  }
}

@media (min-width: 768px) {
  .purchase input[type='radio']:after {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
    background-color: #e0e0e0;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 1px solid #e0e0e0;
  }

  .purchase input[type='radio']:checked:after {
    width: 13px;
    height: 13px;
    border-radius: 22px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
    content: '';
    display: inline-block;
    visibility: visible;
    border: #ffa500 solid 1px;
    box-shadow: 0 0 0 6px white, 0 0 0 7px #ffa500;
    background-color: #ffa500;
    box-sizing: border-box;
  }

  .purchase .bgGray label {
    background: white !important;
    flex: 1 !important;
    padding: 12px 20px 12px 10px !important;
    box-shadow: 0px 0px 5px #d1d1d1;
    margin-bottom: 10px;
    display: flex;
    cursor: pointer;
    position: relative;
  }

  .purchase .bgGray label:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }

  .purchase .bgGray label:nth-child(2n+2) {
    margin-right: 0 !important;
  }

  .purchase .bgOrange label {
    background: white !important;
    flex: 1 !important;
    padding: 12px 20px 12px 10px !important;
    box-shadow: 0px 0px 5px #f8a778;
    margin-bottom: 10px;
    display: flex;
    cursor: pointer;
    position: relative;
  }

  .purchase .bgOrange label:last-child {
    margin-right: 0 !important;
  }
}

@media (max-width: 767px) {
  .purchase input[type='radio']:after {
    width: 18px;
    height: 18px;
    border-radius: 20px;
    top: 7px;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
    background-color: #e0e0e0;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 1px solid #e0e0e0;
  }

  .purchase input[type='radio']:checked:after {
    width: 13px;
    height: 13px;
    border-radius: 22px;
    top: 7px;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
    content: '';
    display: inline-block;
    visibility: visible;
    border: #ffa500 solid 1px;
    box-shadow: 0 0 0 4px white, 0 0 0 5px #ffa500;
    background-color: #ffa500;
    box-sizing: border-box;
  }

  .purchase label {
    background: white !important;
    margin-right: 3% !important;
    flex: 1 !important;
    padding: 15px 5px 55px 5px !important;
    box-shadow: 0px 0px 5px #d1d1d1;
    position: relative;
    min-height: 118px;
  }

  .purchase label:last-child {
    margin-right: 0 !important;
  }
}

/* 05 使用方法 */
.instructions-top {
  padding-top: 45px;
  margin-bottom: 45px;
}

.instructions-top .section-header {
  margin-bottom: 50px;
  opacity: 0;
}

.instructions-top .section-header .line {
  width: 160px;
  left: calc(50% - 160px / 2);
}

.instructions-top .section-content {
  opacity: 0;
}

.instructions-top.animated .section-header {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
}

.instructions-top.animated .section-content {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: .5s;
}

.instructions-top .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  margin: 0 -21px;
}

.instructions-top .item {
  width: calc(100% / 2 - 21px * 2);
  margin: 0 21px;
  padding: 30px 15px;
  color: #4d4d4d;
}

.instructions-top .item__header {
  margin-bottom: 40px;
  position: relative;
}

.instructions-top .item__header h2,
.instructions-top .item__header h3 {
  position: relative;
  font-size: 36px;
  line-height: 48px;
  text-align: right;
  font-weight: 700;
  margin: 0 auto 30px;
  padding-left: 80px;
}

.instructions-top .item__header .sub_tit {
  font-size: 50%;
  position: absolute;
  right: 0;
  top: -15px;
  line-height: 1;
}

.instructions-top .item__header .line {
  position: absolute;
  bottom: -14px;
  width: calc(100% - 60px);
  right: 0;
  height: 2px;
  background: #fee870;
  background: linear-gradient(90deg, #fee870 0%, #fb9731 24%, #fccf5a 55%, #f15a24 100%);
}

.instructions-top .item__image {
  position: absolute;
  top: -40px;
  left: -30px;
  width: 160px;
}

.instructions-top .item-1 {
  background-color: #f5f5f5;
}

.instructions-top .item-2 {
  background-color: #f9f4e9;
}

.instructions-top .item-2 .item__image {
  top: -30px;
  left: -20px;
}

.instructions-top .video-container {
  margin-bottom: 70px;
}

.instructions-top .video-container .cover {
  border: 1.5px solid #ed7700;
}

.instructions-top .tags {
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  line-height: 30px;
  margin: -5px;
  font-size: 18px;
  font-weight: 700;
  padding-left: 80px;
}

.instructions-top .tag {
  border: 1px solid #ed7700;
  background-color: #fff;
  padding: 0 14px;
  margin: 5px;
}

.instructions-top .step {
  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;
}

.instructions-top .step+.step {
  margin-top: 65px;
}

.instructions-top .step__image {
  width: 155px;
}

.instructions-top .step__content {
  width: calc(100% - 155px);
  padding-left: 20px;
}

.instructions-top .step .main-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 10px;
}

.instructions-top .step .main-text .number {
  width: 21px;
  height: 21px;
  font-size: 19px;
  line-height: 21px;
  text-align: center;
  color: #fff;
  background-color: #4d4d4d;
  margin-right: 10px;
}

.instructions-top .step .sub-text {
  font-size: 18px;
  line-height: 36px;
  max-width: 235px;
  text-align: justify;
}

.instructions-advice {
  background-color: #f6f1e8;
  margin-bottom: 175px;
  padding: 30px 50px 45px;
  font-weight: 700;
  color: #4d4d4d;
}

.instructions-advice .section-header {
  margin-bottom: 45px;
  opacity: 0;
  color: #4d4d4d;
}

.instructions-advice .section-header .top-text {
  position: relative;
  font-size: 24px;
  display: block;
  margin: 0 auto 10px;
  max-width: 257px;
  text-align: center;
}

.instructions-advice .section-header .top-text:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #4d4d4d;
}

.instructions-advice .section-header .top-text span {
  position: relative;
  background-color: #f6f1e8;
  padding: 0 6px;
}

.instructions-advice .section-header .title {
  font-size: 28px;
}

.instructions-advice .section-content {
  opacity: 0;
}

.instructions-advice.animated .section-header {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
}

.instructions-advice.animated .section-content {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: .5s;
}

.instructions-advice .grid {
  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;
}

.instructions-advice .block-left {
  width: 50.69%;
  padding: 20px 30px;
  background-color: #fff;
  font-size: 20px;
  line-height: 25px;
  min-height: 236px;
}

.instructions-advice .block-right {
  width: calc(100% - 50.69%);
  padding-left: 35px;
  font-size: 16px;
  line-height: 20px;
}

.instructions-advice .item {
  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;
  position: relative;
}

.instructions-advice .item__image {
  position: relative;
}

.instructions-advice .item-1 {
  margin-bottom: 35px;
}

.instructions-advice .item-1 img {
  position: absolute;
  top: -32px;
  left: 0;
  max-width: 112px;
}

.instructions-advice .item-1 span {
  color: #ed7700;
}

.instructions-advice .item-1 .item__image {
  width: 218px;
}

.instructions-advice .item-1 .item__content {
  width: calc(100% - 218px);
}

.instructions-advice .item-2 img {
  position: absolute;
  top: -100px;
  left: 0;
}

.instructions-advice .item-2 .item__image {
  width: 105px;
}

.instructions-advice .item-2 .item__content {
  width: calc(100% - 105px);
}

.instructions-advice .item-3 {
  margin-bottom: 40px;
}

.instructions-advice .item-3 .item__image {
  width: 142px;
}

.instructions-advice .item-3 .item__content {
  width: calc(100% - 142px);
  padding-right: 14px;
}

.instructions-advice .item-3 .main-text {
  width: 72px;
  line-height: 27px;
  color: #fff;
  background-color: #6f4020;
  text-align: center;
  display: block;
  margin-bottom: 12px;
}

.instructions-advice .item-4 {
  border-top: 1px solid #ed7700;
  border-bottom: 1px solid #ed7700;
  padding: 20px 0 15px 10px;
}

.instructions-advice .item-4 .main-text {
  position: absolute;
  top: -10px;
  left: 10px;
  padding: 0 5px;
  background-color: #f6f1e8;
  color: #ed7700;
  line-height: 20px;
}

.instructions-bottom .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: 0 -68px;
}

.instructions-bottom .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}

.instructions-bottom .item {
  width: calc(100% / 2 - 68px * 2);
  margin: 0 68px;
  position: relative;
  max-width: 340px;
}

.instructions-bottom .item__image {
  width: 135px;
  height: 90px;
  position: relative;
}

.instructions-bottom .item__image img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.instructions-bottom .item__content {
  width: calc(100% - 135px);
}

.instructions-bottom .main-text {
  font-size: 21px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  /*    margin-right: 5px;*/
  height: 60px;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 767px) {
  .instructions-top {
    padding-top: 25px;
    margin-bottom: 40px;
  }

  .instructions-top .section-header {
    margin-bottom: 40px;
  }

  .instructions-top .section-header .line {
    width: 200px;
    left: calc(50% - 200px / 2);
  }

  .instructions-top .list {
    display: block;
    margin: 0 auto;
    max-width: 375px;
  }

  .instructions-top .item {
    width: 100%;
    margin: 0 auto;
  }

  .instructions-top .item__header {
    margin-bottom: 35px;
    padding-left: 70px;
  }

  .instructions-top .item__header h2,
  .instructions-top .item__header h3 {
    font-size: 24px;
    line-height: 36px;
    margin: 0 auto 25px;
    text-align: center;
    padding: 0;
  }

  .instructions-top .item__header .sub_tit {
    width: 100%;
  }

  .instructions-top .item__header .line {
    width: 100%;
    bottom: -10px;
  }

  .instructions-top .item__image {
    top: -40px;
    left: -30px;
    width: 145px;
  }

  .instructions-top .item-2 {
    margin-top: 15px;
  }

  .instructions-top .item-2 .item__header {
    padding-left: 50px;
  }

  .instructions-top .item-2 .item__image {
    top: -30px;
    left: -20px;
  }

  .instructions-top .video-container {
    margin-bottom: 60px;
  }

  .instructions-top .tags {
    font-size: 15px;
    line-height: 25px;
    padding-left: 0;
  }

  .instructions-top .tag {
    padding: 0 10px;
  }

  .instructions-top .step+.step {
    margin-top: 50px;
  }

  .instructions-top .step__image {
    width: 132px;
  }

  .instructions-top .step__content {
    width: calc(100% - 132px);
    padding-left: 12px;
  }

  .instructions-top .step .main-text {
    font-size: 21px;
    line-height: 24px;
  }

  .instructions-top .step .main-text .number {
    width: 20px;
    height: 20px;
    font-size: 16px;
    line-height: 20px;
  }

  .instructions-top .step .sub-text {
    font-size: 15px;
    line-height: 30px;
    max-width: 200px;
  }

  .instructions-advice {
    max-width: 375px;
    margin: 0 auto;
    margin-bottom: 70px;
    padding: 28px 19px 40px;
  }

  .instructions-advice .section-header {
    margin-bottom: 35px;
  }

  .instructions-advice .section-header .top-text {
    font-size: 18px;
    margin: 0 auto 10px;
    max-width: 200px;
  }

  .instructions-advice .section-header .top-text span {
    padding: 0 6px;
  }

  .instructions-advice .section-header .title {
    font-size: 21px;
  }

  .instructions-advice .grid {
    display: block;
  }

  .instructions-advice .block-left {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    line-height: 20px;
    min-height: 182px;
    margin-bottom: 23px;
  }

  .instructions-advice .block-right {
    width: 100%;
    padding-left: 0;
  }

  .instructions-advice .item-1 {
    max-width: 210px;
    margin-bottom: 25px;
  }

  .instructions-advice .item-1 img {
    top: -32px;
    left: 0;
  }

  .instructions-advice .item-1 .item__image {
    width: 87px;
  }

  .instructions-advice .item-1 .item__content {
    width: calc(100% - 87px);
  }

  .instructions-advice .item-2 img {
    position: absolute;
    top: -100px;
    left: 0;
  }

  .instructions-advice .item-2 .item__image {
    width: 82px;
  }

  .instructions-advice .item-2 .item__content {
    width: calc(100% - 82px);
  }

  .instructions-advice .item-3 {
    margin-bottom: 40px;
  }

  .instructions-advice .item-3 .item__image {
    width: 142px;
  }

  .instructions-advice .item-3 .item__content {
    width: calc(100% - 142px);
    padding-right: 14px;
  }

  .instructions-advice .item-3 .main-text {
    width: 72px;
    line-height: 27px;
    color: #fff;
    background-color: #6f4020;
    text-align: center;
    display: block;
    margin-bottom: 12px;
  }

  .instructions-advice .item-4 {
    border-top: 1px solid #ed7700;
    border-bottom: 1px solid #ed7700;
    padding: 20px 0 15px 10px;
  }

  .instructions-advice .item-4 .main-text {
    position: absolute;
    top: -10px;
    left: 10px;
    padding: 0 5px;
    background-color: #f6f1e8;
    color: #ed7700;
    line-height: 20px;
  }

  .instructions-bottom {
    padding-bottom: 75px;
  }

  .instructions-bottom .list {
    direction: block;
    margin: 0 auto;
    max-width: 255px;
  }

  .instructions-bottom .item {
    width: 100%;
    margin: 0;
  }

  .instructions-bottom .item__image {
    width: 102px;
    height: 80px;
  }

  .instructions-bottom .item__image img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
  }

  .instructions-bottom .item__content {
    width: calc(100% - 102px);
  }

  .instructions-bottom .main-text {
    font-size: 16px;
    /*    line-height: 30px;*/
    margin-bottom: 20px;
  }

  .instructions-bottom .item-2 {
    margin-top: 130px;
  }
}

@media (max-width: 480px) {
  .instructions-top .list {
    max-width: 100%;
  }

  .instructions-top .steps {
    max-width: 345px;
    margin: 0 auto;
  }

  .instructions-advice {
    max-width: 100%;
  }

  .instructions-advice .grid {
    max-width: 345px;
    margin: 0 auto;
  }
}

/* 06 使用心得 */
.reviews {
  position: relative;
}

.reviews-top {
  padding-top: 90px;
  padding-bottom: 210px;
  max-width: 800px;
  margin: 0 auto;
}

.reviews-top .section-header {
  margin-bottom: 55px;
  opacity: 0;
}

.reviews-top .section-header .line {
  width: 230px;
  left: calc(50% - 230px / 2);
}

.reviews-top .section-content {
  opacity: 0;
}

.reviews-top.animated .section-header {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
}

.reviews-top.animated .section-content {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: .5s;
}

.reviews-top .image {
  margin-bottom: 30px;
}

.reviews-top .image .text-small {
  text-align: right;
  font-size: 10px;
  line-height: 20px;
}

.reviews-top .video-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.reviews-top .text-block {
  margin-top: 20px;
  color: #4d4d4d;
  font-size: 18px;
  line-height: 30px;
}

.reviews-top .text-block h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  background-color: #fafafa;
}

.reviews-top .text-block h4 span {
  display: inline-block;
}

.reviews-top .text-block p {
  margin-left: auto;
  margin-right: auto;
  max-width: 706px;
  width: calc(100% - 22px * 2);
  margin-bottom: 70px;
  text-align: justify;
}

.reviews-top .bottom {
  border-top: 2px solid #f2f2f2;
  padding-top: 45px;
}

.reviews-top .bottom h4 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}

.reviews-feedback {
  padding-top: 90px;
  padding-bottom: 210px;
  max-width: 800px;
  margin: 0 auto;
}

.reviews-feedback .section-header {
  margin-bottom: 75px;
  opacity: 0;
}

.reviews-feedback .section-header .line {
  width: 270px;
  left: calc(50% - 270px / 2);
}

.reviews-feedback .section-content {
  opacity: 0;
}

.reviews-feedback.animated .section-header {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
}

.reviews-feedback.animated .section-content {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: .5s;
}

.reviews-feedback .l-collapse {
  position: relative;
  border-bottom: 2px solid #f2f2f2;
  color: #4d4d4d;
}

.reviews-feedback .l-collapse.is-toggle .l-collapse__content {
  display: block;
}

.reviews-feedback .l-collapse.is-toggle .action span {
  visibility: hidden;
}

.reviews-feedback .l-collapse.is-toggle .icon-arrow {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.reviews-feedback .l-collapse__header {
  position: relative;
  padding: 15px 0;
  cursor: pointer;
}

.reviews-feedback .l-collapse__header:hover,
.reviews-feedback .l-collapse__header:active {
  filter: brightness(1.02);
}

.reviews-feedback .l-collapse__content {
  display: none;
  padding: 20px 0;
  padding-right: 110px;
  text-align: justify;
  font-size: 18px;
  line-height: 32px;
}

.reviews-feedback .l-collapse__content p+p {
  margin-top: 30px;
}

.reviews-feedback .l-collapse .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.reviews-feedback .l-collapse .image {
  width: 220px;
  height: 220px;
}

.reviews-feedback .l-collapse .block {
  width: calc(100% - 220px);
  padding-left: 24px;
  padding-bottom: 30px;
}

.reviews-feedback .l-collapse .top-text {
  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-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  margin-bottom: 30px;
}

.reviews-feedback .l-collapse .text {
  font-size: 24px;
  line-height: 36px;
}

.reviews-feedback .l-collapse .year {
  background-color: #ed7700;
  color: #fff;
  width: 46px;
  height: 32px;
  text-align: center;
  font-size: 14px;
  line-height: 32px;
  font-weight: 700;
  margin-right: 10px;
}

.reviews-feedback .l-collapse .year span {
  font-size: 21px;
}

.reviews-feedback .l-collapse .main-text {
  font-size: 21px;
  font-weight: 700;
  line-height: 32px;
  margin-right: 10px;
}

.reviews-feedback .l-collapse .sub-text {
  font-size: 14px;
  line-height: 28px;
}

.reviews-feedback .l-collapse .action {
  position: absolute;
  bottom: 15px;
  right: 0;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  color: #1a1a1a;
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

.reviews-feedback .l-collapse .action span {
  margin-right: 15px;
}

.reviews-feedback .l-collapse .icon-arrow {
  background-image: url(../img/reviews-feedback-arrow.svg);
  background-size: contain;
  width: 24px;
  height: 24px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.reviews-bottom .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: 0 -68px;
}

.reviews-bottom .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}

.reviews-bottom .item {
  width: calc(100% / 2 - 68px * 2);
  margin: 0 68px;
  position: relative;
  max-width: 340px;
}

.reviews-bottom .item__image {
  width: 135px;
  height: 90px;
  position: relative;
}

.reviews-bottom .item__image img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.reviews-bottom .item__content {
  width: calc(100% - 135px);
}

.reviews-bottom .main-text {
  font-size: 21px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  height: 60px;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 767px) {
  .reviews-top {
    padding-top: 40px;
    padding-bottom: 145px;
  }

  .reviews-top .section-header {
    margin-bottom: 40px;
  }

  .reviews-top .section-header .line {
    width: 140px;
    left: calc(50% - 140px / 2);
  }

  .reviews-top .image {
    margin-bottom: 15px;
  }

  .reviews-top .image .text-small {
    padding: 0 22px;
  }

  .reviews-top .video-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
  }

  .reviews-top .text-block {
    font-size: 17px;
    line-height: 29px;
  }

  .reviews-top .text-block h4 {
    font-size: 17px;
    padding: 0 5px;
  }

  .reviews-top .text-block p {
    margin-bottom: 20px;
  }

  .reviews-top .reviews-1 .text-block h4 {
    letter-spacing: -.025em;
  }

  .reviews-top .reviews-1 .text-block h4:first-child {
    letter-spacing: 0;
  }

  .reviews-top .reviews-2 .text-block h4:nth-child(2) {
    letter-spacing: -.025em;
  }

  .reviews-top .bottom {
    padding-top: 25px;
  }

  .reviews-top .bottom h4 {
    font-size: 18px;
  }

  .reviews-feedback {
    padding-top: 40px;
    padding-bottom: 145px;
  }

  .reviews-feedback .section-header {
    margin-bottom: 15px;
  }

  .reviews-feedback .section-header .line {
    width: 310px;
    left: calc(50% - 310px / 2);
  }

  .reviews-feedback .l-collapse__header {
    padding: 15px;
  }

  .reviews-feedback .l-collapse__content {
    padding: 10px 22px 15px;
    font-size: 17px;
    line-height: 29px;
  }

  .reviews-feedback .l-collapse__content p+p {
    margin-top: 29px;
  }

  .reviews-feedback .l-collapse .image {
    width: 132px;
    height: 132px;
  }

  .reviews-feedback .l-collapse .block {
    width: calc(100% - 132px);
    padding-left: 8px;
    padding-bottom: 20px;
  }

  .reviews-feedback .l-collapse .top-text {
    margin-bottom: 5px;
  }

  .reviews-feedback .l-collapse .text {
    font-size: 16px;
    line-height: 24px;
  }

  .reviews-feedback .l-collapse .text br {
    display: none;
  }

  .reviews-feedback .l-collapse .year {
    width: 34px;
    height: 24px;
    font-size: 12px;
    line-height: 24px;
    margin-right: 8px;
  }

  .reviews-feedback .l-collapse .year span {
    font-size: 16px;
  }

  .reviews-feedback .l-collapse .main-text {
    font-size: 16px;
    line-height: 24px;
    margin-right: 8px;
  }

  .reviews-feedback .l-collapse .sub-text {
    font-size: 12px;
    line-height: 22px;
  }

  .reviews-feedback .l-collapse .action {
    bottom: 15px;
    right: 15px;
    font-size: 12px;
    line-height: 20px;
  }

  .reviews-feedback .l-collapse .action span {
    margin-right: 10px;
  }

  .reviews-feedback .l-collapse .icon-arrow {
    width: 20px;
    height: 20px;
  }

  .reviews-bottom {
    padding-bottom: 75px;
  }

  .reviews-bottom .list {
    direction: block;
    margin: 0 auto;
    max-width: 255px;
  }

  .reviews-bottom .item {
    width: 100%;
    margin: 0;
  }

  .reviews-bottom .item__image {
    width: 102px;
    height: 80px;
  }

  .reviews-bottom .item__image img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
  }

  .reviews-bottom .item__content {
    width: calc(100% - 102px);
  }

  .reviews-bottom .main-text {
    font-size: 16px;
    /*    line-height: 30px;*/
    margin-bottom: 20px;
  }

  .reviews-bottom .item-2 {
    margin-top: 90px;
  }
}

/* 07 形象廣告 */
.advertising {
  position: relative;
  background-image: url(../img/advertising-bg.jpg);
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
}

.advertising-top {
  padding-top: 70px;
  padding-bottom: 235px;
}

.advertising-top .section-header {
  margin-bottom: 50px;
  opacity: 0;
}

.advertising-top .section-header .line {
  width: 160px;
  left: calc(50% - 160px / 2);
}

.advertising-top .section-content {
  opacity: 0;
  padding: 0 20px;
}

.advertising-top.animated .section-header {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
}

.advertising-top.animated .section-content {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: .5s;
}

.advertising-top .video-container {
  margin-left: auto;
  margin-right: auto;
}

.advertising-top .video-container+.video-container {
  margin-top: 65px;
}

.advertising-top .video img {
  box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.2);
}

.advertising-top .text-block {
  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-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  margin-top: 20px;
  padding: 5px 0;
  line-height: 30px;
  justify-content: center;
  font-weight: 700;
}

.advertising-top .main-text {
  font-size: 21px;
  font-weight: 700;
}

.advertising-top .text-lg {
  font-size: 24px;
  margin-left: 18px;
  margin-right: 18px;
}

.advertising-top .sub-text {
  font-size: 18px;
}

.advertising-bottom .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: 0 -68px;
}

.advertising-bottom .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}

.advertising-bottom .item {
  width: calc(100% / 2 - 68px * 2);
  margin: 0 68px;
  position: relative;
  max-width: 340px;
}

.advertising-bottom .item__image {
  width: 135px;
  height: 90px;
  position: relative;
}

.advertising-bottom .item__image img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.advertising-bottom .item__content {
  width: calc(100% - 135px);
}

.advertising-bottom .main-text {
  font-size: 21px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  height: 60px;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 767px) {
  .advertising {
    background-image: url(../img/advertising-bg_s.jpg);
  }

  .advertising-top {
    padding-top: 25px;
    padding-bottom: 140px;
  }

  .advertising-top .section-header {
    margin-bottom: 45px;
  }

  .advertising-top .section-header .line {
    width: 120px;
    left: calc(50% - 120px / 2);
  }

  .advertising-top .section-content {
    padding: 0 12px;
  }

  .advertising-top .video-container+.video-container {
    margin-top: 40px;
  }

  .advertising-top .video img {
    box-shadow: none;
  }

  .advertising-top .text-block {
    margin-top: 10px;
    line-height: 30px;
  }

  .advertising-top .main-text {
    font-size: 18px;
  }

  .advertising-top .text-lg {
    font-size: 21px;
    margin-left: 8px;
    margin-right: 0;
  }

  .advertising-top .sub-text {
    font-size: 14px;
    width: 100%;
  }

  .advertising-bottom {
    padding-bottom: 75px;
  }

  .advertising-bottom .list {
    direction: block;
    margin: 0 auto;
    max-width: 255px;
  }

  .advertising-bottom .item {
    width: 100%;
    margin: 0;
  }

  .advertising-bottom .item__image {
    width: 102px;
    height: 80px;
  }

  .advertising-bottom .item__image img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
  }

  .advertising-bottom .item__content {
    width: calc(100% - 102px);
  }

  .advertising-bottom .main-text {
    font-size: 16px;
    /*    line-height: 30px;*/
    margin-bottom: 20px;
  }

  .advertising-bottom .item-2 {
    margin-top: 90px;
  }
}

/* 08 品質保證 */
.quality .section {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.quality-top {
  padding-top: 95px;
  margin-bottom: 50px;
}

.quality-top .section-header {
  margin-bottom: 60px;
  opacity: 0;
}

.quality-top .section-header .line {
  width: 270px;
  left: calc(50% - 270px / 2);
}

.quality-top .section-content {
  opacity: 0;
}

.quality-top.animated .section-header {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
}

.quality-top.animated .section-content {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: .5s;
}

.quality-top .image {
  position: relative;
  background-color: #e6e6e6;
}

.quality-top .text-small {
  font-size: 24px;
  line-height: 40px;
}

.quality-top .text {
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 25px;
  width: 41.25%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  white-space: nowrap;
}

.quality-1 {
  background: white;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.6) 0%, rgba(250, 250, 250, 0.6) 100%);
  padding: 45px 0 0;
  margin-bottom: 10px;
  overflow: hidden;
}

.quality-1 .section-header {
  margin-bottom: 45px;
  opacity: 0;
}

.quality-1 .section-header .line {
  width: 420px;
  left: calc(50% - 420px / 2);
}

.quality-1 .section-content {
  opacity: 0;
  padding: 0 190px 60px 65px;
}

.quality-1.animated .section-header {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
  animation-delay: .5s;
}

.quality-1.animated .section-content {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: 1s;
}

.quality-1 .image {
  position: relative;
  width: 84px;
  height: calc(36px * 3);
  float: left;
}

.quality-1 .image img {
  width: 155px;
  max-width: inherit;
  position: absolute;
  left: calc(50% - 155px / 2);
  top: -142px;
}

.quality-1 p {
  font-size: 18px;
  line-height: 36px;
  text-align: justify;
  letter-spacing: -.02em;
}

.quality-1 .researcher {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 260px;
  height: 190px;
  z-index: 0;
}

.quality-1 .researcher__image {
  width: 226px;
  position: absolute;
  top: 0;
  left: 50px;
  z-index: 1;
}

.quality-1 .researcher__content {
  position: relative;
  top: 60px;
  width: 129px;
  height: 129px;
  border-radius: 50%;
  background-color: #fcebb1;
  padding-top: 22px;
  padding-left: 24px;
}

.quality-1 .researcher .sub-text {
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 4px;
}

.quality-1 .researcher .main-text {
  font-size: 14px;
  line-height: 28px;
  font-weight: 700;
}

.quality-2 {
  background: white;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.6) 0%, rgba(250, 250, 250, 0.6) 100%);
  padding: 50px 0 0;
  margin-bottom: 10px;
  overflow: hidden;
}

.quality-2 .section-header {
  margin-bottom: 45px;
  opacity: 0;
}

.quality-2 .section-header .line {
  width: 420px;
  left: calc(50% - 420px / 2);
}

.quality-2 .section-content {
  opacity: 0;
  padding: 0 45px 55px 190px;
}

.quality-2.animated .section-header {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
  animation-delay: .5s;
}

.quality-2.animated .section-content {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: 1s;
}

.quality-2 .image {
  position: relative;
  width: 146px;
  height: calc(36px * 3);
  float: right;
}

.quality-2 .image img {
  width: 167px;
  max-width: inherit;
  position: absolute;
  left: calc(50% - 167px / 2);
  top: -80px;
}

.quality-2 p {
  font-size: 18px;
  line-height: 36px;
  text-align: justify;
}

.quality-2 p+p {
  padding-left: 110px;
  margin-top: 10px;
}

.quality-2 .researcher {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 279px;
  height: 227px;
  z-index: 0;
}

.quality-2 .researcher__image {
  width: 235px;
  position: absolute;
  top: 0;
  left: -17px;
  z-index: 1;
}

.quality-2 .researcher__content {
  position: relative;
  top: 85px;
  left: 150px;
  width: 129px;
  height: 129px;
  border-radius: 50%;
  background-color: #fcebb1;
  padding-top: 20px;
  padding-left: 27px;
}

.quality-2 .researcher .sub-text {
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 4px;
}

.quality-2 .researcher .main-text {
  font-size: 14px;
  line-height: 28px;
  font-weight: 700;
}

.quality-3 {
  background: white;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.6) 0%, rgba(250, 250, 250, 0.6) 100%);
  padding: 50px 0 40px;
  margin-bottom: 10px;
}

.quality-3 .section-header {
  margin-bottom: 20px;
  opacity: 0;
}

.quality-3 .section-header .title {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 0;
}

.quality-3 .section-content {
  opacity: 0;
}

.quality-3.animated .section-header {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
  animation-delay: .5s;
}

.quality-3.animated .section-content {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: 1s;
}

.quality-3 .image {
  position: relative;
  margin-bottom: 40px;
  background-color: #e6e6e6;
}

.quality-3 p {
  font-size: 18px;
  line-height: 36px;
  text-align: center;
}

.quality-3 p+p {
  margin-top: 10px;
}

.quality-bottom .vitoas-btn {
  width: 380px;
}

.quality-bottom .vitoas-btn .icon-arrow {
  right: 16px;
}

.quality-bottom .vitoas-btn:hover .icon-arrow,
.quality-bottom .vitoas-btn:active .icon-arrow {
  right: 10px;
}

@media (max-width: 1000px) and (min-width: 768px) {
  .quality-top .text {
    font-size: 2.4vw;
    line-height: 1.6666;
  }
}

@media (max-width: 767px) {
  .quality-top {
    padding-top: 45px;
    margin-bottom: 0;
  }

  .quality-top .section-header {
    margin-bottom: 30px;
  }

  .quality-top .section-header .line {
    width: 290px;
    left: calc(50% - 290px / 2);
  }

  .quality-top .text-small {
    font-size: 18px;
    line-height: 30px;
  }

  .quality-top .text {
    font-size: 17px;
    line-height: 29px;
    text-align: left;
    left: 23px;
    width: 60%;
  }

  .quality-1 .section-header {
    margin-bottom: 45px;
  }

  .quality-1 .section-header .line {
    width: 290px;
    left: calc(50% - 290px / 2);
  }

  .quality-1 .section-content {
    padding: 0 27px 132px 28px;
    position: relative;
    max-width: 375px;
    margin: 0 auto;
  }

  .quality-1 .image {
    width: 70px;
    height: calc(29px * 5);
  }

  .quality-1 .image img {
    width: 116px;
    left: calc(50% - 116px / 2 - 5px);
    top: -62px;
  }

  .quality-1 p {
    font-size: 17px;
    line-height: 29px;
  }

  .quality-1 p br {
    display: none;
  }

  .quality-1 .researcher {
    width: 207px;
    height: 162px;
  }

  .quality-1 .researcher__image {
    width: 185px;
    left: 55px;
  }

  .quality-1 .researcher__content {
    top: 67px;
    width: 97px;
    height: 97px;
    padding-top: 15px;
    padding-left: 15px;
  }

  .quality-1 .researcher .sub-text {
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 0;
    -moz-transform: scale(0.875);
    -ms-transform: scale(0.875);
    -webkit-transform: scale(0.875);
    transform: scale(0.875);
    transform-origin: top left;
    white-space: nowrap;
  }

  .quality-1 .researcher .main-text {
    font-size: 12px;
    line-height: 18px;
  }

  .quality-2 {
    padding: 43px 0 0;
  }

  .quality-2 .section-header {
    margin-bottom: 50px;
  }

  .quality-2 .section-header .line {
    width: 290px;
    left: calc(50% - 290px / 2);
  }

  .quality-2 .section-content {
    padding: 0 27px 120px 28px;
    position: relative;
    max-width: 375px;
    margin: 0 auto;
  }

  .quality-2 .image {
    width: 103px;
    height: calc(29px * 3);
  }

  .quality-2 .image img {
    width: 135px;
    left: calc(50% - 135px / 2 + 5px);
    top: -70px;
  }

  .quality-2 p {
    font-size: 17px;
    line-height: 29px;
    letter-spacing: -.04em;
  }

  .quality-2 p+p {
    padding-left: 6em;
    margin-top: 0;
    text-indent: -6em;
  }

  .quality-2 .researcher {
    width: 220px;
    height: 170px;
  }

  .quality-2 .researcher__image {
    width: 176px;
    left: -13px;
  }

  .quality-2 .researcher__content {
    top: 59px;
    left: 123px;
    width: 97px;
    height: 97px;
    padding-top: 15px;
    padding-left: 15px;
  }

  .quality-2 .researcher .sub-text {
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 0;
    -moz-transform: scale(0.875);
    -ms-transform: scale(0.875);
    -webkit-transform: scale(0.875);
    transform: scale(0.875);
    transform-origin: top left;
    white-space: nowrap;
  }

  .quality-2 .researcher .main-text {
    font-size: 12px;
    line-height: 18px;
  }

  .quality-3 {
    padding: 30px 0 20px;
  }

  .quality-3 .section-header {
    margin-bottom: 15px;
  }

  .quality-3 .section-header .title {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0;
  }

  .quality-3 .image {
    margin-bottom: 30px;
  }

  .quality-3 p {
    font-size: 17px;
    line-height: 29px;
    max-width: 315px;
    margin: 0 auto;
  }

  .quality-3 p+p {
    margin-top: 29px;
  }

  .quality-bottom {
    margin-bottom: 50px;
  }

  .quality-bottom .vitoas-btn {
    width: 285px;
    font-size: 18px;
  }
}

@media (max-width: 374px) {
  .quality-top .text {
    font-size: 4.5vw;
    line-height: 1.7;
  }
}