@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;700&display=swap");
@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(400px);
  }
  60% {
    -webkit-transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(400px);
  }
  60% {
    -webkit-transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@-webkit-keyframes blur {
  from {
    -webkit-filter: blur(8px);
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
  }
  to {
    -webkit-filter: blur(0);
    -webkit-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0);
  }
}

@keyframes blur {
  from {
    -webkit-filter: blur(8px);
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
  }
  to {
    -webkit-filter: blur(0);
    -webkit-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0);
  }
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

body {
  font-family: "DM Sans", "Microsoft JhengHei", sans-serif;
  color: #666;
  line-height: normal;
  font-size: 16px;
  position: relative;
  letter-spacing: 0.02em;
}

.red {
  color: #e8443b;
}

body.no-scroll {
  position: fixed;
  overflow: hidden;
}

a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

a:hover {
  color: #e8443b;
  text-decoration: none;
}

.hide {
  display: none;
}

.clean {
  clear: both;
  line-height: 0;
  height: 0;
}

.edit {
  padding: 20px 15px;
}

.edit img, .edit iframe {
  max-width: 100%;
  height: auto;
}

.edit table {
  width: 100%;
  max-width: 100%;
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 20px;
  height: 20px;
  opacity: 0.3;
  display: none;
}

.close:hover {
  opacity: 1;
}

.close:before, .close:after {
  position: absolute;
  left: 10px;
  content: ' ';
  height: 20px;
  width: 2px;
  background-color: #333;
}

.close:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.close:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media only screen and (max-width: 1025px) {
  .close {
    display: block;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  img[src*=".svg"] {
    width: 100%;
  }
}

/*共用*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.all-width {
  width: 1400px;
  margin: auto;
}

@media only screen and (max-width: 1399px) {
  .all-width {
    width: 100%;
    padding: 0 30px;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*共用*/
.align {
  text-align: center;
}

.button {
  display: inline-block;
  text-align: center;
  color: #fff;
  margin: auto;
  margin-top: 64px;
  font-size: 18px;
  position: relative;
}

.button:before, .button:after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: #fff;
}

.button span {
  display: block;
  padding: 25px 126px;
}

.button span:before, .button span:after {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: #fff;
}

.button:hover {
  color: #fff;
  background: #e8443b;
}

.button:hover:before, .button:hover:after {
  width: 0;
}

.button:hover span:before, .button:hover span:after {
  height: 0;
}

.style2 {
  color: #e8443b;
}

.style2:before, .style2:after {
  background: #e8443b;
}

.style2 span:before, .style2 span:after {
  background: #e8443b;
}

.btn-1:before {
  right: 0;
  top: 0;
}

.btn-1:after {
  left: 0;
  bottom: 0;
}

.btn-1:before, .btn-1:after {
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.btn-1 span:before {
  left: 0;
  top: 0;
}

.btn-1 span:after {
  right: 0;
  bottom: 0;
}

.btn-1 span:before, .btn-1 span:after {
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

.btn-1:hover:before, .btn-1:hover:after {
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

.btn-1:hover span:before, .btn-1:hover span:after {
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.button3 {
  width: 142px;
  height: 50px;
  position: relative;
  display: block;
  border-bottom: solid 1px #e8443b;
  color: #000;
  line-height: 50px;
  font-weight: bold;
  margin: 30px 0 0 0;
}

.button3:after {
  content: '';
  display: block;
  width: 8px;
  border: solid 1px #e8443b;
  border-width: 1px 0 0 0;
  position: absolute;
  right: 0;
  bottom: 2px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*.ellip-line
	display: inline-block
	text-overflow: ellipsis
	white-space: nowrap
	word-wrap: normal
	max-width: 100% */
/*.ellip, .ellip-line
	position: relative
	overflow: hidden */
/*分頁*/
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 0;
}

.pagination a:link,
.pagination a:visited {
  scolor: #1c5583;
}

.pagination a:hover,
.pagination a:active {
  color: rgba(28, 85, 131, 0.8);
}

.pagination > a {
  width: 35px;
  height: 35px;
  display: inline-block;
  border-radius: 5px;
  text-align: center;
  margin: 3px;
  background: #d8d8d8;
  color: #fff;
  font-size: 15px;
  line-height: 35px;
  font-weight: bold;
  overflow: hidden;
  /*&:first-child
				margin-left: 0*/
}

.pagination > a.active {
  background: #e8443b;
  color: #fff;
}

.pagination > a.active:hover {
  color: #fff;
}

.pagination > a.disabled {
  color: #fff;
}

.pagination > a:hover:not([class*="disabled"]) {
  background: #e8443b;
  color: #fff;
}

#container {
  width: 100%;
}

.mobile_language {
  color: #fff;
  padding: 5px 10px;
  font-size: 15px;
  position: fixed;
  right: 80px;
  top: 58px;
  display: none;
  background: #e8443b;
  border-radius: 5px;
}

@media only screen and (max-width: 1025px) {
  .mobile_language {
    display: block;
  }
}

@media only screen and (max-width: 480px) {
  .mobile_language {
    top: 38px;
  }
}

.mobile_btn {
  display: none;
}

@media only screen and (max-width: 1025px) {
  .mobile_btn {
    display: block;
    position: fixed;
    right: 30px;
    top: 60px;
  }
}

@media only screen and (max-width: 480px) {
  .mobile_btn {
    top: 40px;
  }
}

.mobile_btn .bar {
  width: 30px;
  height: 2px;
  background: #fff;
  margin: 7px 0;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.mobile_btn:before, .mobile_btn:after {
  content: '';
  display: block;
  width: 30px;
  background: #fff;
  height: 2px;
  margin: 7px 0;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.mobile_btn.current {
  z-index: 1026;
  top: 18px;
}

.mobile_btn.current .bar {
  width: 0;
}

.mobile_btn.current:before {
  -webkit-transform: translateY(9px) rotateZ(45deg);
  -ms-transform: translateY(9px) rotateZ(45deg);
  transform: translateY(9px) rotateZ(45deg);
}

.mobile_btn.current:after {
  -webkit-transform: translateY(-9px) rotateZ(-45deg);
  -ms-transform: translateY(-9px) rotateZ(-45deg);
  transform: translateY(-9px) rotateZ(-45deg);
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  height: 125px;
  background: #4f4f4f;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(14%, #4f4f4f), color-stop(30%, #505050), to(black));
  background: -webkit-linear-gradient(top, #4f4f4f 14%, #505050 30%, black 100%);
  background: -o-linear-gradient(top, #4f4f4f 14%, #505050 30%, black 100%);
  background: linear-gradient(180deg, #4f4f4f 14%, #505050 30%, black 100%);
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 999;
  height: 125px;
}

@media only screen and (max-width: 1025px) {
  header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media only screen and (max-width: 480px) {
  header {
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    padding: 15px;
    height: 100px;
  }
}

header .logo {
  min-width: 325px;
  max-width: 325px;
  height: 125px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 1365px) {
  header .logo {
    min-width: 250px;
    max-width: 250px;
  }
}

@media only screen and (max-width: 768px) {
  header .logo {
    min-width: 200px;
    max-width: 200px;
    height: auto;
  }
}

@media only screen and (max-width: 480px) {
  header .logo {
    min-width: 160px;
    max-width: 160px;
    height: auto;
  }
}

header .logo img {
  width: 100%;
  height: auto;
  display: block;
}

@media only screen and (max-width: 480px) {
  header h1 {
    font-size: 12px;
  }
}

header .head-right {
  width: 100%;
}

@media only screen and (max-width: 480px) {
  header .head-right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

header .head-right .txt {
  width: 100%;
  display: block;
  text-align: right;
  color: #868686;
  overflow: hidden;
  height: 28px;
  line-height: 28px;
}

header .head-right .head-vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 88px;
}

@media only screen and (max-width: 480px) {
  header .head-right .head-vertical {
    height: 68px;
  }
}

header .head-right .head-vertical nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 20px;
}

header .head-right .head-vertical nav .nav_item {
  height: 88px;
  margin: 0 23px;
  padding: 27px 0 0 0;
}

header .head-right .head-vertical nav .nav_item .nav_item-link {
  font-size: 18px;
  font-weight: bold;
  color: #868686;
}

header .head-right .head-vertical nav .nav_item .nav_item-link:hover {
  color: #fff;
}

header .head-right .head-vertical nav .nav_item:after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: #e8443b;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

header .head-right .head-vertical nav .nav_item:hover:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

header .head-right .head-vertical nav .active.current .nav_item-link {
  color: #fff;
}

@media only screen and (max-width: 1365px) {
  header .head-right .head-vertical nav .nav_item {
    margin: 0 10px;
  }
}

@media only screen and (max-width: 1025px) {
  header .head-right .head-vertical nav {
    position: fixed;
    width: 100vw;
    max-height: 0;
    display: block;
    overflow: auto;
    background: #505050;
    z-index: 1025;
    top: 0;
    left: 0;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
  header .head-right .head-vertical nav .nav_item {
    width: 100%;
    padding: 15px 25px;
    margin: 0;
    height: auto;
    border-bottom: solid 1px #868686;
  }
  header .head-right .head-vertical nav .nav_item .nav_item-link {
    font-size: 20px;
  }
  header .head-right .head-vertical nav .nav_item:after {
    display: none;
  }
  header .head-right .head-vertical nav .nav_inner {
    position: relative;
    top: 0;
    padding: 25px 0;
    width: 100%;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    visibility: visible;
    height: auto;
  }
  header .head-right .head-vertical nav .nav_inner .all-width {
    padding: 0;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header .head-right .head-vertical nav .nav_inner .nav_inner-item {
    min-width: calc( 50% - 10px);
    max-width: calc( 50% - 10px);
    background: #868686;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  header .head-right .head-vertical nav .nav_inner .nav_inner-item .nav_inner-tit {
    font-size: 15px;
  }
  header .head-right .head-vertical nav .nav_inner .nav_inner-item .nav_inner-list {
    display: none;
  }
  header .head-right .head-vertical nav.current {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    visibility: visible;
    max-height: 100%;
    height: 100%;
  }
}

header .head-right .language {
  width: 114px;
  height: 40px;
  border-radius: 5px;
  background: #e8443b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
}

header .head-right .language a {
  color: #fff;
}

header .head-right .language .line {
  width: 1px;
  height: 16px;
  background: #fff;
}

@media only screen and (max-width: 1025px) {
  header .head-right .language {
    display: none;
  }
}

.nav_inner {
  width: 100vw;
  position: absolute;
  top: 115px;
  padding: 50px 0;
  left: 0;
  background: #505050;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  visibility: hidden;
  overflow: auto;
  height: calc( 100vh - 125px);
  max-height: 665px;
}

.nav_inner .all-width {
  overflow: hidden;
  -webkit-transform: translateX(-4px);
  -ms-transform: translateX(-4px);
  transform: translateX(-4px);
}

.nav_inner .nav_inner-item {
  min-width: 20%;
  max-width: 20%;
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  margin-right: -4px;
  margin-bottom: 50px;
  padding: 0 20px 0 0;
}

.nav_inner .nav_inner-item a {
  color: #fff;
}

.nav_inner .nav_inner-item .nav_inner-tit {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 24px;
  font-weight: bold;
}

.nav_inner .nav_inner-item .nav_inner-list {
  font-size: 13px;
  line-height: 1.6;
}

.nav_inner .nav_inner-item .nav_inner-list li {
  margin: 10px 0;
}

.nav_inner .nav_inner-item .nav_inner-list a {
  color: #c4c4c4;
}

.nav_inner .nav_inner-item .nav_inner-list a:hover {
  color: #fff;
}

.nav_inner.current {
  top: 125px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  visibility: visible;
}

.banner {
  margin: 125px 0 0 0;
  position: relative;
}

@media only screen and (max-width: 480px) {
  .banner {
    margin: 100px 0 0 0;
  }
}

.banner .slick-slide {
  position: relative;
}

.banner a {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.idx-content {
  padding: 70px 0;
}

.idx-content .title {
  color: #000;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  line-height: 36px;
}

.idx-content .title:after {
  content: '~';
  display: block;
  text-align: center;
  width: 100%;
  font-size: 30px;
  font-weight: bold;
  color: #e8443b;
  line-height: 1;
}

@media only screen and (max-width: 1025px) {
  .idx-content {
    padding: 35px 0;
  }
  .idx-content .title {
    font-size: 24px;
  }
}

.idx-content.about_bg {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 607px;
}

@media only screen and (max-width: 1025px) {
  .idx-content.about_bg {
    position: relative;
  }
}

.idx-content.product_bg {
  background: #f4f3ee;
}

.idx-content.video_bg {
  background: url("../images/video-bg.jpg") no-repeat center center #f4f3ee;
  background-size: cover;
  padding: 60px 0;
}

.idx-content.video_bg .title, .idx-content.video_bg .title:after {
  color: #fff;
}

.idx-content.news_bg {
  background: url("../images/news-bg.jpg") no-repeat center top #f8f8f8;
  background-size: 100% auto;
}

.product_list {
  margin: 40px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 1025px) {
  .product_list {
    margin: 20px 0 0 0;
  }
}

.product_list li {
  width: calc( 100%/3 - 37px);
  margin: 0 55.5px 55.5px 0;
  padding: 50px;
  background: #fff;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.28);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.28);
  position: relative;
}

.product_list li a {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(232, 68, 59, 0.9);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 50px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  visibility: hidden;
}

.product_list li a:before {
  content: '';
  display: block;
  width: 77px;
  height: 77px;
  border-radius: 90%;
  margin: auto;
  background: url("../images/link.svg") no-repeat center center #fff;
  background-size: 40px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: 0.2s ease-out;
  -webkit-transition-delay: 0.2s;
  -o-transition: 0.2s ease-out 0.2s;
  -webkit-transition: 0.2s ease-out 0.2s;
  transition: 0.2s ease-out 0.2s;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
}

.product_list li a .name {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 34px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: 0.2s ease-out;
  -webkit-transition-delay: 0.5s;
  -o-transition: 0.2s ease-out 0.5s;
  -webkit-transition: 0.2s ease-out 0.5s;
  transition: 0.2s ease-out 0.5s;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
}

.product_list li:hover a {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  visibility: visible;
}

.product_list li:hover a:before, .product_list li:hover a .name {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.product_list li .product_img {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}

.product_list li .product_img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.product_list li .product_name {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  line-height: 24px;
  color: #000;
  margin-bottom: 10px;
}

.product_list li .product_info {
  color: #666;
  font-size: 13px;
  line-height: 24px;
  position: relative;
}

.product_list li:nth-child(3n) {
  margin: 0 0 55.5px 0;
}

@media only screen and (max-width: 1025px) {
  .product_list li {
    margin: 0 30px 30px 0;
    width: calc( 100%/3 - 20px);
    padding: 30px;
  }
  .product_list li a {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    visibility: visible;
    background: none;
    text-indent: -9999px;
  }
  .product_list li a:before {
    display: none;
  }
  .product_list li:nth-child(3n) {
    margin: 0 0 30px 0;
  }
  .product_list li .product_info {
    line-height: 18px;
  }
}

@media only screen and (max-width: 768px) {
  .product_list li {
    width: calc( 100%/2 - 15px);
  }
  .product_list li:nth-child(3n) {
    margin: 0 30px 30px 0;
  }
  .product_list li:nth-child(2n) {
    margin: 0 0 30px 0;
  }
}

@media only screen and (max-width: 480px) {
  .product_list li {
    width: 100%;
    margin: 0 0 30px 0;
  }
  .product_list li:nth-child(3n) {
    margin: 0 0 30px 0;
  }
  .product_list li:nth-child(2n) {
    margin: 0 0 30px 0;
  }
}

.video-slider {
  width: 1414px;
  margin: 40px auto 0 auto;
}

.video-slider .video_slide {
  padding: 0 7px;
}

.video-slider .video_slide .video_slide-item {
  width: 100%;
  background: #fff;
  height: 358px;
  padding: 14px;
}

.video-slider .video_slide .video_slide-item .video_img {
  width: 100%;
  max-height: 235px;
  margin-bottom: 28px;
  text-align: center;
}

.video-slider .video_slide .video_slide-item .video_img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.video-slider .video_slide .video_slide-item .video_name {
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  min-height: 48px;
}

.video-slider .video_slide .video_slide-item .video_name a {
  color: #000;
}

.video-slider .video_slide .video_slide-item .video_name a:hover {
  color: #e8443b;
}

@media only screen and (max-width: 1413px) {
  .video-slider {
    width: 100%;
    padding: 0 30px;
  }
  .video-slider .video_slide .video_slide-item {
    height: auto;
  }
}

.news_list {
  width: 1000px;
  margin: auto;
}

@media only screen and (max-width: 999px) {
  .news_list {
    width: 100%;
    padding: 0 30px;
  }
}

.news_list li {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: solid 1px #cecece;
}

.news_list li .date {
  min-width: 111px;
  height: 111px;
  background: #e8443b;
  border-radius: 90%;
  color: #ffffff;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  font-size: 18px;
  margin-right: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news_list li .date span {
  display: block;
  width: 100%;
}

.news_list li .info {
  width: 100%;
}

.news_list li .info .name {
  color: #000000;
  font-weight: bold;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
  line-height: 24px;
}

.news_list li .info .name:hover {
  color: #e8443b;
}

.news_list li .info .text {
  color: #666666;
  font-size: 15px;
  overflow: hidden;
  display: -webkit-box;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media only screen and (max-width: 480px) {
  .news_list li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .news_list li .date {
    margin: 20px auto;
  }
}

.index_about-img {
  width: 50%;
  overflow: hidden;
  background: url("../images/about-bg.jpg") no-repeat center top #d4d4d4;
}

@media only screen and (max-width: 1025px) {
  .index_about-img {
    width: 100%;
    position: relative;
    z-index: 1;
  }
}

.index_about-text {
  width: 50%;
  height: auto;
  background: #d4d4d4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 125px;
}

.index_about-text .index_about-title {
  font-size: 30px;
  font-weight: bold;
  color: #000;
  display: block;
  margin-bottom: 30px;
}

.index_about-text .index_about-text2 {
  line-height: 30px;
}

@media only screen and (max-width: 1365px) {
  .index_about-text {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 1025px) {
  .index_about-text {
    position: absolute;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0 30px;
  }
  .index_about-text .index_about-title {
    color: #fff;
  }
  .index_about-text .index_about-text2 {
    color: #fff;
    line-height: 24px;
  }
  .index_about-text .button3 span {
    color: #fff;
  }
}

footer {
  background: #4c4c4c;
  padding: 55px 0;
}

footer .ft_text {
  color: #fff;
  margin-bottom: 35px;
}

footer .ft_middle {
  border: solid #989898;
  border-width: 1px 0;
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 1025px) {
  footer .ft_middle {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

footer .ft_middle-logo {
  min-width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 1365px) {
  footer .ft_middle-logo {
    display: none;
  }
}

footer .ft_middle-list {
  width: 100%;
  border: solid #989898;
  border-width: 0 1px;
  min-height: 142px;
  padding: 0 50px;
}

@media only screen and (max-width: 1025px) {
  footer .ft_middle-list {
    display: none;
  }
}

footer .ft_middle-list .sub-title {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

footer .ft_middle-list .item {
  font-size: 13px;
}

footer .ft_middle-list .item li {
  display: inline-block;
  margin: 0 20px 5px 0;
}

footer .ft_middle-menu {
  min-width: 377px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

footer .ft_middle-menu a {
  display: block;
  width: 50%;
  padding-left: 50px;
  font-size: 18px;
  font-weight: bold;
  color: #949494;
  margin: 5px 0;
}

footer .ft_middle-menu a:nth-child(1) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

footer .ft_middle-menu a:nth-child(2) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

footer .ft_middle-menu a:nth-child(3) {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

footer .ft_middle-menu a:nth-child(4) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

footer .ft_middle-menu a:nth-child(5) {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

footer .ft_middle-menu a:nth-child(6) {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

footer .ft_middle-menu a:hover {
  color: #fff;
}

@media only screen and (max-width: 480px) {
  footer .ft_middle-menu {
    min-width: auto;
  }
  footer .ft_middle-menu a {
    padding-left: 0;
    text-align: center;
  }
}

footer .ft_btm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 1365px) {
  footer .ft_btm {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

footer .ft_btm .ft_btm-code {
  min-width: 100px;
  width: 100px;
  padding: 5px;
  background: #fff;
  margin-right: 30px;
}

footer .ft_btm .ft_btm-code img {
  width: 100%;
  height: auto;
  display: block;
}

@media only screen and (max-width: 580px) {
  footer .ft_btm .ft_btm-code {
    margin-top: 30px;
  }
}

footer .ft_btm .ft_btm-info {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 25px 0 0 0;
}

footer .ft_btm .ft_btm-info li {
  padding: 0 0 0 30px;
  margin: 5px 34px 5px 0;
}

footer .ft_btm .ft_btm-info li:first-child {
  width: 100%;
  background: url("../images/ft_icon1.svg") no-repeat;
  background-size: 20px auto;
}

footer .ft_btm .ft_btm-info li:nth-child(2), footer .ft_btm .ft_btm-info li:nth-child(3) {
  background: url("../images/ft_icon2.svg") no-repeat 5px center;
  background-size: 14px auto;
}

footer .ft_btm .ft_btm-info li:nth-child(4) {
  background: url("../images/ft_icon3.svg") no-repeat 0 center;
  background-size: 22px auto;
}

footer .ft_btm .ft_btm-info li:nth-child(5) {
  background: url("../images/ft_icon4.svg") no-repeat 0 center;
  background-size: 22px auto;
}

footer .ft_btm .copyright {
  color: #858585;
  min-width: 520px;
  margin: 5px 0;
}

footer .ft_btm .copyright span {
  padding-right: 23px;
}

footer .ft_btm .copyright a {
  color: #858585;
}

@media only screen and (max-width: 580px) {
  footer .ft_btm .copyright {
    min-width: 100%;
  }
  footer .ft_btm .copyright span {
    padding: 0;
    display: block;
    width: 100%;
  }
}

.top {
  width: 84px;
  height: 84px;
  background: #666666;
  display: block;
  line-height: 84px;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  position: fixed;
  right: 0;
  top: calc( 50% + 168px);
  z-index: 100;
}

@media only screen and (max-width: 1025px) {
  .top {
    width: 50px;
    height: 50px;
    font-size: 15px;
    line-height: 50px;
    top: calc( 50% + 100px);
  }
}

.side-search {
  background: #fff;
  width: 350px;
  position: fixed;
  right: 0;
  top: calc( 50% + 84px);
  -webkit-transform: translateX(266px);
  -ms-transform: translateX(266px);
  transform: translateX(266px);
  z-index: 100;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

.side-search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.side-search .text {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  width: 208px;
  border: solid #c4c4c4;
  border-width: 0 0 1px 0;
  margin-left: 30px;
  height: 47px;
}

.side-search .text::-webkit-input-placeholder {
  color: #666;
  opacity: 1;
  letter-spacing: 0.05em;
}

.side-search .text::-moz-placeholder {
  color: #666;
  opacity: 1;
  letter-spacing: 0.05em;
}

.side-search .text:-ms-input-placeholder {
  color: #666;
  opacity: 1;
  letter-spacing: 0.05em;
}

.side-search .text::-ms-input-placeholder {
  color: #666;
  opacity: 1;
  letter-spacing: 0.05em;
}

.side-search .text::placeholder {
  color: #666;
  opacity: 1;
  letter-spacing: 0.05em;
}

.side-search .text::-webkit-input-placeholder {
  color: #666;
  letter-spacing: 0.05em;
}

.side-search .text:-moz-placeholder {
  color: #666;
  letter-spacing: 0.05em;
}

.side-search .text::-moz-placeholder {
  color: #666;
  letter-spacing: 0.05em;
}

.side-search .text:-ms-input-placeholder {
  color: #666;
  letter-spacing: 0.05em;
}

.side-search .btn {
  min-width: 84px;
  max-width: 84px;
  height: 84px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url("../images/search.svg") no-repeat center center #e8443b;
  background-size: 32px;
}

@media only screen and (max-width: 1025px) {
  .side-search {
    top: calc( 50% + 50px);
    width: 265px;
    -webkit-transform: translateX(215px);
    -ms-transform: translateX(215px);
    transform: translateX(215px);
  }
  .side-search .text {
    height: 30px;
    width: 150px;
  }
  .side-search .btn {
    min-width: 50px;
    max-width: 50px;
    height: 50px;
    background: url("../images/search.svg") no-repeat center center #e8443b;
    background-size: 20px;
  }
}

.side-search.current {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.GDPR {
  width: 100%;
  min-height: 100px;
  padding: 25px;
  font-size: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99;
}

.GDPR .privacy {
  color: #e8443b;
}

.GDPR .agree {
  margin-left: 25px;
  min-width: 100px;
  display: block;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 15px;
  font-weight: bold;
  color: #e8443b;
  border: solid 1px #e8443b;
  border-radius: 5px;
}

.GDPR .agree:hover {
  background: #e8443b;
  color: #fff;
}

@media only screen and (max-width: 1025px) {
  .GDPR {
    font-size: 13px;
    line-height: 18px;
  }
  .GDPR .agree {
    background: #e8443b;
    color: #fff;
  }
}

/*內頁*/
#main {
  background: #f4f3ee;
  margin-top: 125px;
}

@media only screen and (max-width: 480px) {
  #main {
    margin-top: 100px;
  }
}

#main #breadcrumb {
  background: #383838;
  padding: 25px;
}

@media only screen and (max-width: 1399px) {
  #main #breadcrumb {
    padding: 25px 0;
  }
}

#main #breadcrumb li {
  padding-right: 32px;
  position: relative;
  display: inline-block;
  font-size: 13px;
}

#main #breadcrumb li:after {
  position: absolute;
  display: block;
  content: '';
  width: 1px;
  height: 16px;
  background: #fff;
  -webkit-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  transform: rotate(10deg);
  position: absolute;
  right: 12px;
  top: 0;
}

#main #breadcrumb li a {
  color: #fff;
}

#main #breadcrumb li:last-child {
  font-weight: bold;
}

#main #breadcrumb li:last-child:after {
  display: none;
}

#main .main_content {
  padding: 35px 0;
}

#main .main_content .all-width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#main .main_content .sidebar {
  min-width: 270px;
  width: 270px;
  margin-right: 50px;
}

@media only screen and (max-width: 1366px) {
  #main .main_content .sidebar {
    min-width: 220px;
    width: 220px;
  }
}

@media only screen and (max-width: 1025px) {
  #main .main_content .sidebar {
    display: none;
  }
}

#main .main_content .sidebar .sidebar_title {
  color: #000;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

#main .main_content .sidebar .accordion li {
  margin: 0 0 3px 0;
}

#main .main_content .sidebar .accordion li .accordion_btn {
  display: block;
  padding: 20px 25px;
  background: #e2e2e2;
  border: none;
  width: 100%;
  font-weight: bold;
  color: #000;
  cursor: pointer;
}

#main .main_content .sidebar .accordion li .accordion_btn.active {
  background: #e8443b;
  color: #fff;
}

@media only screen and (max-width: 1366px) {
  #main .main_content .sidebar .accordion li .accordion_btn {
    padding: 10px 12px;
  }
}

#main .main_content .sidebar .accordion li .accordion_panel {
  padding: 20px 0;
}

#main .main_content .sidebar .accordion li .accordion_panel li a {
  color: #000;
  display: block;
  padding: 8px 0 8px 22px;
  line-height: 18px;
  font-weight: 500;
  position: relative;
}

#main .main_content .sidebar .accordion li .accordion_panel li a:hover, #main .main_content .sidebar .accordion li .accordion_panel li a.active {
  color: #e8443b;
}

#main .main_content .sidebar .accordion li .accordion_panel li a:hover:before, #main .main_content .sidebar .accordion li .accordion_panel li a.active:before {
  content: '';
  display: block;
  width: 12px;
  height: 3px;
  background: #e8443b;
  position: absolute;
  left: 0;
  top: 15px;
}

#main .main_content .content {
  width: 100%;
}

#main .main_content .product-info .big-title {
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

#main .main_content .product-info .info {
  line-height: 30px;
  margin: 20px 0;
}

#main .main_content .product-list-edit01 img, #main .main_content .product-list-edit02 img {
  max-width: 100%;
  height: auto;
}

#main .main_content .product-list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#main .main_content .product-list2 li {
  background: #fff;
  padding: 25px;
  -webkit-box-shadow: 0 0 20px #bfbfbf;
  box-shadow: 0 0 20px #bfbfbf;
  width: calc( 100% / 3 - 34px);
  margin: 0 51px 51px 0;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

#main .main_content .product-list2 li .product_img {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

#main .main_content .product-list2 li .product_img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

#main .main_content .product-list2 li .product_model {
  color: #a99d5e;
  font-size: 13px;
  font-weight: bold;
}

#main .main_content .product-list2 li .product_name {
  display: block;
  font-weight: bold;
  color: #000;
  font-size: 18px;
  margin: 0 0 10px 0;
  line-height: 24px;
}

#main .main_content .product-list2 li .product_info {
  font-size: 13px;
  color: #666;
  line-height: 18px;
}

#main .main_content .product-list2 li:nth-child(3n) {
  margin: 0 0 51px 0;
}

#main .main_content .product-list2 li:hover {
  -webkit-box-shadow: 0 0 30px #bfbfbf;
  box-shadow: 0 0 30px #bfbfbf;
}

#main .main_content .product-list2 li:hover .product_img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

#main .main_content .product-list2 li:hover .product_name {
  color: #e8443b;
}

@media only screen and (max-width: 768px) {
  #main .main_content .product-list2 li {
    width: calc( 100% / 2 - 25.5px);
  }
  #main .main_content .product-list2 li:nth-child(3n) {
    margin: 0 51px 51px 0;
  }
  #main .main_content .product-list2 li:nth-child(2n) {
    margin: 0 0 51px 0;
  }
}

@media only screen and (max-width: 480px) {
  #main .main_content .product-list2 li {
    width: 100%;
    margin: 0 0 51px 0;
  }
  #main .main_content .product-list2 li:nth-child(3n) {
    margin: 0 0 51px 0;
  }
  #main .main_content .product-list2 li:nth-child(2n) {
    margin: 0 0 51px 0;
  }
}

#main .main_content .detail {
  width: 100%;
}

#main .main_content .detail .detail_info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#main .main_content .detail .detail_info .detail_info-left {
  width: 700px;
}

@media only screen and (max-width: 1399px) {
  #main .main_content .detail .detail_info .detail_info-left {
    width: 50%;
  }
}

@media only screen and (max-width: 1025px) {
  #main .main_content .detail .detail_info .detail_info-left {
    width: 100%;
  }
}

#main .main_content .detail .detail_info .detail_info-left .img-slider {
  -webkit-box-shadow: 0 0 30px #bfbfbf;
  box-shadow: 0 0 30px #bfbfbf;
}

#main .main_content .detail .detail_info .detail_info-left .img-nav {
  margin-top: 30px;
}

#main .main_content .detail .detail_info .detail_info-left .img-nav .slick-slide img {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  border: solid 1px #f4f3ee;
}

#main .main_content .detail .detail_info .detail_info-left .img-nav .slick-slide.slick-current img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  border: solid 1px #e8e8e8;
}

#main .main_content .detail .detail_info .detail_info-right {
  min-width: 606px;
  width: 606px;
  margin-left: 20px;
}

@media only screen and (max-width: 1399px) {
  #main .main_content .detail .detail_info .detail_info-right {
    width: 43%;
    min-width: 43%;
  }
}

@media only screen and (max-width: 1025px) {
  #main .main_content .detail .detail_info .detail_info-right {
    width: 100%;
    min-width: 100%;
    margin-left: 0;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

#main .main_content .detail .detail_info .detail_info-right .model {
  font-size: 18px;
  color: #666666;
  font-size: 500;
  margin: 5px 0;
}

#main .main_content .detail .detail_info .detail_info-right .name {
  font-size: 30px;
  font-weight: bold;
  color: #000;
  margin-bottom: 16px;
  line-height: 32px;
}

@media only screen and (max-width: 480px) {
  #main .main_content .detail .detail_info .detail_info-right .name {
    font-size: 24px;
  }
}

#main .main_content .detail .detail_info .detail_info-right .text {
  line-height: 24px;
  min-height: 150px;
}

#main .main_content .detail .detail_info .detail_info-right .application {
  border-radius: 10px;
  background: #fff;
  width: 100%;
  padding: 20px 25px;
  font-size: 15px;
}

#main .main_content .detail .detail_info .detail_info-right .application .sub {
  font-size: 18px;
  font-weight: bold;
  color: #a49d76;
  margin-bottom: 10px;
}

#main .main_content .detail .detail_info .detail_info-right .btn {
  widows: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 20px 0 0 0;
}

#main .main_content .detail .detail_info .detail_info-right .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 77px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

#main .main_content .detail .detail_info .detail_info-right .btn a:before {
  display: block;
  content: '';
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

#main .main_content .detail .detail_info .detail_info-right .btn a.back {
  background: #4e4e4e;
}

#main .main_content .detail .detail_info .detail_info-right .btn a.back:before {
  background: url("../images/back.svg") no-repeat;
  background-size: 30px;
}

#main .main_content .detail .detail_info .detail_info-right .btn a.inquery {
  background: #e8443b;
}

#main .main_content .detail .detail_info .detail_info-right .btn a.inquery:before {
  background: url("../images/inquery.svg") no-repeat;
  background-size: 30px;
}

#main .main_content .detail .detail_info .detail_info-right .btn a.youtube {
  background: #666;
  margin-left: 20px;
}

#main .main_content .detail .detail_info .detail_info-right .btn a.youtube:before {
  background: url("../images/youtube.svg") no-repeat;
  background-size: 30px;
}

#main .main_content .detail .detail_info .detail_info-right .btn a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

@media only screen and (max-width: 480px) {
  #main .main_content .detail .detail_info .detail_info-right .btn {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 100;
  }
  #main .main_content .detail .detail_info .detail_info-right .btn a {
    width: 50%;
    height: 60px;
  }
  #main .main_content .detail .detail_info .detail_info-right .btn a.youtube {
    margin: 0;
  }
}

#main .main_content .detail .accordion-content {
  width: 100%;
  border-top: solid 1px #fff;
  padding: 40px 0;
}

#main .main_content .detail .accordion-content .product-detail-edit01 img, #main .main_content .detail .accordion-content .product-detail-edit02 img, #main .main_content .detail .accordion-content .product-detail-edit03 img {
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 768px) {
  #main .main_content .detail .accordion-content .product-detail-edit01 table, #main .main_content .detail .accordion-content .product-detail-edit02 table, #main .main_content .detail .accordion-content .product-detail-edit03 table {
    max-width: 100%;
    overflow: auto;
    display: block;
    width: 100% !important;
    height: auto !important;
    white-space: nowrap;
  }
  #main .main_content .detail .accordion-content .product-detail-edit01 table td, #main .main_content .detail .accordion-content .product-detail-edit02 table td, #main .main_content .detail .accordion-content .product-detail-edit03 table td {
    width: 100%;
    padding: 0 20px;
  }
}

@media only screen and (max-width: 768px) {
  #main .main_content .detail .accordion-content {
    padding: 30px;
    border: 1px solid #c1c1c1;
  }
}

#main .main_content .detail .spec-table {
  font-weight: bold;
  font-size: 15px;
}

#main .main_content .detail .spec-table tr {
  padding: 1px 0 2px 0;
  display: block;
}

#main .main_content .detail .spec-table th {
  min-width: 280px;
  font-weight: bold;
  background: #e9e6d4;
  padding: 10px 5px 10px 17px;
}

#main .main_content .detail .spec-table td {
  padding: 10px 5px 10px 23px;
}

@media only screen and (max-width: 480px) {
  #main .main_content .detail .spec-table {
    width: 100%;
  }
  #main .main_content .detail .spec-table th, #main .main_content .detail .spec-table td {
    display: block;
    width: 100%;
  }
}

#main .main_content .detail .detail-row .detail-row-title {
  color: #000;
  padding: 15px 0;
  border-bottom: solid 1px #d4d2c8;
  font-size: 24px;
  font-weight: bold;
}

@media only screen and (max-width: 480px) {
  #main .main_content .detail .detail-row .detail-row-title {
    font-size: 22px;
  }
}

#main .main_content .detail .detail-row .news-area {
  width: 100%;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}

@media only screen and (max-width: 1399px) {
  #main .main_content .detail .detail-row .news-area {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  #main .main_content .detail .detail-row .news-area {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}

@media only screen and (max-width: 578px) {
  #main .main_content .detail .detail-row .news-area {
    grid-template-columns: 1fr;
  }
}

#main .main_content .detail .detail-row .news-area .slick-slide {
  margin: 40px 0;
  padding: 0 25px;
}

#main .main_content .detail .detail-row .news-area .row {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  -webkit-box-shadow: 0 0 30px #bfbfbf;
  box-shadow: 0 0 30px #bfbfbf;
}

#main .main_content .detail .detail-row .news-area .row .pic {
  width: 100%;
  height: auto;
  overflow: hidden;
}

#main .main_content .detail .detail-row .news-area .row .pic img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#main .main_content .detail .detail-row .news-area .row .date, #main .main_content .detail .detail-row .news-area .row .tit {
  font-weight: bold;
}

#main .main_content .detail .detail-row .news-area .row .date {
  color: #a99d5e;
  font-size: 13px;
  margin: 10px 0 0 0;
}

#main .main_content .detail .detail-row .news-area .row .tit {
  color: #000;
  display: block;
  font-size: 18px;
}

#main .main_content .detail .detail-row .news-area .row .txt {
  font-size: 13px;
  line-height: 24px;
  min-height: 72px;
  padding: 5px 0;
  word-break: break-all;
}

#main .main_content .detail .detail-row .news-area .row .btn {
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: solid 1px #a99d5e;
  color: #a99d5e;
  font-weight: bold;
}

#main .main_content .detail .detail-row .news-area .row .btn span {
  padding-left: 7px;
}

#main .main_content .detail .detail-row .news-area .row .btn svg {
  width: 18px;
  height: 18px;
}

#main .main_content .detail .detail-row .news-area .row .btn svg path {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  fill: #a99d5e;
}

#main .main_content .detail .detail-row .news-area .row:hover .pic img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

#main .main_content .detail .detail-row .news-area .row:hover .btn {
  background: #a99d5e;
  color: #fff;
}

#main .main_content .detail .detail-row .news-area .row:hover .btn svg path {
  fill: #fff;
}

#main .main_content .detail .detail-row .detail-slider {
  width: 1134px;
  margin: auto;
}

@media only screen and (max-width: 1399px) {
  #main .main_content .detail .detail-row .detail-slider {
    width: 100%;
  }
}

#main .main_content .detail .detail-row .detail-slider .slick-slide {
  padding: 0 25px;
  margin: 40px 0;
}

#main .main_content .detail .detail-row .detail-slider .related_wrap {
  background: #fff;
  padding: 25px;
  -webkit-box-shadow: 0 0 20px #bfbfbf;
  box-shadow: 0 0 20px #bfbfbf;
}

#main .main_content .detail .detail-row .detail-slider .related_wrap .product_img {
  position: relative;
  overflow: hidden;
}

#main .main_content .detail .detail-row .detail-slider .related_wrap .product_img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

#main .main_content .detail .detail-row .detail-slider .related_wrap .product_model {
  color: #a99d5e;
  font-size: 13px;
  font-weight: bold;
}

#main .main_content .detail .detail-row .detail-slider .related_wrap .product_name {
  display: block;
  font-weight: bold;
  color: #000;
  font-size: 18px;
  margin: 0 0 10px 0;
  line-height: 24px;
}

#main .main_content .detail .detail-row .detail-slider .related_wrap .product_info {
  font-size: 13px;
  color: #666;
  line-height: 18px;
}

#main .main_content .detail .detail-row .detail-row-content {
  border-top: solid 1px #fff;
}

#main .main_content .detail .detail-row .detail-row-content .row2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#main .main_content .detail .detail-row .detail-row-content .row2 .info {
  width: 100%;
}

#main .main_content .detail .detail-row .detail-row-content .row2 .info .title {
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

@media only screen and (max-width: 480px) {
  #main .main_content .detail .detail-row .detail-row-content .row2 .info .title {
    font-size: 18px;
  }
}

#main .main_content .detail .detail-row .detail-row-content .row2 .info .list li {
  line-height: 24px;
  margin: 15px 0;
  padding: 0 0 0 15px;
  position: relative;
  font-size: 15px;
}

#main .main_content .detail .detail-row .detail-row-content .row2 .info .list li:before {
  content: '．';
  color: #000;
  font-size: 15px;
  position: absolute;
  left: 0px;
  top: 1px;
}

#main .main_content .detail .detail-row .detail-row-content .row2 .trade-slider {
  width: 1134px;
  margin: 40px auto;
}

@media only screen and (max-width: 1399px) {
  #main .main_content .detail .detail-row .detail-row-content .row2 .trade-slider {
    width: 100%;
  }
}

#main .main_content .detail .detail-row .detail-row-content .row2 .trade-slider .slick-slide {
  padding: 0 18.5px;
}

#main .main_content .detail .detail-row .detail-row-content .row2 .trade-slider .slick-slide .trade-row {
  position: relative;
}

#main .main_content .detail .detail-row .detail-row-content .row2 .trade-slider .slick-slide .trade-row img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

#main .main_content .detail .detail-row .detail-row-content .row2 .trade-slider .slick-slide .trade-row:before {
  content: attr(data-pic);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  width: calc( 100% - 72px);
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  padding: 0 36px;
  background: rgba(232, 68, 59, 0.8);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

#main .main_content .detail .detail-row .detail-row-content .row2 .trade-slider .slick-slide .trade-row:hover:before {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 1025px) {
  #main .main_content .detail .detail-row .detail-row-content .row2 .trade-slider .slick-slide .trade-row:before {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    visibility: visible;
    height: auto;
    top: inherit;
    bottom: 0;
    padding: 10px 36px;
  }
}

#main .main_content .detail .detail-row .detail-row-content .row2 .pic {
  width: 100%;
}

#main .main_content .detail .detail-row .detail-row-content .row2 .pic img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
}

#main .main_content .detail .detail-row .detail-row-content .row2.det1 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px 0;
}

#main .main_content .detail .detail-row .detail-row-content .row2.det1 .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

#main .main_content .detail .detail-row .detail-row-content .row2.det2 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px 0;
}

#main .main_content .detail .detail-row .detail-row-content .row2.det2 .info {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-left: 100px;
}

@media only screen and (max-width: 1025px) {
  #main .main_content .detail .detail-row .detail-row-content .row2.det2 .info {
    margin-left: 50px;
  }
}

#main .main_content .detail .detail-row .detail-row-content .row2.det2 .pic {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

#main .main_content .detail .detail-row .detail-row-content .row2.det3 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 55px 0;
}

#main .main_content .detail .detail-row .detail-row-content .row2.det3 .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 78px;
}

@media only screen and (max-width: 1025px) {
  #main .main_content .detail .detail-row .detail-row-content .row2.det3 .info {
    margin-right: 36px;
  }
}

#main .main_content .detail .detail-row .detail-row-content .row2.det4 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 55px 0;
}

#main .main_content .detail .detail-row .detail-row-content .row2.det4 .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#main .main_content .detail .detail-row .detail-row-content .row2.det5 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px 0;
}

#main .main_content .detail .detail-row .detail-row-content .row2.det5 .info {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-left: 45px;
}

@media only screen and (max-width: 1025px) {
  #main .main_content .detail .detail-row .detail-row-content .row2.det5 .info {
    margin-left: 22px;
  }
}

#main .main_content .detail .detail-row .detail-row-content .row2.det5 .pic {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

#main .main_content .detail .detail-row .detail-row-content .row2.det6 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 55px 0;
}

#main .main_content .detail .detail-row .detail-row-content .row2.det6 .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 78px;
}

@media only screen and (max-width: 768px) {
  #main .main_content .detail .detail-row .detail-row-content .row2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #main .main_content .detail .detail-row .detail-row-content .row2 .pic, #main .main_content .detail .detail-row .detail-row-content .row2 .info {
    margin: 10px 0;
  }
  #main .main_content .detail .detail-row .detail-row-content .row2.det1 {
    margin: 0;
  }
  #main .main_content .detail .detail-row .detail-row-content .row2.det1 .info {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #main .main_content .detail .detail-row .detail-row-content .row2.det2 {
    margin: 0;
  }
  #main .main_content .detail .detail-row .detail-row-content .row2.det2 .info {
    margin-left: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #main .main_content .detail .detail-row .detail-row-content .row2.det2 .pic {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #main .main_content .detail .detail-row .detail-row-content .row2.det3 {
    margin: 0;
  }
  #main .main_content .detail .detail-row .detail-row-content .row2.det3 .info {
    margin-right: 0;
  }
  #main .main_content .detail .detail-row .detail-row-content .row2.det4 {
    margin: 0;
  }
  #main .main_content .detail .detail-row .detail-row-content .row2.det4 .info {
    margin-left: 0;
  }
  #main .main_content .detail .detail-row .detail-row-content .row2.det5 {
    margin: 0;
  }
  #main .main_content .detail .detail-row .detail-row-content .row2.det5 .info {
    margin-left: 0;
  }
  #main .main_content .detail .detail-row .detail-row-content .row2.det6 {
    margin: 0;
  }
  #main .main_content .detail .detail-row .detail-row-content .row2.det6 .info {
    margin-right: 0;
  }
}

.form-content {
  width: 1024px;
  margin: 0 auto;
}

@media only screen and (max-width: 1025px) {
  .form-content {
    width: 100%;
  }
}

.form-content .info .model {
  color: #666666;
  font-size: 18px;
}

.form-content .info .name {
  font-size: 30px;
  line-height: 36px;
  font-weight: bold;
  color: #000;
}

.form-content .info .tips {
  color: #666666;
  font-size: 15px;
  line-height: 30px;
  margin: 20px 0;
}

.form-content .form-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form-content .form-wrap .form-column {
  margin-bottom: 25px;
  width: 100%;
}

.form-content .form-wrap .form-column input[type="file"] {
  width: 100%;
}

.form-content .form-wrap .form-column .file {
  width: 100%;
}

.form-content .form-wrap .form-column .form-column-tit {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.form-content .form-wrap .form-column .form-column-text {
  border: solid 1px #c3c3c3;
  width: 100%;
  border-radius: 5px;
  background: #fff;
  padding: 0 20px;
  height: 63px;
  font-weight: bold;
}

.form-content .form-wrap .form-column .form-column-text2 {
  border: solid 1px #c3c3c3;
  width: 100%;
  border-radius: 5px;
  background: #fff;
  padding: 0 20px;
  height: 63px;
  font-weight: bold;
}

.form-content .form-wrap .form-column .form-column-area {
  border: solid 1px #c3c3c3;
  width: 100%;
  border-radius: 5px;
  background: #fff;
  padding: 20px;
  height: 140px;
  font-weight: bold;
}

.form-content .form-wrap .form-column .form-column-label {
  border: solid 1px #c3c3c3;
  width: 100%;
  border-radius: 5px;
  background: #fff;
  height: 63px;
  position: relative;
}

.form-content .form-wrap .form-column .form-column-label select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0;
  padding: 0 20px;
  background: none;
  width: 100%;
  height: 63px;
  font-weight: bold;
  color: #b7b7b7;
}

.form-content .form-wrap .form-column .form-column-label select::-webkit-input-placeholder {
  color: #b7b7b7;
  opacity: 1;
  letter-spacing: 0.05em;
}

.form-content .form-wrap .form-column .form-column-label select::-moz-placeholder {
  color: #b7b7b7;
  opacity: 1;
  letter-spacing: 0.05em;
}

.form-content .form-wrap .form-column .form-column-label select:-ms-input-placeholder {
  color: #b7b7b7;
  opacity: 1;
  letter-spacing: 0.05em;
}

.form-content .form-wrap .form-column .form-column-label select::-ms-input-placeholder {
  color: #b7b7b7;
  opacity: 1;
  letter-spacing: 0.05em;
}

.form-content .form-wrap .form-column .form-column-label select::placeholder {
  color: #b7b7b7;
  opacity: 1;
  letter-spacing: 0.05em;
}

.form-content .form-wrap .form-column .form-column-label select::-webkit-input-placeholder {
  color: #b7b7b7;
  letter-spacing: 0.05em;
}

.form-content .form-wrap .form-column .form-column-label select:-moz-placeholder {
  color: #b7b7b7;
  letter-spacing: 0.05em;
}

.form-content .form-wrap .form-column .form-column-label select::-moz-placeholder {
  color: #b7b7b7;
  letter-spacing: 0.05em;
}

.form-content .form-wrap .form-column .form-column-label select:-ms-input-placeholder {
  color: #b7b7b7;
  letter-spacing: 0.05em;
}

.form-content .form-wrap .form-column .form-column-label:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6.5px 0 6.5px;
  border-color: #9f9c8a transparent transparent transparent;
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form-content .form-wrap .form-column .form-column-label2 {
  border: solid 1px #c3c3c3;
  width: 100%;
  border-radius: 5px;
  background: #fff;
  padding: 13px 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.form-content .form-wrap .form-column .form-column-label2 .item {
  font-size: 15px;
  font-weight: bold;
  margin: 6px 30px 6px 0;
}

.form-content .form-wrap .form-column .form-column-label2 .item input {
  display: none;
}

.form-content .form-wrap .form-column .form-column-label2 .item input + label {
  cursor: pointer;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.form-content .form-wrap .form-column .form-column-label2 .item input + label span {
  height: 15px;
  width: 15px;
  background: #f2f2f2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle;
  margin: -3px 10px 0 0;
  border: solid 1px #d6d6d6;
  border-radius: 3px;
}

.form-content .form-wrap .form-column .form-column-label2 .item input + label span:after {
  content: '';
  display: none;
}

.form-content .form-wrap .form-column .form-column-label2 .item input + label span:after {
  width: 3px;
  height: 7px;
  border: solid #e8443b;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: -2px 0 0 0;
}

.form-content .form-wrap .form-column .form-column-label2 .item input:checked + label span:after {
  display: block;
}

.form-content .form-wrap .form-column .form-column-label3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 5px 0 0 0;
}

.form-content .form-wrap .form-column .form-column-label3 .item {
  width: calc( 100%/6 - 6px);
}

@media only screen and (max-width: 1023px) {
  .form-content .form-wrap .form-column .form-column-label3 .item {
    width: calc( 100%/3 - 6px);
    margin: 0 0 9px 0;
  }
}

.form-content .form-wrap .form-column .form-column-label3 .item input {
  display: none;
}

.form-content .form-wrap .form-column .form-column-label3 .item input + label {
  border: solid 1px #d2cb9e;
  display: block;
  width: 100%;
  height: 54px;
  border-radius: 5px;
  background: #e9e6d4;
  font-size: 15px;
  font-weight: bold;
  color: #666666;
  text-align: center;
  line-height: 54px;
  cursor: pointer;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.form-content .form-wrap .form-column .form-column-label3 .item input:checked + label {
  background: #e8443b;
  color: #fff;
}

.form-content .form-wrap .form-column .form-column-label4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 5px 0 0 0;
}

.form-content .form-wrap .form-column .form-column-label4 .form-column-text2 {
  width: 200px;
}

.form-content .form-wrap .form-column.width2 {
  width: calc( 50% - 14px);
}

@media only screen and (max-width: 480px) {
  .form-content .form-wrap .form-column.width2 {
    width: 100%;
  }
}

.form-content .inquiry-btn {
  width: 600px;
  height: 75px;
  margin: 20px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #e8443b;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  border: 0;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

.form-content .inquiry-btn:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

.form-content .inquiry-btn:before {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  background: url("../images/inquery2.svg") no-repeat center;
  background-size: cover;
  margin-right: 17px;
}

@media only screen and (max-width: 660px) {
  .form-content .inquiry-btn {
    width: 100%;
  }
}

/*News*/
.news {
  width: 100%;
}

.news .news-tab {
  border-bottom: solid 1px #b9b9b9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news .news-tab a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 88px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: #666;
  margin-right: 63px;
}

@media only screen and (max-width: 768px) {
  .news .news-tab a {
    font-size: 18px;
    margin-right: 30px;
  }
}

.news .news-tab a svg {
  width: 35px;
  height: 35px;
  margin-right: 15px;
}

.news .news-tab a svg path {
  fill: #666;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.news .news-tab a:hover, .news .news-tab a.current {
  color: #e8443b;
}

.news .news-tab a:hover svg path, .news .news-tab a.current svg path {
  fill: #e8443b;
}

.news .news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 47px 0 0 0;
}

.news .news-list li {
  width: calc( 100%/4 - 28.5px);
  margin: 0 38px 38px 0;
  padding: 20px;
  background: #fff;
  -webkit-box-shadow: 0 0 30px #bfbfbf;
  box-shadow: 0 0 30px #bfbfbf;
}

.news .news-list li .pic {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.news .news-list li .pic img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.news .news-list li .date, .news .news-list li .tit {
  font-weight: bold;
}

.news .news-list li .date {
  color: #a99d5e;
  font-size: 13px;
  margin: 10px 0 0 0;
}

.news .news-list li .tit {
  color: #000;
  display: block;
  font-size: 18px;
}

.news .news-list li .txt {
  font-size: 13px;
  line-height: 24px;
  min-height: 72px;
  padding: 5px 0;
}

.news .news-list li .btn {
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: solid 1px #a99d5e;
  color: #a99d5e;
  font-weight: bold;
}

.news .news-list li .btn span {
  padding-left: 7px;
}

.news .news-list li .btn svg {
  width: 18px;
  height: 18px;
}

.news .news-list li .btn svg path {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  fill: #a99d5e;
}

.news .news-list li:hover .pic img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.news .news-list li:hover .btn {
  background: #a99d5e;
  color: #fff;
}

.news .news-list li:hover .btn svg path {
  fill: #fff;
}

.news .news-list li:nth-child(4n) {
  margin: 0 0 38px 0;
}

@media only screen and (max-width: 1025px) {
  .news .news-list li {
    width: calc( 100%/3 - 25px);
    margin: 0 37.5px 37.5px 0;
  }
  .news .news-list li:nth-child(4n) {
    margin: 0 37.5px 37.5px 0;
  }
  .news .news-list li:nth-child(3n) {
    margin: 0 0 37.5px 0;
  }
}

@media only screen and (max-width: 768px) {
  .news .news-list li {
    width: calc( 100%/2 - 18.75px);
    margin: 0 37.5px 37.5px 0;
  }
  .news .news-list li:nth-child(4n) {
    margin: 0 37.5px 37.5px 0;
  }
  .news .news-list li:nth-child(3n) {
    margin: 0 37.5px 37.5px 0;
  }
  .news .news-list li:nth-child(2n) {
    margin: 0 0 37.5px 0;
  }
}

@media only screen and (max-width: 480px) {
  .news .news-list li {
    width: 100%;
    margin: 0 0 37.5px 0;
  }
  .news .news-list li:nth-child(4n) {
    margin: 0 0 37.5px 0;
  }
  .news .news-list li:nth-child(3n) {
    margin: 0 0 37.5px 0;
  }
  .news .news-list li:nth-child(2n) {
    margin: 0 0 37.5px 0;
  }
}

.news .news-detail {
  width: 1024px;
  margin: auto;
}

@media only screen and (max-width: 1025px) {
  .news .news-detail {
    width: 100%;
  }
}

.news .news-detail .date {
  font-size: 18px;
  color: #a99d5e;
  font-weight: 500;
}

.news .news-detail .tit {
  font-size: 30px;
  font-weight: bold;
  line-height: 36px;
  padding: 10px 0 20px 0;
  border-bottom: solid 1px #b9b9b9;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media only screen and (max-width: 768px) {
  .news .news-detail .tit {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .news .news-detail .tit .share {
    margin-top: 20px;
  }
}

.news .news-detail .tit h2 {
  font-weight: bold;
}

.news .news-detail .tit .share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news .news-detail .tit .share:before {
  content: 'Share';
  font-weight: bold;
  font-size: 16px;
  color: #cbcbcb;
}

.news .news-detail .tit .share a {
  width: 30px;
  height: 30px;
  display: block;
  margin-left: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.news .news-detail .tit .share a:hover {
  -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
          transform: translateY(3px);
}

.news .news-detail .tit .share a img {
  width: 100%;
  height: auto;
  display: block;
}

.news .news-detail .tit .share a.fb {
  background: url("../images/fb.png") no-repeat;
  background-size: contain;
}

.news .news-detail .tit .share a.LINE {
  background: url("../images/LINE.png") no-repeat;
  background-size: contain;
}

.news .news-detail .tit .share a.Twitter {
  background: url("../images/tw.png") no-repeat;
  background-size: contain;
}

.news .news-detail .tit .share a.linkedin {
  background: url("../images/in.png") no-repeat;
  background-size: contain;
}

.news .news-detail .tit .share a.copy {
  background: url("../images/copy.svg") no-repeat #e5e5e5 center center;
  background-size: 20px;
}

.news .news-detail .news-detail-edit {
  padding: 30px 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.news .news-detail .news-detail-edit img {
  max-width: 100%;
  height: auto;
}

.news .news-detail .back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 294px;
  height: 77px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin: 20px auto;
}

.news .news-detail .back:before {
  display: block;
  content: '';
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

.news .news-detail .back.back {
  background: #4e4e4e;
}

.news .news-detail .back.back:before {
  background: url("../images/back.svg") no-repeat;
  background-size: 30px;
}

.news .news-detail .back:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

.video {
  width: 100%;
}

.video .video-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 47px 0 0 0;
  width: 100%;
}

.video .video-list li {
  width: calc( 100%/4 - 28.5px);
  margin: 0 38px 38px 0;
  padding: 20px;
  background: #fff;
  -webkit-box-shadow: 0 0 30px #bfbfbf;
  box-shadow: 0 0 30px #bfbfbf;
  position: relative;
}

.video .video-list li .pic {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.video .video-list li .pic a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 10px;
}

.video .video-list li .pic a span {
  color: #fff;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.video .video-list li .pic a span:before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent #ffffff;
  vertical-align: middle;
  margin: -2px 5px 0 0;
}

.video .video-list li .pic img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  z-index: 1;
}

.video .video-list li .model {
  color: #a99d5e;
  font-size: 13px;
  margin: 10px 0 0 0;
  font-weight: bold;
}

.video .video-list li .tit {
  color: #000;
  display: block;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.video .video-list li:hover .pic a {
  background: rgba(232, 68, 59, 0.9);
}

.video .video-list li:hover .pic a span {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.video .video-list li:nth-child(4n) {
  margin: 0 0 38px 0;
}

@media only screen and (max-width: 1025px) {
  .video .video-list li {
    width: calc( 100%/3 - 25px);
    margin: 0 37.5px 37.5px 0;
  }
  .video .video-list li:nth-child(4n) {
    margin: 0 37.5px 37.5px 0;
  }
  .video .video-list li:nth-child(3n) {
    margin: 0 0 37.5px 0;
  }
}

@media only screen and (max-width: 768px) {
  .video .video-list li {
    width: calc( 100%/2 - 18.75px);
    margin: 0 37.5px 37.5px 0;
  }
  .video .video-list li:nth-child(4n) {
    margin: 0 37.5px 37.5px 0;
  }
  .video .video-list li:nth-child(3n) {
    margin: 0 37.5px 37.5px 0;
  }
  .video .video-list li:nth-child(2n) {
    margin: 0 0 37.5px 0;
  }
}

@media only screen and (max-width: 480px) {
  .video .video-list li {
    width: 100%;
    margin: 0 0 37.5px 0;
  }
  .video .video-list li:nth-child(4n) {
    margin: 0 0 37.5px 0;
  }
  .video .video-list li:nth-child(3n) {
    margin: 0 0 37.5px 0;
  }
  .video .video-list li:nth-child(2n) {
    margin: 0 0 37.5px 0;
  }
}

.certificates {
  width: 100%;
}

.certificates .certificates-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 47px 0 0 0;
  width: 100%;
}

.certificates .certificates-list li {
  width: calc( 100%/5 - 30.4px);
  margin: 0 38px 38px 0;
  padding: 20px;
  background: #fff;
  -webkit-box-shadow: 0 0 30px #bfbfbf;
  box-shadow: 0 0 30px #bfbfbf;
  position: relative;
}

.certificates .certificates-list li .pic {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.certificates .certificates-list li .pic img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  z-index: 1;
}

.certificates .certificates-list li .no {
  color: #a99d5e;
  font-size: 13px;
  margin: 10px 0 0 0;
  font-weight: bold;
}

.certificates .certificates-list li .tit {
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  font-size: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 24px;
}

.certificates .certificates-list li .tit:before {
  content: 'Model No.：';
  font-size: 13px;
  color: #a99d5e;
  font-weight: bold;
  margin-right: 5px;
}

.certificates .certificates-list li .tit.no-data:before {
  display: none;
}

.certificates .certificates-list li:nth-child(5n) {
  margin: 0 0 38px 0;
}

@media only screen and (max-width: 1366px) {
  .certificates .certificates-list li {
    width: calc( 100%/4 - 28.5px);
  }
  .certificates .certificates-list li:nth-child(5n) {
    margin: 0 38px 38px 0;
  }
  .certificates .certificates-list li:nth-child(4n) {
    margin: 0 0 38px 0;
  }
  .certificates .certificates-list li .tit {
    font-size: 15px;
  }
}

@media only screen and (max-width: 1025px) {
  .certificates .certificates-list li {
    width: calc( 100%/3 - 25px);
    margin: 0 37.5px 37.5px 0;
  }
  .certificates .certificates-list li:nth-child(5n) {
    margin: 0 37.5px 37.5px 0;
  }
  .certificates .certificates-list li:nth-child(4n) {
    margin: 0 37.5px 37.5px 0;
  }
  .certificates .certificates-list li:nth-child(3n) {
    margin: 0 0 37.5px 0;
  }
}

@media only screen and (max-width: 768px) {
  .certificates .certificates-list li {
    width: calc( 100%/2 - 18.75px);
    margin: 0 37.5px 37.5px 0;
  }
  .certificates .certificates-list li:nth-child(4n) {
    margin: 0 37.5px 37.5px 0;
  }
  .certificates .certificates-list li:nth-child(3n) {
    margin: 0 37.5px 37.5px 0;
  }
  .certificates .certificates-list li:nth-child(2n) {
    margin: 0 0 37.5px 0;
  }
}

@media only screen and (max-width: 480px) {
  .certificates .certificates-list li {
    width: 100%;
    margin: 0 0 37.5px 0;
  }
  .certificates .certificates-list li:nth-child(4n) {
    margin: 0 0 37.5px 0;
  }
  .certificates .certificates-list li:nth-child(3n) {
    margin: 0 0 37.5px 0;
  }
  .certificates .certificates-list li:nth-child(2n) {
    margin: 0 0 37.5px 0;
  }
}

.contact {
  width: 100%;
  margin-top: 100px;
}

.contact .title {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #000;
}

.contact .contact-info {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 25px auto;
  width: 800px;
}

@media only screen and (max-width: 860px) {
  .contact .contact-info {
    width: 100%;
    padding: 0 30px;
  }
}

.contact .contact-info li {
  padding: 0 0 0 30px;
  margin: 5px 34px 5px 0;
  color: #8b8b8b;
  font-weight: bold;
}

.contact .contact-info li:first-child {
  width: 100%;
  background: url("../images/ft_icon1.svg") no-repeat;
  background-size: 20px auto;
}

.contact .contact-info li:nth-child(2), .contact .contact-info li:nth-child(3) {
  background: url("../images/ft_icon2.svg") no-repeat 5px center;
  background-size: 14px auto;
}

.contact .contact-info li:nth-child(4) {
  background: url("../images/ft_icon3.svg") no-repeat 0 center;
  background-size: 22px auto;
}

.about {
  width: 1024px;
  margin: auto;
}

.about .about-row {
  margin-bottom: 30px;
}

@media only screen and (max-width: 1084px) {
  .about {
    width: 100%;
    padding: 0 30px;
  }
}

.about .about-title {
  background: url("../images/about-icon.svg") no-repeat 0 center;
  background-size: 30px;
  padding: 0 0 0 40px;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

.about .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 22px 0 0 0;
}

.about .list li {
  width: calc( 25% - 16.5px);
  margin: 0 22px 22px 0;
  height: 104px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.about .list li a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(232, 68, 50, 0.9);
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-weight: bold;
  padding: 24px;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}

.about .list li img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 150%;
  height: auto;
}

.about .list li:nth-child(4n) {
  margin: 0 0 22px 0;
}

@media only screen and (max-width: 768px) {
  .about .list li {
    width: calc( 100%/3 - 16px);
    margin: 0 24px 24px 0;
  }
  .about .list li:nth-child(4n) {
    margin: 0 24px 24px 0;
  }
  .about .list li:nth-child(3n) {
    margin: 0 0 24px 0;
  }
}

@media only screen and (max-width: 480px) {
  .about .list li {
    width: calc( 100%/2 - 12px);
  }
  .about .list li:nth-child(4n) {
    margin: 0 24px 24px 0;
  }
  .about .list li:nth-child(3n) {
    margin: 0 24px 24px 0;
  }
  .about .list li:nth-child(2n) {
    margin: 0 0 24px 0;
  }
}

@media only screen and (max-width: 400px) {
  .about .list li {
    width: 100%;
    margin: 0 0 24px 0;
  }
  .about .list li:nth-child(2n), .about .list li:nth-child(3n), .about .list li:nth-child(4n) {
    margin: 0 0 24px 0;
  }
}

.about .list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 22px 0 0 0;
}

.about .list2 li {
  width: calc( 100%/3 - 30px);
  margin: 0 45px 45px 0;
  background: #fff;
  padding: 15px;
}

.about .list2 li .pic {
  width: 100%;
  height: auto;
  position: relative;
}

.about .list2 li .pic img {
  width: 100%;
  height: auto;
}

.about .list2 li span {
  display: block;
  text-align: center;
  padding: 5px 0;
  font-size: 15px;
  font-weight: bold;
  color: #000;
}

.about .list2 li:nth-child(3n) {
  margin: 0 0 45px 0;
}

@media only screen and (max-width: 768px) {
  .about .list2 li {
    width: calc( 100%/2 - 15px);
    margin: 0 30px 30px 0;
  }
  .about .list2 li:nth-child(3n) {
    margin: 0 30px 30px 0;
  }
  .about .list2 li:nth-child(2n) {
    margin: 0 0 30px 0;
  }
}

@media only screen and (max-width: 400px) {
  .about .list2 li {
    width: 100%;
    margin: 0 0 30px 0;
  }
  .about .list2 li:nth-child(2n), .about .list2 li:nth-child(3n), .about .list2 li:nth-child(4n) {
    margin: 0 0 30px 0;
  }
}

.sitemap {
  width: 1024px;
  margin: auto;
}

@media only screen and (max-width: 1084px) {
  .sitemap {
    width: 100%;
    padding: 0 30px;
  }
}

.sitemap .sitemap-title {
  background: url("../images/sitemap.svg") no-repeat 0 center;
  background-size: 30px;
  padding: 0 0 0 40px;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

.sitemap .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 22px 0 0 0;
}

.sitemap .list li {
  width: calc( 100%/3 - 30px);
  margin: 0 45px 45px 0;
  background: #fff;
  padding: 20px;
  min-height: 289px;
  -webkit-box-shadow: 0 0 20px #bfbfbf;
  box-shadow: 0 0 20px #bfbfbf;
}

.sitemap .list li .name {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.sitemap .list li .name a {
  color: #e8443b;
}

.sitemap .list li .item {
  display: block;
  padding: 0 0 0 20px;
  position: relative;
  font-size: 15px;
  color: #666666;
  font-weight: 500;
  margin: 5px 0;
  line-height: 30px;
}

.sitemap .list li .item:before {
  content: '．';
  font-size: 15px;
  color: #000000;
  position: absolute;
  top: 0;
  left: 0;
}

.sitemap .list li .item:hover {
  color: #e8443b;
}

.sitemap .list li:nth-child(3n) {
  margin: 0 0 45px 0;
}

@media only screen and (max-width: 768px) {
  .sitemap .list li {
    width: calc( 100%/2 - 15px);
    margin: 0 30px 30px 0;
  }
  .sitemap .list li:nth-child(3n) {
    margin: 0 30px 30px 0;
  }
  .sitemap .list li:nth-child(2n) {
    margin: 0 0 30px 0;
  }
}

@media only screen and (max-width: 480px) {
  .sitemap .list li {
    width: 100%;
    margin: 0 0 30px 0;
    min-height: auto;
  }
  .sitemap .list li:nth-child(2n), .sitemap .list li:nth-child(3n) {
    margin: 0 0 30px 0;
  }
}

.sitemap .list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 22px 0 0 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sitemap .list2 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  min-width: 163px;
  border-radius: 5px;
  background: #e9e6d4;
  border: solid 1px #d2cb9e;
  color: #666666;
  height: 54px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  margin: 0 13px 13px 0;
}

.sitemap .list2 a:hover {
  background: #d2cb9e;
  color: #fff;
}

.error-page {
  width: 768px;
  margin: auto;
}

.error-page .msg {
  font-weight: bold;
  font-size: 72px;
  color: #666666;
  margin: 70px 0;
  text-align: center;
}

.error-page .text {
  font-size: 18px;
  line-height: 36px;
}

.error-page .text span {
  font-weight: bold;
  font-size: 72px;
  padding-right: 24px;
}

.error-page .btn {
  width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 80px auto;
}

.error-page .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc( 50% - 10px);
  height: 77px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.error-page .btn a:before {
  display: block;
  content: '';
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

.error-page .btn a.back {
  background: #4e4e4e;
}

.error-page .btn a.back:before {
  background: url("../images/back.svg") no-repeat;
  background-size: 30px;
}

.error-page .btn a.inquery {
  background: #e8443b;
}

.error-page .btn a.inquery:before {
  background: url("../images/inquery.svg") no-repeat;
  background-size: 30px;
}

.error-page .btn a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

@media only screen and (max-width: 768px) {
  .error-page {
    width: 100%;
    padding: 0 30px;
  }
  .error-page .msg {
    font-size: 36px;
    margin: 30px 0;
  }
  .error-page .text {
    font-size: 15px;
    line-height: 24px;
  }
  .error-page .btn {
    width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  .error-page .btn {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .error-page .btn a {
    width: 100%;
  }
}

.resp-tabs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 1px #c3bfa4;
  margin-top: 64px;
}

.resp-tabs-list li {
  width: 213px;
  height: 65px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  background: #4c4c4c;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin: 0 7px 7px 0;
}

.resp-tabs-list li:last-child {
  margin: 0 0 7px 0;
}

.resp-tabs-list li.current {
  background: #e8443b;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .resp-tabs-list {
    border-bottom: none;
  }
  .resp-tabs-list li {
    font-size: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .resp-tabs-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 10px;
  }
  .resp-tabs-list li {
    width: calc( 50% - 3.5px);
    margin: 0 0 7px 0;
  }
  .resp-tabs-list li:nth-child(2n) {
    margin: 0 0 7px 0;
  }
}

#tag-location {
  scroll-margin-top: 100px;
}

.resp-tabs-list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 64px;
}

.resp-tabs-list2 a {
  width: 213px;
  height: 65px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  background: #e9e6d4;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin: 0 7px 7px 0;
}

.resp-tabs-list2 a:last-child {
  margin: 0 0 7px 0;
}

.resp-tabs-list2 a:nth-child(1) {
  background: #4c4c4c;
}

.resp-tabs-list2 a:nth-child(2) {
  background: #e8443b;
}

@media only screen and (max-width: 768px) {
  .resp-tabs-list2 {
    border-bottom: none;
  }
  .resp-tabs-list2 a {
    font-size: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .resp-tabs-list2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 10px;
  }
  .resp-tabs-list2 a {
    width: calc( 50% - 3.5px);
    margin: 0 0 7px 0;
  }
  .resp-tabs-list2 a:nth-child(2n) {
    margin: 0 0 7px 0;
  }
}

.tab-content {
  display: none;
}

.tab-content.current {
  display: block;
}
