@charset "UTF-8";
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

html {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  position: relative;
  font-size: 100%;
  line-height: 1;
  letter-spacing: 1px;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: 'liga', 'kern';
  -webkit-overflow-scrolling: touch;
}

body::-webkit-scrollbar {
  width: 4px;
}
body::-webkit-scrollbar-thumb {
  background-color: #000000;
}
body::-webkit-scrollbar-track-piece {
  background-color: transparent;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

iframe {
  display: block;
}

html.mobile-mode body {
  overflow-x: hidden;
  overflow-y: auto !important;
}

ul {
  margin-bottom: 0;
}

p {
  margin-bottom: 0;
}
p + p {
  margin-top: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0;
}

figure {
  margin: 0;
}

dl,
menu,
ol,
ul {
  margin: 0;
}

ul {
  list-style: none;
  list-style-image: none;
}

form {
  margin: 0;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
  *margin-left: -7px;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
  font-family: 'JaguarJC-Book', '微軟正黑體', Arial, sans-serif;
  letter-spacing: 1px;
}

button,
input {
  line-height: normal;
}

button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
  -webkit-appearance: button;
  cursor: pointer;
  *overflow: visible;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type='checkbox'],
input[type='radio'] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  *height: 13px;
  *width: 13px;
}

input[type='search'] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: none;
}
textarea::-webkit-scrollbar {
  width: 2px;
}
textarea::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #c2c2c2;
}
textarea::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px #878787;
}

/*去除input藍色框框*/
*:focus {
  outline: none;
}

input:focus,
textarea:focus {
  outline: none;
}

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

picture {
  overflow: hidden;
  font-size: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

mark {
  background: #ff0;
  color: #000;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q:before,
q:after {
  content: '';
  content: none;
}

small {
  font-size: 75%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

hr {
  height: 1px;
  border: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-weight: inherit;
  line-height: 1.5;
  max-width: 100%;
}

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}

.slick-arrow {
  z-index: 99;
}

/* variable css */
/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation fade-in-fwd
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-fwd {
  0% {
    -webkit-transform: translateZ(-80px);
    transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes fade-in-fwd {
  0% {
    -webkit-transform: translateZ(-80px);
    transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation fade-in-bck
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-bck {
  0% {
    -webkit-transform: translateZ(80px);
    transform: translateZ(80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes fade-in-bck {
  0% {
    -webkit-transform: translateZ(80px);
    transform: translateZ(80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation fade-in-top
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation fade-in-top-10
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-top-10 {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top-10 {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation fade-in-right
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation fade-in-right-10
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-right-10 {
  0% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right-10 {
  0% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation fade-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation fade-in-bottom-10
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-bottom-10 {
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom-10 {
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation fade-in-left
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation fade-out
 * ----------------------------------------
 */
@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/**
 * ----------------------------------------
 * animation fade-out-bck
 * ----------------------------------------
 */
@-webkit-keyframes fade-out-bck {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(-80px);
    transform: translateZ(-80px);
    opacity: 0;
  }
}
@keyframes fade-out-bck {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(-80px);
    transform: translateZ(-80px);
    opacity: 0;
  }
}

/**
 * ----------------------------------------
 * animation fade-out-fwd
 * ----------------------------------------
 */
@-webkit-keyframes fade-out-fwd {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(80px);
    transform: translateZ(80px);
    opacity: 0;
  }
}
@keyframes fade-out-fwd {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(80px);
    transform: translateZ(80px);
    opacity: 0;
  }
}

/**
 * ----------------------------------------
 * animation fade-out-top
 * ----------------------------------------
 */
@-webkit-keyframes fade-out-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
}
@keyframes fade-out-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
}

/**
 * ----------------------------------------
 * animation fade-out-right
 * ----------------------------------------
 */
@-webkit-keyframes fade-out-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
}
@keyframes fade-out-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
}

/**
 * ----------------------------------------
 * animation fade-out-bottom
 * ----------------------------------------
 */
@-webkit-keyframes fade-out-bottom {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
}
@keyframes fade-out-bottom {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
}

/**
 * ----------------------------------------
 * animation fade-out-left
 * ----------------------------------------
 */
@-webkit-keyframes fade-out-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
}
@keyframes fade-out-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
}

/**
 * ----------------------------------------
 * animation kenburns-bottom
 * ----------------------------------------
 */
@-webkit-keyframes kenburns-bottom {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 84%;
    transform-origin: 50% 84%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(15px);
    transform: scale(1.25) translateY(15px);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}
@keyframes kenburns-bottom {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 84%;
    transform-origin: 50% 84%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(15px);
    transform: scale(1.25) translateY(15px);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}

/**
 * ----------------------------------------
 * animation rotate-vert-center
 * ----------------------------------------
 */
@-webkit-keyframes rotate-vert-center {
  0% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@keyframes rotate-vert-center {
  0% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

/**
 * ----------------------------------------
 * animation scale-in-center
 * ----------------------------------------
 */
@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation scale-out-center
 * ----------------------------------------
 */
@-webkit-keyframes scale-out-center {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
}
@keyframes scale-out-center {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation swing-in-top-fwd
 * ----------------------------------------
 */
@-webkit-keyframes swing-in-top-fwd {
  0% {
    -webkit-transform: rotateX(-100deg);
    transform: rotateX(-100deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 1;
  }
}
@keyframes swing-in-top-fwd {
  0% {
    -webkit-transform: rotateX(-100deg);
    transform: rotateX(-100deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation slide-in-left
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation slide-in-right
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation slide-in-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation slide-in-left-10
 * ----------------------------------------
 */
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/**
 * ----------------------------------------
 * animation slide-in-right-10
 * ----------------------------------------
 */
@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/**
 * ----------------------------------------
 * animation slide-in-top-10
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-top-10 {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slide-in-top-10 {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/**
 * ----------------------------------------
 * animation slide-in-bottom-10
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-bottom-10 {
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slide-in-bottom-10 {
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/**
 * ----------------------------------------
 * animation bounce-top
 * ----------------------------------------
 */
@-webkit-keyframes bounce-top {
  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-top {
  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);
  }
}

/**
 * ----------------------------------------
 * animation bounce-top
 * ----------------------------------------
 */
@-webkit-keyframes bounce-animal {
  0% {
    -webkit-transform: translateX(-200%) translateY(-10px) scale(0);
    transform: translateX(-200%) translateY(-10px) scale(0);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  5% {
    -webkit-transform: translateX(-180%) translateY(0px) scale(0.05);
    transform: translateX(-180%) translateY(0px) scale(0.05);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0.05;
  }
  10% {
    -webkit-transform: translateX(-160%) translateY(-20px) scale(0.1);
    transform: translateX(-160%) translateY(-20px) scale(0.1);
    opacity: 0.1;
  }
  20% {
    -webkit-transform: translateX(-140%) translateY(0px) scale(0.25);
    transform: translateX(-140%) translateY(0px) scale(0.25);
    opacity: 0.2;
  }
  35% {
    -webkit-transform: translateX(-120%) translateY(-25px) scale(0.4);
    transform: translateX(-120%) translateY(-25px) scale(0.4);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0.35;
  }
  40% {
    -webkit-transform: translateX(-100%) translateY(0px) scale(0.5);
    transform: translateX(-100%) translateY(0px) scale(0.5);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0.5;
  }
  55% {
    -webkit-transform: translateX(-80%) translateY(-30px) scale(0.6);
    transform: translateX(-80%) translateY(-30px) scale(0.6);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0.7;
  }
  73% {
    -webkit-transform: translateX(-60%) translateY(0px) scale(0.7);
    transform: translateX(-60%) translateY(0px) scale(0.7);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0.85;
  }
  88% {
    -webkit-transform: translateX(-30%) translateY(-35px) scale(0.85);
    transform: translateX(-30%) translateY(-35px) scale(0.85);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0.95;
  }
  100% {
    -webkit-transform: translateX(0%) scale(1);
    transform: translateX(0%) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
}
@keyframes bounce-animal {
  0% {
    -webkit-transform: translateX(-200%) translateY(-10px) scale(0);
    transform: translateX(-200%) translateY(-10px) scale(0);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  5% {
    -webkit-transform: translateX(-180%) translateY(0px) scale(0.05);
    transform: translateX(-180%) translateY(0px) scale(0.05);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0.05;
  }
  10% {
    -webkit-transform: translateX(-160%) translateY(-20px) scale(0.1);
    transform: translateX(-160%) translateY(-20px) scale(0.1);
    opacity: 0.1;
  }
  20% {
    -webkit-transform: translateX(-140%) translateY(0px) scale(0.25);
    transform: translateX(-140%) translateY(0px) scale(0.25);
    opacity: 0.2;
  }
  35% {
    -webkit-transform: translateX(-120%) translateY(-25px) scale(0.4);
    transform: translateX(-120%) translateY(-25px) scale(0.4);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0.35;
  }
  40% {
    -webkit-transform: translateX(-100%) translateY(0px) scale(0.5);
    transform: translateX(-100%) translateY(0px) scale(0.5);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0.5;
  }
  55% {
    -webkit-transform: translateX(-80%) translateY(-30px) scale(0.6);
    transform: translateX(-80%) translateY(-30px) scale(0.6);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0.7;
  }
  73% {
    -webkit-transform: translateX(-60%) translateY(0px) scale(0.7);
    transform: translateX(-60%) translateY(0px) scale(0.7);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0.85;
  }
  88% {
    -webkit-transform: translateX(-30%) translateY(-35px) scale(0.85);
    transform: translateX(-30%) translateY(-35px) scale(0.85);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0.95;
  }
  100% {
    -webkit-transform: translateX(0%) scale(1);
    transform: translateX(0%) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation flip-in-ver-left
 * ----------------------------------------
 */
@-webkit-keyframes flip-in-ver-left {
  0% {
    -webkit-transform: rotateY(80deg);
    transform: rotateY(80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    opacity: 1;
  }
}
@keyframes flip-in-ver-left {
  0% {
    -webkit-transform: rotateY(80deg);
    transform: rotateY(80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation flip-out-ver-left
 * ----------------------------------------
 */
@-webkit-keyframes flip-out-ver-left {
  0% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateY(-70deg);
    transform: rotateY(-70deg);
    opacity: 0;
  }
}
@keyframes flip-out-ver-left {
  0% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateY(-70deg);
    transform: rotateY(-70deg);
    opacity: 0;
  }
}

.headerFadeIn {
  -webkit-animation: fade-in-top 1s ease both;
  animation: fade-in-top 1s ease both;
}

.headerFadeOut {
  -webkit-animation: fade-out-top 1s ease both;
  animation: fade-out-top 1s ease both;
}

[data-waypoint-duration='100'] {
  -webkit-animation-duration: 0.1s;
  animation-duration: 0.1s;
}

[data-waypoint-delay='100'] {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

[data-waypoint-duration='200'] {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}

[data-waypoint-delay='200'] {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

[data-waypoint-duration='300'] {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}

[data-waypoint-delay='300'] {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

[data-waypoint-duration='400'] {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
}

[data-waypoint-delay='400'] {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

[data-waypoint-duration='500'] {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

[data-waypoint-delay='500'] {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

[data-waypoint-duration='600'] {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
}

[data-waypoint-delay='600'] {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

[data-waypoint-duration='700'] {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
}

[data-waypoint-delay='700'] {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

[data-waypoint-duration='800'] {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}

[data-waypoint-delay='800'] {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

[data-waypoint-duration='900'] {
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
}

[data-waypoint-delay='900'] {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

[data-waypoint-duration='1000'] {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

[data-waypoint-delay='1000'] {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

[data-waypoint-duration='1100'] {
  -webkit-animation-duration: 1.1s;
  animation-duration: 1.1s;
}

[data-waypoint-delay='1100'] {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

[data-waypoint-duration='1200'] {
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
}

[data-waypoint-delay='1200'] {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

[data-waypoint-duration='1300'] {
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
}

[data-waypoint-delay='1300'] {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

[data-waypoint-duration='1400'] {
  -webkit-animation-duration: 1.4s;
  animation-duration: 1.4s;
}

[data-waypoint-delay='1400'] {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

[data-waypoint-duration='1500'] {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

[data-waypoint-delay='1500'] {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

[data-waypoint-duration='1600'] {
  -webkit-animation-duration: 1.6s;
  animation-duration: 1.6s;
}

[data-waypoint-delay='1600'] {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

[data-waypoint-duration='1700'] {
  -webkit-animation-duration: 1.7s;
  animation-duration: 1.7s;
}

[data-waypoint-delay='1700'] {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}

[data-waypoint-duration='1800'] {
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
}

[data-waypoint-delay='1800'] {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

[data-waypoint-duration='1900'] {
  -webkit-animation-duration: 1.9s;
  animation-duration: 1.9s;
}

[data-waypoint-delay='1900'] {
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s;
}

[data-waypoint-duration='2000'] {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

[data-waypoint-delay='2000'] {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.waypoint,
.waypoint100 {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
.waypoint.show,
.waypoint100.show {
  visibility: visible;
}
.waypoint.fade-in.show,
.waypoint100.fade-in.show {
  -webkit-animation-name: fade-in;
  animation-name: fade-in;
}
.waypoint.fade-in-top.show,
.waypoint100.fade-in-top.show {
  -webkit-animation-name: fade-in-top;
  animation-name: fade-in-top;
}
.waypoint.fade-in-bottom.show,
.waypoint100.fade-in-bottom.show {
  -webkit-animation-name: fade-in-bottom;
  animation-name: fade-in-bottom;
}
.waypoint.fade-in-left.show,
.waypoint100.fade-in-left.show {
  -webkit-animation-name: fade-in-left;
  animation-name: fade-in-left;
}
.waypoint.fade-in-right.show,
.waypoint100.fade-in-right.show {
  -webkit-animation-name: fade-in-right;
  animation-name: fade-in-right;
}
.waypoint.swing-in-top-fwd.show,
.waypoint100.swing-in-top-fwd.show {
  -webkit-animation-name: swing-in-top-fwd;
  animation-name: swing-in-top-fwd;
}

[data-page-classify='about']:not([data-page='statistics']) main .list-item {
  opacity: 0;
}
[data-page-classify='about']:not([data-page='statistics']) main .list-item.show {
  opacity: 1;
}
[data-page-classify='about']:not([data-page='statistics']) main .list-item.show .pic-container {
  -webkit-animation: slide-in-bottom 0.7s ease both;
  animation: slide-in-bottom 0.7s ease both;
}
[data-page-classify='about']:not([data-page='statistics'])
  main
  .list-item.show
  .article-container
  h2 {
  -webkit-animation: fade-in-bottom 0.7s 0.4s ease both;
  animation: fade-in-bottom 0.7s 0.4s ease both;
}
[data-page-classify='about']:not([data-page='statistics'])
  main
  .list-item.show
  .article-container
  p {
  -webkit-animation: fade-in-bottom 1s 0.7s ease both;
  animation: fade-in-bottom 1s 0.7s ease both;
}
[data-page-classify='about']:not([data-page='statistics']) main .list-item.show .btn-area .btn {
  -webkit-animation: fade-in-bottom 1s 0.9s both;
  animation: fade-in-bottom 1s 0.9s both;
}
[data-page-classify='about']:not([data-page='statistics']) main .list-item.show:not(:first-child) {
  opacity: 1;
}
[data-page-classify='about']:not([data-page='statistics'])
  main
  .list-item.show:not(:first-child)
  .pic-container {
  -webkit-animation: slide-in-bottom 0.7s ease both;
  animation: slide-in-bottom 0.7s ease both;
}
[data-page-classify='about']:not([data-page='statistics'])
  main
  .list-item.show:not(:first-child)
  .article-container
  h2 {
  -webkit-animation: fade-in-bottom 0.7s 0.4s ease both;
  animation: fade-in-bottom 0.7s 0.4s ease both;
}
[data-page-classify='about']:not([data-page='statistics'])
  main
  .list-item.show:not(:first-child)
  .article-container
  p {
  -webkit-animation: fade-in-bottom 1s 0.7s ease both;
  animation: fade-in-bottom 1s 0.7s ease both;
}

[data-page-classify='about']:not([data-page='statistics'])
  .banner-container_inner.show-in-1
  .subtitle {
  -webkit-animation: fade-in-bottom 0.7s ease both;
  animation: fade-in-bottom 0.7s ease both;
}

[data-page-classify='about']:not([data-page='statistics'])
  .banner-container_inner.show-in-1
  .title {
  -webkit-animation: fade-in-bottom 0.7s 0.3s ease both;
  animation: fade-in-bottom 0.7s 0.3s ease both;
}

[data-page-classify='about']:not([data-page='statistics'])
  .banner-container_inner.show-in-1
  .group {
  -webkit-animation: fade-in-bottom 0.7s 0.6s ease both;
  animation: fade-in-bottom 0.7s 0.6s ease both;
}

[data-page-classify='about']:not([data-page='statistics'])
  .article-container.show-in-1
  .article-title
  h2 {
  -webkit-animation: fade-in-left 0.7s 0.8s ease both;
  animation: fade-in-left 0.7s 0.8s ease both;
}

[data-page-classify='about']:not([data-page='statistics'])
  .article-container.show-in-1
  .article-title
  hr {
  -webkit-animation: fade-in-left 0.7s 1s ease both;
  animation: fade-in-left 0.7s 1s ease both;
}

[data-page-classify='about']:not([data-page='statistics'])
  .article-container.show-in-1
  ul.show-in-1,
[data-page-classify='about']:not([data-page='statistics'])
  .article-container.show-in-1
  .main-nav-tabs-area.show-in-1 {
  -webkit-animation: fade-in-bottom 0.7s 1.2s ease both;
  animation: fade-in-bottom 0.7s 1.2s ease both;
}

[data-page-classify='about']:not([data-page='statistics'])
  .banner.show
  .container
  .banner-container
  .subtitle {
  -webkit-animation: fade-in-bottom 0.7s ease both;
  animation: fade-in-bottom 0.7s ease both;
}

[data-page-classify='about']:not([data-page='statistics'])
  .banner.show
  .container
  .banner-container
  .title {
  -webkit-animation: fade-in-bottom 0.7s 0.3s ease both;
  animation: fade-in-bottom 0.7s 0.3s ease both;
}

[data-page-classify='about']:not([data-page='statistics'])
  .banner.show
  .container
  .banner-container
  .group {
  -webkit-animation: fade-in-bottom 0.7s 0.6s ease both;
  animation: fade-in-bottom 0.7s 0.6s ease both;
}

[data-page-classify='about']:not([data-page='statistics'])
  .banner.show
  .container
  .banner-container
  hr {
  -webkit-animation: fade-in-left 0.7s 0.9s ease both;
  animation: fade-in-left 0.7s 0.9s ease both;
}

.heading.show-in-1 .subtitle {
  -webkit-animation: fade-in-left 0.7s ease both;
  animation: fade-in-left 0.7s ease both;
}

.heading.show-in-1 .title {
  -webkit-animation: fade-in-left 0.7s 0.3s ease both;
  animation: fade-in-left 0.7s 0.3s ease both;
}

.heading.show-in-1 hr {
  -webkit-animation: fade-in-left 0.7s 0.6s ease both;
  animation: fade-in-left 0.7s 0.6s ease both;
}

.section-container {
  opacity: 0;
}
.section-container.show {
  opacity: 1;
}
.section-container.show .subtitle {
  -webkit-animation: fade-in-left 0.7s ease both;
  animation: fade-in-left 0.7s ease both;
}
.section-container.show .title {
  -webkit-animation: fade-in-left 0.7s 0.3s ease both;
  animation: fade-in-left 0.7s 0.3s ease both;
}
.section-container.show .text {
  -webkit-animation: fade-in-left 0.7s 0.6s ease both;
  animation: fade-in-left 0.7s 0.6s ease both;
}
.section-container.show hr {
  -webkit-animation: fade-in-left 0.7s 0.9s ease both;
  animation: fade-in-left 0.7s 0.9s ease both;
}
.section-container.show p {
  -webkit-animation: fade-in-bottom 0.7s 0.9s ease both;
  animation: fade-in-bottom 0.7s 0.9s ease both;
}

[data-page='statistics'] main .banner .detail-slider-for .img,
[data-page='statistics'] main .banner .detail-slider-for .slick-current {
  -webkit-animation: fade-in 0.7s ease both;
  animation: fade-in 0.7s ease both;
}

.video_lbox {
  opacity: 0;
}
.video_lbox.open {
  -webkit-animation: fade-in 0.7s ease both;
  animation: fade-in 0.7s ease both;
}
.video_lbox.open .detail_container .lbx_header {
  -webkit-animation: fade-in-right 0.6s 0.8s ease both;
  animation: fade-in-right 0.6s 0.8s ease both;
}
.video_lbox.open .detail_container .lbx_content {
  -webkit-animation: scale-in-center 0.6s 0.7s ease both;
  animation: scale-in-center 0.6s 0.7s ease both;
}
.video_lbox.open .detail_container .lbx_content .subtitle {
  -webkit-animation: slide-in-bottom 0.6s 0.9s ease both;
  animation: slide-in-bottom 0.6s 0.9s ease both;
}
.video_lbox.open .detail_container .lbx_content .title {
  -webkit-animation: slide-in-bottom 0.6s 1.1s ease both;
  animation: slide-in-bottom 0.6s 1.1s ease both;
}
.video_lbox.open .detail_container .lbx_content hr {
  -webkit-animation: slide-in-bottom 0.6s 1.3s ease both;
  animation: slide-in-bottom 0.6s 1.3s ease both;
}
.video_lbox.open .detail_container .lbx_content .detail-slider {
  -webkit-animation: slide-in-bottom 0.6s 1.5s ease both;
  animation: slide-in-bottom 0.6s 1.5s ease both;
}
.video_lbox.open .detail_container .lbx_content article {
  -webkit-animation: slide-in-bottom 0.6s 1.5s ease both;
  animation: slide-in-bottom 0.6s 1.5s ease both;
}
.video_lbox.close {
  -webkit-animation: fade-out-top 1s 1s ease both;
  animation: fade-out-top 1s 1s ease both;
}
.video_lbox.close .detail_container .lbx_header {
  -webkit-animation: fade-out-right 0.6s ease both;
  animation: fade-out-right 0.6s ease both;
}
.video_lbox.close .detail_container .lbx_content {
  -webkit-animation: fade-out 0.5s 0.5s ease both;
  animation: fade-out 0.5s 0.5s ease both;
}

.product_detail {
  opacity: 0;
}
.product_detail.open {
  -webkit-animation: fade-in 0.7s ease both;
  animation: fade-in 0.7s ease both;
}
.product_detail.open .detail_container {
  -webkit-animation: slide-in-bottom 0.6s ease both;
  animation: slide-in-bottom 0.6s ease both;
}
.product_detail.open .detail_container .lbx_header {
  -webkit-animation: fade-in-right 0.6s 0.8s ease both;
  animation: fade-in-right 0.6s 0.8s ease both;
}
.product_detail.open .detail_container .lbx_content .subtitle {
  -webkit-animation: slide-in-bottom 0.6s 0.9s ease both;
  animation: slide-in-bottom 0.6s 0.9s ease both;
}
.product_detail.open .detail_container .lbx_content .title {
  -webkit-animation: slide-in-bottom 0.6s 1.1s ease both;
  animation: slide-in-bottom 0.6s 1.1s ease both;
}
.product_detail.open .detail_container .lbx_content hr {
  -webkit-animation: slide-in-bottom 0.6s 1.3s ease both;
  animation: slide-in-bottom 0.6s 1.3s ease both;
}
.product_detail.open .detail_container .lbx_content .detail-slider {
  -webkit-animation: slide-in-bottom 0.6s 1.5s ease both;
  animation: slide-in-bottom 0.6s 1.5s ease both;
}
.product_detail.open .detail_container .lbx_content article {
  -webkit-animation: slide-in-bottom 0.6s 1.5s ease both;
  animation: slide-in-bottom 0.6s 1.5s ease both;
}
.product_detail.close {
  -webkit-animation: fade-out-top 0.4s ease both;
  animation: fade-out-top 0.4s ease both;
}

.news_detail {
  opacity: 0;
}
.news_detail.open .lbx_bg {
  -webkit-animation: fade-in 0.7s ease both;
  animation: fade-in 0.7s ease both;
}
.news_detail.open .detail_container {
  -webkit-animation: fade-in 0.6s 0.4s ease both;
  animation: fade-in 0.6s 0.4s ease both;
}
.news_detail.open .detail_container .lbx_header {
  -webkit-animation: fade-in-right 0.6s 0.8s ease both;
  animation: fade-in-right 0.6s 0.8s ease both;
}
.news_detail.open .detail_container .lbx_content .infos {
  -webkit-animation: slide-in-bottom 0.6s 0.6s ease both;
  animation: slide-in-bottom 0.6s 0.6s ease both;
}
.news_detail.open .detail_container .lbx_content .subtitle {
  -webkit-animation: slide-in-bottom 0.6s 0.9s ease both;
  animation: slide-in-bottom 0.6s 0.9s ease both;
}
.news_detail.open .detail_container .lbx_content .title {
  -webkit-animation: slide-in-bottom 0.6s 1.1s ease both;
  animation: slide-in-bottom 0.6s 1.1s ease both;
}
.news_detail.open .detail_container .lbx_content .share-area,
.news_detail.open .detail_container .lbx_content hr {
  -webkit-animation: slide-in-bottom 0.6s 1.3s ease both;
  animation: slide-in-bottom 0.6s 1.3s ease both;
}
.news_detail.open .detail_container .lbx_content .detail-slider,
.news_detail.open .detail_container .lbx_content article {
  -webkit-animation: slide-in-bottom 0.6s 1.5s ease both;
  animation: slide-in-bottom 0.6s 1.5s ease both;
}
.news_detail.close .lbx_bg {
  -webkit-animation: fade-out 1s 1s ease both;
  animation: fade-out 1s 1s ease both;
}
.news_detail.close .detail_container {
  -webkit-animation: fade-out 1s ease both;
  animation: fade-out 1s ease both;
}

/* fonts css */
@font-face {
  font-family: 'CenturyGothic-Bold';
  src: url('../fonts/CenturyGot.hicBold/CenturyGothic-Bold_gdi.eot');
  src: url('../fonts/CenturyGothicBold/CenturyGothic-Bold_gdi.eot?#iefix')
      format('embedded-opentype'),
    url('../fonts/CenturyGothicBold/CenturyGothic-Bold_gdi.woff') format('woff'),
    url('../fonts/CenturyGothicBold/CenturyGothic-Bold_gdi.ttf') format('truetype'),
    url('../fonts/CenturyGothicBold/CenturyGothic-Bold_gdi.svg#CenturyGothic-Bold') format('svg');
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-F003;
}

@font-face {
  font-family: 'CenturyGothic';
  src: url('../fonts/CenturyGothic/CenturyGothic.eot');
  src: url('../fonts/CenturyGothic/CenturyGothic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/CenturyGothic/CenturyGothic.woff') format('woff'),
    url('../fonts/CenturyGothic/CenturyGothic.woff') format('woff'),
    url('../fonts/CenturyGothic/CenturyGothic.ttf') format('truetype'),
    url('../fonts/CenturyGothic/CenturyGothic.svg#CenturyGothic') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'mplus-thin';
  src: url('../fonts/mplus/m+1c_thin_macroman/mplus-1c-thin-webfont.ttf');
  src: url('../fonts/mplus/m+1c_thin_macroman/mplus-1c-thin-webfont.eot')
      format('embedded-opentype'),
    url('../fonts/mplus/m+1c_thin_macroman/mplus-1c-thin-webfont.woff') format('woff'),
    url('../fonts/mplus/m+1c_thin_macroman/mplus-1c-thin-webfont.woff') format('woff'),
    url('../fonts/mplus/m+1c_thin_macroman/mplus-1c-thin-webfont.ttf') format('truetype'),
    url('../fonts/mplus/m+1c_thin_macroman/mplus-1c-thin-webfont.svg#CenturyGothic') format('svg');
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-F003;
}

@font-face {
  font-family: 'mplus-regular';
  src: url('../fonts/mplus/m+1c_regular_macroman/mplus-1c-regular-webfont.ttf');
  src: url('../fonts/mplus/m+1c_regular_macroman/mplus-1c-regular-webfont.eot')
      format('embedded-opentype'),
    url('../fonts/mplus/m+1c_regular_macroman/mplus-1c-regular-webfont.woff') format('woff'),
    url('../fonts/mplus/m+1c_regular_macroman/mplus-1c-regular-webfont.woff') format('woff'),
    url('../fonts/mplus/m+1c_regular_macroman/mplus-1c-regular-webfont.ttf') format('truetype'),
    url('../fonts/mplus/m+1c_regular_macroman/mplus-1c-regular-webfont.svg#CenturyGothic')
      format('svg');
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-F003;
}

@font-face {
  font-family: 'mplus-medium';
  src: url('../fonts/mplus/m+1c_mediumn_macroman/mplus-1c-medium-webfont.ttf');
  src: url('../fonts/mplus/m+1c_medium_macroman/mplus-1c-medium-webfont.eot')
      format('embedded-opentype'),
    url('../fonts/mplus/m+1c_medium_macroman/mplus-1c-medium-webfont.woff') format('woff'),
    url('../fonts/mplus/m+1c_medium_macroman/mplus-1c-medium-webfont.woff') format('woff'),
    url('../fonts/mplus/m+1c_medium_macroman/mplus-1c-medium-webfont.ttf') format('truetype'),
    url('../fonts/mplus/m+1c_medium_macroman/mplus-1c-medium-webfont.svg#CenturyGothic')
      format('svg');
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-F003;
}

@font-face {
  font-family: 'mplus-light';
  src: url('../fonts/mplus/m+1c_light_macroman/mplus-1c-light-webfont.ttf');
  src: url('../fonts/mplus/m+1c_light_macroman/mplus-1c-light-webfont.eot')
      format('embedded-opentype'),
    url('../fonts/mplus/m+1c_light_macroman/mplus-1c-light-webfont.woff') format('woff'),
    url('../fonts/mplus/m+1c_light_macroman/mplus-1c-light-webfont.woff') format('woff'),
    url('../fonts/mplus/m+1c_light_macroman/mplus-1c-light-webfont.ttf') format('truetype'),
    url('../fonts/mplus/m+1c_light_macroman/mplus-1c-light-webfont.svg#CenturyGothic') format('svg');
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-F003;
}

@font-face {
  font-family: 'mplus-heavy';
  src: url('../fonts/mplus/m+1c_heavy_macroman/mplus-1c-heavy-webfont.ttf');
  src: url('../fonts/mplus/m+1c_heavy_macroman/mplus-1c-heavy-webfont.eot')
      format('embedded-opentype'),
    url('../fonts/mplus/m+1c_heavy_macroman/mplus-1c-heavy-webfont.woff') format('woff'),
    url('../fonts/mplus/m+1c_heavy_macroman/mplus-1c-heavy-webfont.woff') format('woff'),
    url('../fonts/mplus/m+1c_heavy_macroman/mplus-1c-heavy-webfont.ttf') format('truetype'),
    url('../fonts/mplus/m+1c_heavy_macroman/mplus-1c-heavy-webfont.svg#CenturyGothic') format('svg');
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-F003;
}

@font-face {
  font-family: 'mplus-bold';
  src: url('../fonts/mplus/m+1c_bold_macroman/mplus-1c-bold-webfont.ttf');
  src: url('../fonts/mplus/m+1c_bold_macroman/mplus-1c-bold-webfont.eot')
      format('embedded-opentype'),
    url('../fonts/mplus/m+1c_bold_macroman/mplus-1c-bold-webfont.woff') format('woff'),
    url('../fonts/mplus/m+1c_bold_macroman/mplus-1c-bold-webfont.woff') format('woff'),
    url('../fonts/mplus/m+1c_bold_macroman/mplus-1c-bold-webfont.ttf') format('truetype'),
    url('../fonts/mplus/m+1c_bold_macroman/mplus-1c-bold-webfont.svg#CenturyGothic') format('svg');
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-F003;
}

@font-face {
  font-family: 'mplus-black';
  src: url('../fonts/mplus/m+1c_black_macroman/mplus-1c-black-webfont.ttf');
  src: url('../fonts/mplus/m+1c_black_macroman/mplus-1c-black-webfont.eot')
      format('embedded-opentype'),
    url('../fonts/mplus/m+1c_black_macroman/mplus-1c-black-webfont.woff') format('woff'),
    url('../fonts/mplus/m+1c_black_macroman/mplus-1c-black-webfont.woff') format('woff'),
    url('../fonts/mplus/m+1c_black_macroman/mplus-1c-black-webfont.ttf') format('truetype'),
    url('../fonts/mplus/m+1c_black_macroman/mplus-1c-black-webfont.svg#CenturyGothic') format('svg');
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-F003;
}

.btn[class*='-btn'] .txt {
  font-size: 1rem;
}

.btn[class*='-btn'] .cn {
  font-size: 0.9375em;
}

@media screen and (max-width: 991px) {
  .btn[class*='-btn'] .txt {
    font-size: 1rem;
  }
}

@media screen and (max-width: 374px) {
  .btn[class*='-btn'] .txt {
    font-size: 0.75rem;
  }
}

.btn.banner-btn {
  font-size: 16px;
}

.scroll_down {
  font-size: 0.875rem;
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  color: rgba(0, 0, 0, 0.5);
}

body {
  font-family: 'CenturyGothic-Bold', Microsoft JhengHei, 微軟正黑體, -apple-system,
    BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol';
}

header .nav-header-links .nav-link {
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 1.0625rem;
}

header .nav-header-links .link-active-value {
  white-space: nowrap;
}

header .nav-header-links .back-btn .txt {
  font-family: 'mplus-bold', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  letter-spacing: 0.5px;
  font-size: 1.0625rem;
  line-height: 1.125rem;
}

header .nav-header-links .back-btn [class*='icon-'] {
  font-size: 0.8125rem;
}

@media (max-width: 375px) {
  header .nav-header-links .back-btn .txt {
    margin-top: 3px;
    font-size: 0.875rem;
  }
  header .nav-header-links .back-btn [class*='icon-'] {
    font-size: 0.8125rem;
  }
}

footer .footer-links a {
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 1.25rem;
  letter-spacing: 0.4px;
}
@media (max-width: 1459px) {
  footer .footer-links a {
    font-size: 1rem;
  }
}
@media (max-width: 991px) {
  footer .footer-links a {
    font-size: 1.125rem;
  }
}

footer .footer-contact label,
footer .footer-contact .contact-link {
  font-size: 0.875rem;
  letter-spacing: 0.4px;
  color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 1459px) {
  footer .footer-contact label,
  footer .footer-contact .contact-link {
    font-size: 0.75rem;
  }
}

footer .footer-contact label {
  font-family: 'mplus-heavy', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

footer .footer-contact .contact-link {
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

footer .copyright span,
footer .copyright a {
  font-size: 0.8125rem;
}

footer .copyright span {
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

footer .copyright a {
  font-family: 'mplus-heavy', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

.btn .txt {
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  letter-spacing: 0;
}

.btn.has-svg {
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 1.0625rem;
}

.main-nav-tabs-area .nav-tabs .nav-link {
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

.banner.banner-normal .article-container .heading2 {
  font-size: 1.75rem;
  font-family: 'mplus-bold', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

.share-area p {
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 0.875rem;
  color: #9e9e9e;
}

[data-page='home'] .banner .pic .text {
  font-size: 28px;
}
@media (max-width: 1199px) {
  [data-page='home'] .banner .pic .text {
    font-size: 1.5rem;
  }
}
@media (max-width: 991px) {
  [data-page='home'] .banner .pic .text {
    font-size: 1.25rem;
  }
}
[data-page='home'] .banner .pic .text .heading4 {
  font-family: 'mplus-thin', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 1em;
}
[data-page='home'] .banner .pic .text .heading5 {
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 0.57em;
  letter-spacing: 1px;
}

[data-page='home'] .banner .pic-normal-mode .pic-area .text {
  font-size: 28px;
}
@media (max-width: 1199px) {
  [data-page='home'] .banner .pic-normal-mode .pic-area .text {
    font-size: 1.5rem;
  }
}
@media (max-width: 991px) {
  [data-page='home'] .banner .pic-normal-mode .pic-area .text {
    font-size: 1.25rem;
  }
}
[data-page='home'] .banner .pic-normal-mode .pic-area .text .heading4 {
  font-family: 'mplus-thin', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 1em;
}
[data-page='home'] .banner .pic-normal-mode .pic-area .text .heading5 {
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 0.57em;
  letter-spacing: 1px;
}

[data-page='home'] .article-title .heading2 {
  font-family: 'mplus-bold', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

[data-page='home'] .article-title .heading3 {
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

[data-page='home'] .banner .article-title {
  font-size: 50px;
}
@media (max-width: 1559px) {
  [data-page='home'] .banner .article-title {
    font-size: 46px;
  }
}
@media (max-width: 1199px) {
  [data-page='home'] .banner .article-title {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  [data-page='home'] .banner .article-title {
    font-size: 30px;
  }
}
[data-page='home'] .banner .article-title .heading2 {
  font-size: 0.44em;
  color: #979797;
}
[data-page='home'] .banner .article-title .heading3 {
  font-size: 1em;
}
@media (max-width: 575px) {
  [data-page='home'] .banner .article-title .heading3 {
    font-size: 0.7em;
    margin-top: 5px;
  }
}

[data-page='home'] .banner .tools .txt {
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

.figure-artistic .article .heading4,
.figure .article .heading4 {
  font-family: 'mplus-thin', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 1.75rem;
  letter-spacing: 0.5px;
}
@media (max-width: 479px) {
  .figure-artistic .article .heading4,
  .figure .article .heading4 {
    font-size: 1.5rem;
  }
}

.figure-artistic .article .heading5,
.figure .article .heading5 {
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 1rem;
  letter-spacing: 1.25px;
}

.figure-artistic .article .info,
.figure-artistic .article .text,
.figure .article .info,
.figure .article .text {
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

[data-area='products'] .article-area .article-title,
[data-area='artist'] .article-area .article-title,
[data-area='news'] .article-area .article-title,
[data-area='about'] .article-area .article-title {
  font-size: 70px;
}
@media (max-width: 1199px) {
  [data-area='products'] .article-area .article-title,
  [data-area='artist'] .article-area .article-title,
  [data-area='news'] .article-area .article-title,
  [data-area='about'] .article-area .article-title {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  [data-area='products'] .article-area .article-title,
  [data-area='artist'] .article-area .article-title,
  [data-area='news'] .article-area .article-title,
  [data-area='about'] .article-area .article-title {
    font-size: 56px;
  }
}
@media (max-width: 767px) {
  [data-area='products'] .article-area .article-title,
  [data-area='artist'] .article-area .article-title,
  [data-area='news'] .article-area .article-title,
  [data-area='about'] .article-area .article-title {
    font-size: 48px;
  }
}
@media (max-width: 375px) {
  [data-area='products'] .article-area .article-title,
  [data-area='artist'] .article-area .article-title,
  [data-area='news'] .article-area .article-title,
  [data-area='about'] .article-area .article-title {
    font-size: 40px;
  }
}
[data-area='products'] .article-area .article-title .heading2,
[data-area='artist'] .article-area .article-title .heading2,
[data-area='news'] .article-area .article-title .heading2,
[data-area='about'] .article-area .article-title .heading2 {
  font-size: 0.286em;
  letter-spacing: 1px;
  color: #979797;
  line-height: 1.8;
}
@media all and (max-width: 575px) {
  [data-area='products'] .article-area .article-title .heading2,
  [data-area='artist'] .article-area .article-title .heading2,
  [data-area='news'] .article-area .article-title .heading2,
  [data-area='about'] .article-area .article-title .heading2 {
    line-height: 1.5;
    margin-bottom: 10px;
  }
}
[data-area='products'] .article-area .article-title .heading3,
[data-area='artist'] .article-area .article-title .heading3,
[data-area='news'] .article-area .article-title .heading3,
[data-area='about'] .article-area .article-title .heading3 {
  font-size: 1em;
  line-height: 1;
  white-space: normal;
}
@media all and (max-width: 1440px) {
  [data-area='products'] .article-area .article-title .heading3,
  [data-area='artist'] .article-area .article-title .heading3,
  [data-area='news'] .article-area .article-title .heading3,
  [data-area='about'] .article-area .article-title .heading3 {
    font-size: 0.85em;
  }
}
@media all and (max-width: 1024px) {
  [data-area='products'] .article-area .article-title .heading3,
  [data-area='artist'] .article-area .article-title .heading3,
  [data-area='news'] .article-area .article-title .heading3,
  [data-area='about'] .article-area .article-title .heading3 {
    font-size: 0.7em;
  }
}
@media all and (max-width: 575px) {
  [data-area='products'] .article-area .article-title .heading3,
  [data-area='artist'] .article-area .article-title .heading3,
  [data-area='news'] .article-area .article-title .heading3,
  [data-area='about'] .article-area .article-title .heading3 {
    font-size: 0.65em;
  }
}
[data-area='products'] .article-area .article-title .heading3 span,
[data-area='artist'] .article-area .article-title .heading3 span,
[data-area='news'] .article-area .article-title .heading3 span,
[data-area='about'] .article-area .article-title .heading3 span {
  font-family: inherit;
}

[data-area='products'] .article-area .article,
[data-area='artist'] .article-area .article,
[data-area='news'] .article-area .article,
[data-area='about'] .article-area .article {
  font-size: 1rem;
}

[data-area='products'] .article-area .heading4,
[data-area='artist'] .article-area .heading4,
[data-area='news'] .article-area .heading4,
[data-area='about'] .article-area .heading4 {
  font-size: 1.75rem;
  font-family: 'mplus-thin', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  letter-spacing: 0.4px;
}

[data-area='products'] .article-area .heading5,
[data-area='artist'] .article-area .heading5,
[data-area='news'] .article-area .heading5,
[data-area='about'] .article-area .heading5 {
  font-size: 1rem;
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  letter-spacing: 0.7px;
  color: rgba(0, 0, 0, 0.4);
}

[data-area='products'] .article-area .info,
[data-area='artist'] .article-area .info,
[data-area='news'] .article-area .info,
[data-area='about'] .article-area .info {
  opacity: 0;
  -webkit-animation: fadeIn 1s both 0.2s;
  animation: fadeIn 1s both 0.2s;
}
[data-area='products'] .article-area .info p,
[data-area='artist'] .article-area .info p,
[data-area='news'] .article-area .info p,
[data-area='about'] .article-area .info p {
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 0.9375rem;
  color: rgba(0, 0, 0, 0.5);
}

[data-page='home'] .banner-container .right-container .tools .txt {
  font-size: 0.875rem;
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  letter-spacing: 0.3px;
  line-height: 1;
}

@media (min-width: 768px) and (max-width: 991px) {
  [data-page='home'] [data-area='about'] .article-area .article-title {
    font-size: 50px;
  }
}

[data-area='news'] .date .mm {
  font-size: 1.125rem;
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
@media (max-width: 1459px) {
  [data-area='news'] .date .mm {
    font-size: 0.875rem;
  }
}
@media (max-width: 991px) {
  [data-area='news'] .date .mm {
    font-size: 0.85rem;
  }
}

[data-area='news'] .date .dd {
  font-size: 1.875rem;
  font-family: 'mplus-thin', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-weight: bold;
}
@media (max-width: 1459px) {
  [data-area='news'] .date .dd {
    font-size: 1.25rem;
  }
}
@media (max-width: 991px) {
  [data-area='news'] .date .dd {
    font-size: 1.125rem;
  }
}

[data-area='news'] .info .heading4 {
  font-size: 1.4375rem;
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
@media (max-width: 1459px) {
  [data-area='news'] .info .heading4 {
    font-size: 1rem;
  }
}

[data-area='news'] .info p {
  font-size: 0.9375rem;
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
@media (max-width: 1459px) {
  [data-area='news'] .info p {
    font-size: 0.875rem;
  }
}
@media (max-width: 991px) {
  [data-area='news'] .info p {
    font-size: 0.85rem;
  }
}
[data-area='news'] .info p:not(:first-child) {
  margin-top: 10px;
}

[data-page='product_detail'] .banner .title-area .heading2 {
  font-family: 'mplus-thin', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
@media (min-width: 992px) {
  [data-page='product_detail'] .banner .title-area .heading2 {
    font-size: 3vw;
  }
}
@media (min-width: 1921px) {
  [data-page='product_detail'] .banner .title-area .heading2 {
    font-size: 3.4375rem;
  }
}
@media (max-width: 991px) {
  [data-page='product_detail'] .banner .title-area .heading2 {
    font-size: 3rem;
  }
}
@media (max-width: 479px) {
  [data-page='product_detail'] .banner .title-area .heading2 {
    font-size: 2.5rem;
  }
}

[data-page='product_detail'] .banner .series-area a {
  color: #313131;
  font-size: 1.625rem;
  font-family: 'mplus-bold', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

[data-page='product_detail'] .banner .series-area .product-colors .text {
  font-size: 0.875rem;
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  color: rgba(0, 0, 0, 0.7);
}

[data-page='product_detail'] .banner .article-area .article-container .edit {
  font-size: 0.9375rem;
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

[data-page='product_detail'] .banner .select-area .sub-navbar-main_inner > .title {
  font-size: 1.625rem;
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

[data-page='product_detail'] .banner .select-area .sub-navbar-main_inner__toggle .selectVal {
  letter-spacing: 0.5px;
  font-size: 0.875rem;
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
[data-page='product_detail'] .banner .select-area .sub-navbar-main_inner__toggle .selectVal span {
  font-family: 'mplus-medium', '微軟正黑體';
}

[data-page='product_detail'] .main-nav-tabs-area .nav-tabs .nav-item .nav-link {
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  letter-spacing: 0.5px;
}

[data-page='product_detail'] .tab-pane-content .title-area .heading5 {
  font-size: 1.25rem;
  font-family: 'mplus-bold', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  color: rgba(0, 0, 0, 0.4);
}

[data-page='product_detail'] .tab-pane-content .title-area .heading4 {
  font-size: 2.8125rem;
  font-family: 'mplus-thin', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  color: rgba(0, 0, 0, 0.9);
  font-weight: normal;
}
@media (min-width: 1200px) and (max-width: 1365px) {
  [data-page='product_detail'] .tab-pane-content .title-area .heading4 {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  [data-page='product_detail'] .tab-pane-content .title-area .heading4 {
    font-size: 1.625rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='product_detail'] .tab-pane-content .title-area .heading4 {
    font-size: 1.875rem;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .tab-pane-content .title-area .heading4 {
    font-size: 1.75rem;
  }
}

[data-page='product_detail'] .tab-pane-content .intro-area {
  font-size: 0.9375rem;
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

[data-area='specification'] {
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
[data-area='specification'] table td .edit p {
  font-size: 1rem;
}
[data-area='specification'] table td p {
  font-size: 1.125rem;
}
[data-area='specification'] table [data-td='title'] .heading5 {
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 1.375rem;
  line-height: 1.65;
  letter-spacing: -0.1px;
}

.video-list-item .article {
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 1.25rem;
}

main .main-nav-tabs-area .selectVal {
  font-family: 'mplus-medium', '微軟正黑體';
}
main .main-nav-tabs-area .selectVal span {
  font-family: inherit;
}

@media (min-width: 1921px) {
  [data-page='news'] [data-area='products'] .article-area .article-title,
  [data-page='faq'] [data-area='products'] .article-area .article-title {
    font-size: 4rem;
  }
}

@media (max-width: 479px) {
  [data-page='news'] [data-area='products'] .article-area .article-title,
  [data-page='faq'] [data-area='products'] .article-area .article-title {
    font-size: 45px;
  }
}

[data-page='news'] [data-area='products'] .article-area .article-title .heading2,
[data-page='faq'] [data-area='products'] .article-area .article-title .heading2 {
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) and (max-width: 1439px) {
  [data-page='news'] [data-area='products'] .article-area .article-title .heading2,
  [data-page='faq'] [data-area='products'] .article-area .article-title .heading2 {
    font-size: 1rem;
  }
}
@media (max-width: 479px) {
  [data-page='news'] [data-area='products'] .article-area .article-title .heading2,
  [data-page='faq'] [data-area='products'] .article-area .article-title .heading2 {
    font-size: 1.125rem;
  }
}

[data-page='news'] [data-area='products'] .article-area .article-title .heading3,
[data-page='faq'] [data-area='products'] .article-area .article-title .heading3 {
  line-height: 1.1;
  color: rgba(0, 0, 0, 0.8);
}
@media (min-width: 1440px) and (max-width: 1920px) {
  [data-page='news'] [data-area='products'] .article-area .article-title .heading3,
  [data-page='faq'] [data-area='products'] .article-area .article-title .heading3 {
    font-size: 3.34vw;
  }
}
@media (min-width: 992px) and (max-width: 1439px) {
  [data-page='news'] [data-area='products'] .article-area .article-title .heading3,
  [data-page='faq'] [data-area='products'] .article-area .article-title .heading3 {
    font-size: 2.2rem;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='news'] [data-area='products'] .article-area .article-title .heading3,
  [data-page='faq'] [data-area='products'] .article-area .article-title .heading3 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  [data-page='news'] [data-area='products'] .article-area .article-title .heading3,
  [data-page='faq'] [data-area='products'] .article-area .article-title .heading3 {
    font-size: 2.4rem;
  }
}

@media (min-width: 992px) and (max-width: 1439px) {
  [data-page='news'] [data-area='products'] .article-area .article-title .info,
  [data-page='faq'] [data-area='products'] .article-area .article-title .info {
    font-size: 0.875rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  [data-page='news'] [data-area='products'] .article-area .article-title .info,
  [data-page='faq'] [data-area='products'] .article-area .article-title .info {
    font-size: 0.85rem;
  }
}

[data-page='news'] [data-area='products'] .article-info-container .article-title .heading2,
[data-page='faq'] [data-area='products'] .article-info-container .article-title .heading2 {
  font-size: 1.5rem;
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  color: rgba(0, 0, 0, 0.8);
  letter-spacing: 1px;
}
@media (max-width: 1459px) {
  [data-page='news'] [data-area='products'] .article-info-container .article-title .heading2,
  [data-page='faq'] [data-area='products'] .article-info-container .article-title .heading2 {
    font-size: 1rem;
    margin-bottom: 3px;
  }
}
@media (max-width: 767px) {
  [data-page='news'] [data-area='products'] .article-info-container .article-title .heading2,
  [data-page='faq'] [data-area='products'] .article-info-container .article-title .heading2 {
    margin-bottom: 10px;
  }
}

[data-page='news'] .main-nav-tabs-area .nav-tabs .nav-item .nav-link {
  font-size: 1rem;
}

[data-page='news'] .news_lists_slider .types,
[data-page='news'] .news_lists_slider .date {
  font-size: 1rem;
  font-family: 'mplus-bold', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  color: #636363;
}
[data-page='news'] .news_lists_slider .types .yy,
[data-page='news'] .news_lists_slider .date .yy {
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

[data-page='news'] .news_lists_slider .info .heading4 {
  line-height: 1.35;
}

@media (max-width: 1459px) {
  [data-page='news'] .news_lists_slider .types {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
  }
}

[data-page='news'] .detail_libox .lbx_content .lbx_content_inner .infos .date {
  color: rgba(0, 0, 0, 0.6);
}
[data-page='news'] .detail_libox .lbx_content .lbx_content_inner .infos .date .mm {
  font-size: 1.125rem;
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
@media (max-width: 575px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_content_inner .infos .date .mm {
    font-size: 1rem;
  }
}
[data-page='news'] .detail_libox .lbx_content .lbx_content_inner .infos .date .dd {
  font-size: 1.875rem;
  font-family: 'mplus-thin', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
@media (max-width: 575px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_content_inner .infos .date .dd {
    font-size: 1.5rem;
  }
}

[data-page='news'] .detail_libox .lbx_content .lbx_content_inner .infos .type {
  font-size: 1.0625rem;
  font-family: 'mplus-bold', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
@media (max-width: 575px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_content_inner .infos .type .type {
    font-size: 1rem;
  }
}

[data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .group .title .heading5 {
  font-size: 1.125rem;
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  letter-spacing: 0.3px;
  color: rgba(0, 0, 0, 0.4);
}

[data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .group .title .heading4 {
  font-size: 1.5rem;
  font-family: 'mplus-thin', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

[data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .need .group ul li span {
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

.menu_detail .lbx_content .main_menu .socials .txt {
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 0.875rem;
}

.menu_detail .lbx_content .main_menu .links .txt {
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 2.25rem;
}
@media (max-width: 991px) {
  .menu_detail .lbx_content .main_menu .links .txt {
    font-size: 1.625rem;
  }
}

.menu_detail .lbx_content .main_menu .tools .txt {
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 1.125rem;
}

[data-page-classify='product'] .banner.banner-normal .banner-container_inner .subtitle,
[data-page='search']
  [data-page='product_lists']
  .banner.banner-normal
  .banner-container_inner
  .subtitle {
  line-height: 22px;
  font-size: 1.375rem;
  color: rgba(0, 0, 0, 0.3) !important;
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
@media (max-width: 1024px) {
  [data-page-classify='product'] .banner.banner-normal .banner-container_inner .subtitle,
  [data-page='search']
    [data-page='product_lists']
    .banner.banner-normal
    .banner-container_inner
    .subtitle {
    font-size: 1.25rem;
  }
}
@media (max-width: 479px) {
  [data-page-classify='product'] .banner.banner-normal .banner-container_inner .subtitle,
  [data-page='search']
    [data-page='product_lists']
    .banner.banner-normal
    .banner-container_inner
    .subtitle {
    font-size: 1.125rem;
  }
}
@media (max-width: 479px) {
  [data-page-classify='product'] .banner.banner-normal .banner-container_inner .subtitle,
  [data-page='search']
    [data-page='product_lists']
    .banner.banner-normal
    .banner-container_inner
    .subtitle {
    font-size: 1.125rem;
  }
}

[data-page-classify='product'] .banner.banner-normal .banner-container_inner .title,
[data-page='search']
  [data-page='product_lists']
  .banner.banner-normal
  .banner-container_inner
  .title {
  font-weight: normal;
  letter-spacing: 0;
  font-size: 3.4375rem;
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  line-height: 1.2;
  margin-top: 10px;
}
@media (max-width: 1024px) {
  [data-page-classify='product'] .banner.banner-normal .banner-container_inner .title,
  [data-page='search']
    [data-page='product_lists']
    .banner.banner-normal
    .banner-container_inner
    .title {
    font-size: 3rem;
  }
}
@media (max-width: 575px) {
  [data-page-classify='product'] .banner.banner-normal .banner-container_inner .title,
  [data-page='search']
    [data-page='product_lists']
    .banner.banner-normal
    .banner-container_inner
    .title {
    font-size: 2rem;
  }
}

[data-page-classify='product'] .banner.banner-normal .banner-container_inner .text,
[data-page='search']
  [data-page='product_lists']
  .banner.banner-normal
  .banner-container_inner
  .text {
  font-size: 0.9375rem;
  color: rgba(0, 0, 0, 0.7);
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

[data-page-classify='product'] .banner.banner-normal .banner-container_inner .more span,
[data-page='search']
  [data-page='product_lists']
  .banner.banner-normal
  .banner-container_inner
  .more
  span {
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

[data-page='product_collection'] .banner.banner-normal .banner-container_inner {
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

[data-page='product_collection'] .content .list-item .article .heading3 {
  font-size: 2.375rem;
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
@media (max-width: 575px) {
  [data-page='product_collection'] .content .list-item .article .heading3 {
    font-size: 2rem;
  }
}

[data-page='product_collection'] .content .list-item .article > span {
  font-size: 0.9375rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  letter-spacing: 0.01rem;
}

@media (max-width: 575px) {
  [data-page='product_series'] .banner.banner-normal .banner-container_inner .title {
    font-size: 2.25rem;
  }
}

[data-page='product_function'] .banner.banner-normal .banner-container .group .text {
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

[data-page='product_function'] .lists .list-item .article .text {
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}
@media (min-width: 576px) and (max-width: 767px) {
  [data-page='product_function'] .lists .list-item .article .text {
    font-size: 1rem;
  }
}
@media (max-width: 575px) {
  [data-page='product_function'] .lists .list-item .article .text {
    font-size: 1.125rem;
  }
}

[data-area='nextMajor'] .banner.banner-normal .banner-container_inner .title {
  font-size: 1.8125rem;
  font-family: 'mplus-bold', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
@media (max-width: 575px) {
  [data-area='nextMajor'] .banner.banner-normal .banner-container_inner .title {
    font-size: 1.625rem;
  }
}

[data-area='nextMajor'] .banner.banner-normal .banner-container_inner .text {
  font-size: 0.9375rem;
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

[data-page-classify='about'] main .banner.banner-normal .main-nav-tabs-area .nav-tabs .nav-item {
  font-family: 'mplus-regular', '微軟正黑體';
  color: rgba(255, 255, 255, 0.3);
}
[data-page-classify='about']
  main
  .banner.banner-normal
  .main-nav-tabs-area
  .nav-tabs
  .nav-item:after {
  background-color: rgba(255, 255, 255, 0.2);
}
[data-page-classify='about']
  main
  .banner.banner-normal
  .main-nav-tabs-area
  .nav-tabs
  .nav-item
  .nav-link:after {
  background-color: #255885;
}
[data-page-classify='about']
  main
  .banner.banner-normal
  .main-nav-tabs-area
  .nav-tabs
  .nav-item
  .nav-link.active {
  color: #fff;
}
[data-page-classify='about']
  main
  .banner.banner-normal
  .main-nav-tabs-area
  .nav-tabs
  .nav-item
  .nav-link:hover {
  color: #fff;
}

[data-page-classify='about'] main p {
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

[data-page='search'] main .banner.banner-normal .form .input-group input {
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

[data-page='results'] .banner.banner-normal .banner-container_inner .text {
  font-size: 1.25rem;
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  color: black;
}

.socials .social-link--vimeo a {
  display: block;
}

.socials .social-link--vimeo span {
  display: block;
}
.socials .social-link--vimeo span::before {
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.5s ease-in-out;
  -o-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.socials .social-link--vimeo:hover [class*='icon'] {
  -webkit-animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
  animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}
.socials .social-link--vimeo:hover [class*='icon']::before {
  color: #00a4ed;
}

.socials .social-link--twitter a {
  display: block;
}

.socials .social-link--twitter span {
  display: block;
}
.socials .social-link--twitter span::before {
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.5s ease-in-out;
  -o-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.socials .social-link--twitter:hover [class*='icon'] {
  -webkit-animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
  animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}
.socials .social-link--twitter:hover [class*='icon']::before {
  color: #55acee;
}

.socials .social-link--tumblr a {
  display: block;
}

.socials .social-link--tumblr span {
  display: block;
}
.socials .social-link--tumblr span::before {
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.5s ease-in-out;
  -o-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.socials .social-link--tumblr:hover [class*='icon'] {
  -webkit-animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
  animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}
.socials .social-link--tumblr:hover [class*='icon']::before {
  color: #29394b;
}

.socials .social-link--facebook a {
  display: block;
}

.socials .social-link--facebook span {
  display: block;
}
.socials .social-link--facebook span::before {
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.5s ease-in-out;
  -o-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.socials .social-link--facebook:hover [class*='icon'] {
  -webkit-animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
  animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}
.socials .social-link--facebook:hover [class*='icon']::before {
  color: #334b95;
}

.socials .social-link--instagram a {
  display: block;
}

.socials .social-link--instagram span {
  display: block;
}
.socials .social-link--instagram span::before {
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.5s ease-in-out;
  -o-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.socials .social-link--instagram:hover [class*='icon'] {
  -webkit-animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
  animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}
.socials .social-link--instagram:hover [class*='icon']::before {
  color: #e8790a;
}

.socials .social-link--instagram1 a {
  display: block;
}

.socials .social-link--instagram1 span {
  display: block;
}
.socials .social-link--instagram1 span::before {
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.5s ease-in-out;
  -o-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.socials .social-link--instagram1:hover [class*='icon'] {
  -webkit-animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
  animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}
.socials .social-link--instagram1:hover [class*='icon']::before {
  color: #e8790a;
}

.socials .social-link--instagram2 a {
  display: block;
}

.socials .social-link--instagram2 span {
  display: block;
}
.socials .social-link--instagram2 span::before {
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.5s ease-in-out;
  -o-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.socials .social-link--instagram2:hover [class*='icon'] {
  -webkit-animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
  animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}
.socials .social-link--instagram2:hover [class*='icon']::before {
  color: #e8790a;
}

.socials .social-link--youtube a {
  display: block;
}

.socials .social-link--youtube span {
  display: block;
}
.socials .social-link--youtube span::before {
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.5s ease-in-out;
  -o-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.socials .social-link--youtube:hover [class*='icon'] {
  -webkit-animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
  animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}
.socials .social-link--youtube:hover [class*='icon']::before {
  color: #c5161c;
}

.socials .social-link--google-plus a {
  display: block;
}

.socials .social-link--google-plus span {
  display: block;
}
.socials .social-link--google-plus span::before {
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.5s ease-in-out;
  -o-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.socials .social-link--google-plus:hover [class*='icon'] {
  -webkit-animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
  animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}
.socials .social-link--google-plus:hover [class*='icon']::before {
  color: #b73d34;
}

.socials .social-link--linkedin a {
  display: block;
}

.socials .social-link--linkedin span {
  display: block;
}
.socials .social-link--linkedin span::before {
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.5s ease-in-out;
  -o-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.socials .social-link--linkedin:hover [class*='icon'] {
  -webkit-animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
  animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}
.socials .social-link--linkedin:hover [class*='icon']::before {
  color: #0068a6;
}

.socials .social-link--wechat a {
  display: block;
}

.socials .social-link--wechat span {
  display: block;
}
.socials .social-link--wechat span::before {
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.5s ease-in-out;
  -o-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.socials .social-link--wechat:hover [class*='icon'] {
  -webkit-animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
  animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}
.socials .social-link--wechat:hover [class*='icon']::before {
  color: #35a62e;
}

.socials .social-link--weibo a {
  display: block;
}

.socials .social-link--weibo span {
  display: block;
}
.socials .social-link--weibo span::before {
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.5s ease-in-out;
  -o-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.socials .social-link--weibo:hover [class*='icon'] {
  -webkit-animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
  animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}
.socials .social-link--weibo:hover [class*='icon']::before {
  color: #d5201a;
}

.socials,
.a2a_default_style {
  margin-left: -14px;
  margin-right: -14px;
}
.socials a,
.a2a_default_style a {
  padding-left: 14px;
  padding-right: 14px;
}
.socials .social-link--instagram [class*='icon']::before,
.a2a_default_style .social-link--instagram [class*='icon']::before {
  font-size: 18px;
}
.socials .social-link--wechat [class*='icon']::before,
.a2a_default_style .social-link--wechat [class*='icon']::before {
  font-size: 22px;
}

.share-area .socials,
.share-area .a2a_default_style {
  margin-left: -14px;
  margin-right: -14px;
}
.share-area .socials [class*='social-link--'],
.share-area .a2a_default_style [class*='social-link--'] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.share-area .socials a,
.share-area .a2a_default_style a {
  padding-left: 14px;
  padding-right: 14px;
}

.icon-play {
  position: relative;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #80f4e2;
  background: -moz-linear-gradient(45deg, #80f4e2 0%, #4ac7eb 66%, #4ac7eb 100%);
  background: -webkit-linear-gradient(45deg, #80f4e2 0%, #4ac7eb 66%, #4ac7eb 100%);
  background: -o-linear-gradient(45deg, #80f4e2 0%, #4ac7eb 66%, #4ac7eb 100%);
  background: linear-gradient(45deg, #80f4e2 0%, #4ac7eb 66%, #4ac7eb 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80f4e2', endColorstr='#4ac7eb',GradientType=1 );
  opacity: 0.7;
}
.icon-play::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #fff;
}

.btn {
  border: solid 1px #000;
  cursor: pointer;
}
.btn[class*='-btn'] {
  position: relative;
  border-radius: 0;
  padding: 0;
  margin-top: 50px;
  border-style: solid;
  border-width: 1px;
  font-size: 0;
}
.btn[class*='-btn'] .txt {
  position: relative;
  z-index: 2;
  display: inline-block;
}
.btn[class*='-btn'] .en + .cn {
  padding-left: 5px;
}
.btn[class*='-btn'] .decoration {
  position: absolute;
  left: -1px;
  top: -1px;
  width: 14px;
  height: 14px;
  -webkit-transition: width 0.3s ease 0.2s, height 0.2s ease;
  -o-transition: width 0.3s ease 0.2s, height 0.2s ease;
  transition: width 0.3s ease 0.2s, height 0.2s ease;
}
.btn[class*='-btn']:hover .decoration {
  width: calc(100% + 4px);
  height: calc(100% + 4px);
}
.btn.btn-noborder {
  border-color: transparent;
  padding: 12px 60px;
}
.btn.index-btn {
  /* ====== 長寬 ===== */
  height: 3.375em;
  line-height: 3.375em;
  font-size: 16px;
  padding: 0 60px;
}
@media screen and (max-width: 991px) {
  .btn.index-btn {
    font-size: 14px;
    padding: 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .btn.index-btn {
    font-size: 12px;
    padding: 0 40px;
  }
}
@media screen and (max-width: 575px) {
  .btn.index-btn {
    font-size: 10px;
    padding: 0 25px;
  }
}

.socials [class*='icon-'] {
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  color: rgba(0, 0, 0, 0.3);
}
.socials [class*='icon-']:hover {
  color: black;
}

[data-page='home'] .brands .btn-area .btn,
[data-page='business'] .list-item .btn {
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  -o-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
}
[data-page='home'] .brands .btn-area .btn:hover,
[data-page='business'] .list-item .btn:hover {
  background-color: #000 !important;
  color: #fff !important;
}

.more .search ~ span {
  font-size: 1.125rem;
}

.load_more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin: 30px auto 0;
}
.load_more [class*='icon-'] {
  position: relative;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
}
.load_more [class*='icon-']:before {
  display: block;
  width: 100%;
  text-align: center;
  z-index: 1;
}
.load_more [class*='icon-']:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  background-color: #619ca2;
}
.load_more .text {
  margin-left: 15px;
  font-family: 'mplus-bold', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

.btn.no-decoration {
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  -o-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn.no-decoration:hover {
  background-color: #000 !important;
  color: #fff !important;
}

.btn.has-svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.btn.has-svg [class*='icon'] {
  position: relative;
  width: 48px;
  height: 45px;
  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;
  background-image: url('../../upload/f2e/icon/frame.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.btn.has-svg [class*='icon']:before {
  content: '\e90c';
  font-family: 'icomoon';
  position: relative;
  z-index: 10;
  color: #fff;
}
.btn.has-svg [class*='icon']:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../upload/f2e/icon/frame_hover.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  content: '';
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1024px) {
  .btn.has-svg [class*='icon']:after {
    opacity: 1;
  }
}
.btn.has-svg .txt,
.btn.has-svg .text {
  padding-left: 20px;
  font-weight: bold;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 1.0625rem;
  color: rgba(68, 68, 68, 0.8);
  line-height: 1.5;
  letter-spacing: 0.005em;
  font-family: 'mplus-medium', '微軟正黑體';
}
.btn.has-svg:hover [class*='icon']:after {
  opacity: 1;
}

[data-page='product_function'] [data-area='products'] .btn.has-svg [class*='icon']:before {
  color: #000;
}

[data-page='product_function'] [data-area='products'] .btn.has-svg [class*='icon']:after {
  background: url('../../upload/f2e/icon/frame_collection_hover.png');
  background-size: contain;
}

[data-area='about_collection'] .btn.has-svg [class*='icon']:before {
  color: #fff;
}

[data-area='about_collection'] .btn.has-svg [class*='icon']:after {
  background-image: url('../../upload/f2e/icon/frame_hover.png');
  background-size: contain;
}

.gotop,
.scroll_down {
  position: absolute;
  left: 0;
  cursor: pointer;
}
.gotop [class*='icon-'],
.scroll_down [class*='icon-'] {
  margin: auto;
  width: 30px;
  height: 30px;
  color: #585858;
  background: #cccccc;
  border-radius: 50%;
  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;
}
.gotop [class*='icon-']:before,
.scroll_down [class*='icon-']:before {
  font-size: 0.875rem;
  margin-left: 1px;
}

.scroll_down {
  position: relative;
  width: 100%;
  bottom: 15px;
}
.scroll_down:hover [class*='icon-'] {
  -webkit-animation: slide-in-top-10 0.5s ease-in-out both;
  animation: slide-in-top-10 0.5s ease-in-out both;
}

.gotop {
  bottom: 0;
}
.gotop:hover [class*='icon-'] {
  -webkit-animation: slide-in-bottom-10 0.5s ease-in-out both;
  animation: slide-in-bottom-10 0.5s ease-in-out both;
}
.gotop[data-type='down'] {
  position: absolute;
  left: calc(50% - 15px);
  bottom: 10%;
}
.gotop[data-type='down']:hover {
  -webkit-animation: slide-in-top-10 0.5s ease-in both;
  animation: slide-in-top-10 0.5s ease-in both;
}

.gotop-container .gotop {
  position: relative;
}

[data-area='news'] .slick-arrow,
[data-page='story'] .slick-arrow {
  display: block;
  margin: auto;
  width: 40px;
  height: 40px;
  background: #cccccc;
  border-radius: 50%;
  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;
}
[data-area='news'] .slick-arrow:before,
[data-page='story'] .slick-arrow:before {
  font-family: 'icomoon';
  color: #000;
  font-size: 1rem;
}
[data-area='news'] .slick-arrow.slick-prev,
[data-page='story'] .slick-arrow.slick-prev {
  left: 0;
}
[data-area='news'] .slick-arrow.slick-prev:before,
[data-page='story'] .slick-arrow.slick-prev:before {
  content: '\e901';
}
[data-area='news'] .slick-arrow.slick-next,
[data-page='story'] .slick-arrow.slick-next {
  right: 0;
}
[data-area='news'] .slick-arrow.slick-next:before,
[data-page='story'] .slick-arrow.slick-next:before {
  content: '\e900';
}

#template_series {
  width: 180px;
  max-width: 100%;
  padding: 15px 20px;
}

.tippy-popper .tippy-tooltip.honeybee-theme {
  background-color: #5893d4;
  text-align: left;
  border-radius: 10px;
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
.tippy-popper .tippy-tooltip.honeybee-theme .tippy-backdrop {
  background-color: #005792;
  font-weight: bold;
  color: #fff;
}
.tippy-popper .tippy-tooltip.honeybee-theme .tippy-tooltip {
  background: transparent;
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

.tippy-popper p {
  margin-top: 3px;
}

.load_more [class*='icon-']:after {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.load_more:hover [class*='icon-']:after {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.search.icon-bg {
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
.search.icon-bg:before {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.search.icon-bg [class*='icon-'] {
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.search:hover.icon-bg:before {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.search:hover.icon-bg [class*='icon-'] {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}

.more:hover .search.icon-bg:before {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.more:hover .search.icon-bg [class*='icon-'] {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}

.main-nav-tabs-area {
  position: relative;
}
@media (max-width: 767px) {
  .main-nav-tabs-area .selectVal,
  .main-nav-tabs-area .nav-tabs {
    width: 100%;
    max-width: 100%;
  }
}
.main-nav-tabs-area .selectVal {
  position: relative;
  display: block;
  height: 48px;
  border: solid 1px #000;
  line-height: 36px;
  padding: 6px 20px;
  z-index: 20;
  background-color: #fff;
}
.main-nav-tabs-area .selectVal:after {
  content: '';
  position: absolute;
  display: block;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #000 transparent transparent transparent;
}
.main-nav-tabs-area .selectVal {
  width: 360px;
  height: auto;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  position: relative;
  border: none;
  z-index: 11;
  border-radius: 20px;
  background-color: rgba(224, 222, 227, 0.9);
  color: rgba(0, 0, 0, 0.4);
  padding: 14px 25px;
}
@media (min-width: 768px) {
  .main-nav-tabs-area .selectVal {
    display: none;
  }
}
@media (max-width: 767px) {
  .main-nav-tabs-area .selectVal {
    display: block;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
@media (max-width: 479px) {
  .main-nav-tabs-area .selectVal {
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
[data-page-name='product_lists'] .main-nav-tabs-area .selectVal {
  padding: 18px 25px;
}
section.content .main-nav-tabs-area .selectVal {
  padding-right: 55px;
}
.main-nav-tabs-area .selectVal span {
  line-height: 24px;
  display: block;
}
.main-nav-tabs-area .selectVal:before {
  content: '';
  display: block;
  width: 1px;
  height: 24px;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  right: 55px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
body[data-page='news'] .main-nav-tabs-area .selectVal:before {
  background-color: #fff;
}
.main-nav-tabs-area .selectVal:after {
  content: '';
  width: 0;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-style: solid;
  border-width: 8px 5.5px 0 5.5px;
  border-color: #5287b3 transparent transparent transparent;
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .main-nav-tabs-area .nav-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .main-nav-tabs-area .nav-tabs {
    background: #e7e7e7;
    border-top: 0;
    pointer-events: none;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 50%;
    max-height: 180px;
    opacity: 0;
    -webkit-transform: translate(-50%, 0px);
    -ms-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
    overflow-y: auto;
  }
}
.main-nav-tabs-area .nav-tabs .select-area_scroll {
  width: 100%;
}
@media (min-width: 768px) {
  .main-nav-tabs-area .nav-tabs .select-area_scroll span.tri {
    display: none;
  }
}
@media (max-width: 767px) {
  .main-nav-tabs-area .nav-tabs .select-area_scroll span.tri {
    width: 0;
    height: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-style: solid;
    border-width: 0 5.5px 8px 5.5px;
    border-color: transparent transparent #5287b3 transparent;
    position: absolute;
    bottom: 20px;
    right: calc(9% - 4px);
  }
}
@media (max-width: 479px) {
  .main-nav-tabs-area .nav-tabs .select-area_scroll span.tri {
    right: calc(5% - 3px);
  }
}
@media (min-width: 768px) {
  .main-nav-tabs-area .nav-tabs.no-active ul .nav-item + .nav-item {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .main-nav-tabs-area .nav-tabs.no-active ul .nav-item {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .main-nav-tabs-area .nav-tabs.no-active ul .nav-item:not(:first-child) .nav-link {
    margin-left: 8px;
  }
}
@media (min-width: 768px) {
  .main-nav-tabs-area .nav-tabs.no-active ul .nav-item:not(:last-child) .nav-link {
    margin-right: 8px;
  }
}
@media (min-width: 768px) {
  .main-nav-tabs-area .nav-tabs.no-active ul .nav-item:not(:last-child):after {
    right: 0;
  }
}
.main-nav-tabs-area .nav-tabs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .main-nav-tabs-area .nav-tabs .nav-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .main-nav-tabs-area .nav-tabs .nav-item + .nav-item {
    margin-left: 40px;
  }
  [data-page='product_detail'] .main-nav-tabs-area .nav-tabs .nav-item + .nav-item {
    margin-left: 14px;
  }
}
@media (min-width: 768px) {
  .main-nav-tabs-area .nav-tabs .nav-item .nav-link {
    position: relative;
    display: block;
    padding: 0 15px;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
  }
}
@media (min-width: 768px) {
  .main-nav-tabs-area .nav-tabs .nav-item .nav-link span {
    position: relative;
    white-space: nowrap;
    z-index: 1;
  }
}
@media (min-width: 768px) {
  .main-nav-tabs-area .nav-tabs .nav-item .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0%;
    height: 7px;
    background-color: #eaca59;
    -webkit-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
    transition: width 0.3s ease;
    z-index: 0;
  }
}
@media (min-width: 768px) {
  .main-nav-tabs-area .nav-tabs .nav-item .nav-link:hover,
  .main-nav-tabs-area .nav-tabs .nav-item .nav-link.active {
    color: black;
  }
}
@media (min-width: 768px) {
  .main-nav-tabs-area .nav-tabs .nav-item .nav-link:hover:after,
  .main-nav-tabs-area .nav-tabs .nav-item .nav-link.active:after {
    width: 100%;
  }
}
.main-nav-tabs-area .nav-tabs.has-divider .nav-item:not(:last-child) {
  position: relative;
}
.main-nav-tabs-area .nav-tabs.has-divider .nav-item:not(:last-child):after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 15px;
  background-color: rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .main-nav-tabs-area .nav-tabs.has-divider .nav-item:not(:last-child):after {
    display: none;
  }
}
@media (max-width: 767px) {
  .main-nav-tabs-area .nav-tabs .select-area_scroll ul,
  .main-nav-tabs-area .nav-tabs .select-area_scroll ul li {
    width: 100%;
    max-width: 100%;
  }
  .main-nav-tabs-area .nav-tabs.select-area {
    top: 0;
    overflow: hidden;
    background-color: #78a7d4;
    border-radius: 20px 20px 20px 20px;
    padding-top: 25px;
    padding-bottom: 25px;
    -ms-flex-line-pack: center;
    align-content: center;
    max-height: 250px;
  }
  .main-nav-tabs-area .nav-tabs.select-area .select-area_scroll {
    margin: auto;
    width: calc(100% - 50px);
    max-height: calc(250px - 40px);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .main-nav-tabs-area .nav-tabs.select-area .select-area_scroll {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .main-nav-tabs-area .nav-tabs.select-area .select-area_scroll li a {
    color: #fff;
  }
  .main-nav-tabs-area .nav-tabs.select-area .select-area_scroll li a.active,
  .main-nav-tabs-area .nav-tabs.select-area .select-area_scroll li a:hover {
    background-color: transparent;
    color: #000;
  }
  .main-nav-tabs-area .nav-tabs li {
    width: 100%;
    display: block;
    margin-right: 0 !important;
  }
  .main-nav-tabs-area .nav-tabs li a {
    display: block;
    padding: 10px 20px;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .main-nav-tabs-area .nav-tabs li a:after,
  .main-nav-tabs-area .nav-tabs li a p:after {
    display: none;
  }
  .main-nav-tabs-area .nav-tabs li a.active {
    background-color: #eaca59;
    color: #fff;
  }
  .main-nav-tabs-area .nav-tabs li a:hover {
    color: #eaca59;
  }
  .main-nav-tabs-area .nav-tabs li:last-child .main-nav-tabs-area .nav-tabs li.current a {
    background-color: transparent;
    color: #000;
  }
  .main-nav-tabs-area .nav-tabs.open {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    pointer-events: auto;
    z-index: 99;
  }
}
@media (max-width: 479px) {
  .main-nav-tabs-area .nav-tabs.select-area {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .main-nav-tabs-area .nav-tabs.select-area .select-area_scroll {
    width: calc(100% - 50px);
    max-width: calc(100% - 50px);
  }
}

.tab-content .tab-pane.show {
  -webkit-animation: fade-in 0.8s ease both;
  animation: fade-in 0.8s ease both;
}

.tab-content .tab-pane.always-show {
  display: block !important;
  height: auto;
}

body[data-page='news']
  [data-page='home']
  [data-area='products']
  .main-nav-tabs-area
  .nav-tabs.has-divider
  .nav-item:not(:last-child):after {
  right: 0;
}

body[data-page='news'] [data-page='home'] [data-area='products'] .main-nav-tabs-area .nav-tabs ul {
  margin-left: -7px;
}
@media (max-width: 767px) {
  body[data-page='news']
    [data-page='home']
    [data-area='products']
    .main-nav-tabs-area
    .nav-tabs
    ul {
    margin-left: 0;
  }
}

body[data-page='news']
  [data-page='home']
  [data-area='products']
  .main-nav-tabs-area
  .nav-tabs
  .nav-item
  .nav-link {
  padding: 0 10px;
  margin-left: 7px;
  margin-right: 7px;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 767px) {
  body[data-page='news']
    [data-page='home']
    [data-area='products']
    .main-nav-tabs-area
    .nav-tabs
    .nav-item
    .nav-link {
    margin-left: 0;
    margin-right: 0;
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 767px) {
  body[data-page='news'] .sub-navbar-main_inner span.tri {
    right: 25px !important;
    top: 20px;
  }
  body[data-page='news'] .sub-navbar-main_inner .select-area {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  body[data-page='news'] .sub-navbar-main_inner .select-area_scroll {
    margin: 0 !important;
    width: calc(100% - 50px) !important;
  }
  body[data-page='news'] .sub-navbar-main_inner .select-area_scroll li {
    margin-left: 0;
  }
  body[data-page='news'] .sub-navbar-main_inner .select-area_scroll li a {
    padding-left: 25px;
    padding-right: 25px;
  }
}

[data-page-classify='about'] .nav-header-links ul {
  color: #fff;
}
[data-page-classify='about'] .nav-header-links ul .back-btn {
  color: rgba(255, 255, 255, 0.4) !important;
}

@media (max-width: 767px) {
  [data-page-classify='about'] .main-nav-tabs-area {
    width: 290px;
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left;
  }
}

@media (max-width: 767px) {
  [data-page-classify='about'] .main-nav-tabs-area .selectVal {
    width: 100%;
    margin: auto;
    padding-right: 55px;
    text-align: left;
  }
}

[data-page-classify='product'] .main-nav-tabs-area .nav-tabs .nav-item + .nav-item {
  margin-left: 14px;
}
@media (max-width: 767px) {
  [data-page-classify='product'] .main-nav-tabs-area .nav-tabs .nav-item + .nav-item {
    margin-left: 0;
  }
}

[data-page-classify='product'] .banner .main-nav-tabs-area {
  width: 500px;
  max-width: 100%;
}
@media (max-width: 767px) {
  [data-page-classify='product'] .banner .main-nav-tabs-area {
    width: 290px;
  }
}

@media (max-width: 767px) {
  [data-page='product_series'] .main-nav-tabs-area .nav-tabs .select-area_scroll {
    margin: 0;
  }
}

@media (max-width: 767px) {
  [data-page='product_series'] .main-nav-tabs-area .nav-tabs .select-area_scroll span.tri {
    right: 25px;
    top: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  [data-page='product_series'] .main-nav-tabs-area .nav-tabs .nav-item,
  [data-page='product_series'] .main-nav-tabs-area .nav-tabs .nav-item + .nav-item {
    margin-left: 25px;
  }
}

@media (max-width: 767px) {
  [data-page='product_series'] .main-nav-tabs-area .nav-tabs li a {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 767px) {
  [data-page='product_function'] .main-nav-tabs-area .nav-tabs .select-area_scroll {
    margin: 0;
  }
}

@media (max-width: 767px) {
  [data-page='product_function'] .main-nav-tabs-area .nav-tabs .select-area_scroll span.tri {
    right: 25px;
    top: 20px;
  }
}

@media (max-width: 767px) {
  [data-page='product_function'] .main-nav-tabs-area .nav-tabs li a {
    padding-left: 25px;
    padding-right: 25px;
  }
}

[data-page='product_detail'] section.content .main-nav-tabs-area .nav-tabs {
  width: 100%;
}

.img-mask-container .img-mask {
  -webkit-transition: border-radius 0.6s ease-in-out;
  -o-transition: border-radius 0.6s ease-in-out;
  transition: border-radius 0.6s ease-in-out;
  -webkit-animation: fadeIn 1s both 0.4s;
  animation: fadeIn 1s both 0.4s;
}
.img-mask-container .img-mask[data-mask-type='org'] {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.img-mask-container .img-mask[data-mask-type='1'] {
  border-radius: 45% 55% 58% 42% / 51% 43% 57% 49%;
}
.img-mask-container .img-mask[data-mask-type='2'] {
  border-radius: 47% 53% 60% 40% / 42% 40% 60% 50%;
}
.img-mask-container .img-mask[data-mask-type='3'] {
  border-radius: 43% 92% 67% 66% / 58% 69% 65% 75%;
}
.img-mask-container .img-mask[data-mask-type='3']:hover {
  border-radius: 60% 52% 74% 46% / 56% 47% 62% 64%;
}
.img-mask-container .img-mask[data-mask-type='4'] {
  border-radius: 60% 52% 74% 46% / 56% 47% 62% 64%;
}
.img-mask-container .img-mask[data-mask-type='4']:hover {
  border-radius: 43% 92% 67% 66% / 58% 69% 65% 75%;
}
.img-mask-container .img-mask[data-mask-type='5'] {
  border-radius: 43% 57% 44% 56% / 34% 45% 55% 66%;
}
.img-mask-container .img-mask[data-mask-type='6'] {
  border-radius: 54% 46% 57% 43% / 64% 48% 52% 36%;
}
.img-mask-container .img-mask[data-mask-type='7'] {
  border-radius: 49% 51% 48% 52% / 42% 42% 58% 58%;
}
.img-mask-container .img-mask[data-mask-type='8'] {
  border-radius: 55% 45% 46% 54% / 51% 59% 41% 49%;
}
.img-mask-container .img-mask[data-mask-type='9'] {
  border-radius: 0% 0% 51% 87% / 6% 35% 6% 6%;
}
.img-mask-container .img-mask[data-mask-type='10'] {
  border-radius: 76% 79% 57% 99% / 71% 71% 80% 79%;
}
.img-mask-container .img-mask[data-mask-type='11'] {
  border-radius: 45% 55% 68% 32% / 45% 49% 51% 55%;
}
.img-mask-container .img-mask[data-mask-type='more'] {
  border-radius: 46% 54% 60% 40% / 50% 35% 65% 50%;
}
.img-mask-container .img-mask[data-mask-type='news'] {
  border-radius: 35% 65% 49% 51% / 36% 46% 54% 64%;
}
.img-mask-container .img-mask[data-mask-type='banner'] {
  border-radius: 50% 51% 33% 68% / 38% 57% 44% 62%;
}

.img-mask-hover-container:hover .img-mask-container .img-mask[data-mask-type] {
  border-radius: 54% 46% 57% 43% / 64% 48% 52% 36%;
}

.img-mask-hover-container:hover .img-mask-container .img-mask[data-mask-type='1'] {
  border-radius: 54% 46% 57% 43% / 64% 48% 52% 36%;
}

.img-mask-hover-container:hover .img-mask-container .img-mask[data-mask-type='2'] {
  border-radius: 60% 40% 47% 53% / 60% 50% 42% 40%;
}

.img-mask-hover-container:hover .img-mask-container .img-mask[data-mask-type='3'] {
  border-radius: 60% 52% 74% 46% / 56% 47% 62% 64%;
}

.img-mask-hover-container:hover .img-mask-container .img-mask[data-mask-type='4'] {
  border-radius: 43% 92% 67% 66% / 58% 69% 65% 75%;
}

.figure .pic {
  position: relative;
  z-index: 0;
}

.figure .article-container {
  z-index: 1;
}
.figure .article-container .article {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.figure .article-container .article .group {
  display: block;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  z-index: 5;
  pointer-events: none;
}
.figure .article-container .article .group > * {
  position: relative;
}
.figure .article-container .article .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
}
.figure .article-container .article .title .title-group {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 0 10px 0 10px;
}
.figure .article-container .article .title .heading4 {
  margin-bottom: 0;
}
@media (max-width: 479px) {
  .figure .article-container .article .title .heading4 {
    max-width: 60vw;
    margin-bottom: 10px;
    line-height: 1.25;
  }
}
.figure .article-container .article .title + .info {
  margin-top: 8px;
}
.figure .article-container .article .text {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: 15px;
}
@media (max-width: 479px) {
  .figure .article-container .article .text {
    padding-left: 0;
    margin-left: -10px;
  }
}

html:not(.mobile-mode) [data-page='product_series'] .figure > .bg {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

html:not(.mobile-mode) [data-page='product_series'] .figure .pic img {
  -webkit-transform: scale(0.975);
  -ms-transform: scale(0.975);
  transform: scale(0.975);
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  -o-transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
@media (max-width: 479px) {
  html:not(.mobile-mode) [data-page='product_series'] .figure .pic img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

html:not(.mobile-mode) [data-page='product_series'] .figure:hover > .bg {
  opacity: 1;
}

html:not(.mobile-mode) [data-page='product_series'] .figure:hover .pic img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

html.mobile-mode [data-page='product_series'] .figure > .bg {
  opacity: 1;
}

html.mobile-mode [data-page='product_series'] .figure .article-container .article > a {
  opacity: 1;
}

[data-article-position='inside'] .article-container,
[data-article-position='outside'] .article-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
[data-article-position='inside'] .article-container .article,
[data-article-position='outside'] .article-container .article {
  padding-top: 100px;
}
[data-page='product_series'] [data-article-position='inside'] .article-container .article,
[data-page='product_series'] [data-article-position='outside'] .article-container .article {
  padding-top: 70px;
}

[data-article-position='outside'],
[data-article-position='close'] {
  position: relative;
}
[data-article-position='outside'] .bg,
[data-article-position='close'] .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
[data-article-position='outside'] .pic::before,
[data-article-position='close'] .pic::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url('../img/index/products/product_light.png') 50% 50% no-repeat;
  background-size: contain;
  z-index: 0;
}
[data-article-position='outside'] .pic img,
[data-article-position='close'] .pic img {
  position: relative;
  z-index: 1;
}

@media (min-width: 1200px) and (max-width: 1459px) {
  [data-article-position='outside'][data-article-h-align='left'] .article {
    -webkit-transform: translateX(-117%) !important;
    -ms-transform: translateX(-117%) !important;
    transform: translateX(-117%) !important;
  }
  [data-article-position='outside'][data-article-h-align='right'] .article {
    -webkit-transform: translateX(117%) !important;
    -ms-transform: translateX(117%) !important;
    transform: translateX(117%) !important;
  }
}

@media (min-width: 1200px) and (max-width: 1365px) {
  [data-article-position='outside'][data-article-h-align='left'] .article {
    -webkit-transform: translateX(-102%) !important;
    -ms-transform: translateX(-102%) !important;
    transform: translateX(-102%) !important;
  }
  [data-article-position='outside'][data-article-h-align='right'] .article {
    -webkit-transform: translateX(102%) !important;
    -ms-transform: translateX(102%) !important;
    transform: translateX(102%) !important;
  }
}

.figure-box[data-article-position='close'] .pic {
  padding: 85px 0 50px 0;
}
@media all and (max-width: 700px) {
  .figure-box[data-article-position='close'] .pic {
    padding: 50px 0;
  }
}

.figure-box[data-article-position='close'] img {
  width: auto;
  height: auto;
  margin: auto;
}

[data-article-h-align='left'] .article-container {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

[data-article-h-align='center'] .article-container {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

[data-article-h-align='right'] .article-container {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

[data-article-v-align='top'] .article-container {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

[data-article-v-align='middle'] .article-container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

[data-article-v-align='bottom'] .article-container {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

[text-align='left'] {
  text-align: left;
}
[text-align='left'] .info {
  padding-left: 55px;
  padding-right: 45px;
}

[text-align='center'] {
  text-align: center;
}

[text-align='right'] {
  text-align: right;
}

[data-translateX],
[data-translateY] {
  position: relative;
}

.hr_left,
.hr_right {
  height: 4px;
  margin-top: 20px;
  border: 0;
}
@media (max-width: 479px) {
  .hr_left,
  .hr_right {
    margin-top: 15px;
  }
}

[data-line-align='left'] .hr_left {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45px;
  flex: 0 0 45px;
}
@media (max-width: 479px) {
  [data-line-align='left'] .hr_left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30px;
    flex: 0 0 30px;
  }
}

[data-line-align='left'] .hr_right {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}

[data-line-align='center'] .hr_left {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

[data-line-align='center'] .hr_right {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

[data-line-align='right'] .hr_left {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}

[data-line-align='right'] .hr_right {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45px;
  flex: 0 0 45px;
}
@media (max-width: 479px) {
  [data-line-align='right'] .hr_right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30px;
    flex: 0 0 30px;
  }
}

@media (max-width: 1199px) {
  [data-article-position='outside'][data-article-v-align='top'][data-article-h-align='left']
    .article,
  [data-article-position='outside'][data-article-v-align='middle'][data-article-h-align='left']
    .article,
  [data-article-position='outside'][data-article-v-align='bottom'][data-article-h-align='left']
    .article {
    -webkit-transform: translate(-80%, 0%) !important;
    -ms-transform: translate(-80%, 0%) !important;
    transform: translate(-80%, 0%) !important;
  }
  [data-article-position='outside'][data-article-v-align='top'][data-article-h-align='right']
    .article,
  [data-article-position='outside'][data-article-v-align='middle'][data-article-h-align='right']
    .article,
  [data-article-position='outside'][data-article-v-align='bottom'][data-article-h-align='right']
    .article {
    -webkit-transform: translate(80%, 0%) !important;
    -ms-transform: translate(80%, 0%) !important;
    transform: translate(80%, 0%) !important;
  }
  [data-article-position='outside'][data-article-v-align='top'][data-article-h-align='center']
    .article,
  [data-article-position='outside'][data-article-v-align='middle'][data-article-h-align='center']
    .article,
  [data-article-position='outside'][data-article-v-align='bottom'][data-article-h-align='center']
    .article {
    -webkit-transform: translate(0%, 0%) !important;
    -ms-transform: translate(0%, 0%) !important;
    transform: translate(0%, 0%) !important;
  }
  [data-article-position='inside'][data-article-v-align='top'][data-article-h-align='left']
    .article {
    -webkit-transform: translate(50px, 30px) !important;
    -ms-transform: translate(50px, 30px) !important;
    transform: translate(50px, 30px) !important;
  }
  [data-article-position='inside'][data-article-v-align='top'][data-article-h-align='right']
    .article {
    -webkit-transform: translate(-50px, 30px) !important;
    -ms-transform: translate(-50px, 30px) !important;
    transform: translate(-50px, 30px) !important;
  }
  [data-article-position='inside'][data-article-v-align='bottom'][data-article-h-align='left']
    .article {
    -webkit-transform: translate(50px, -30px) !important;
    -ms-transform: translate(50px, -30px) !important;
    transform: translate(50px, -30px) !important;
  }
  [data-article-position='inside'][data-article-v-align='bottom'][data-article-h-align='right']
    .article {
    -webkit-transform: translate(-50px, -30px) !important;
    -ms-transform: translate(-50px, -30px) !important;
    transform: translate(-50px, -30px) !important;
  }
  [data-article-position='inside'][data-article-v-align='middle'][data-article-h-align='left']
    .article {
    -webkit-transform: translate(50px, 0) !important;
    -ms-transform: translate(50px, 0) !important;
    transform: translate(50px, 0) !important;
  }
  [data-article-position='inside'][data-article-v-align='middle'][data-article-h-align='right']
    .article {
    -webkit-transform: translate(-50px, 0) !important;
    -ms-transform: translate(-50px, 0) !important;
    transform: translate(-50px, 0) !important;
  }
  [data-article-position='inside'][data-article-v-align='middle'][data-article-h-align='center']
    .article {
    -webkit-transform: translate(0, 0) !important;
    -ms-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
  }
}

[data-page='news'] [data-area='products'] .fixed_Wrapper,
[data-page='faq'] [data-area='products'] .fixed_Wrapper {
  min-height: 80vh;
}

@media (max-width: 991px) {
  [data-page='news'] [data-area='products'] .title-container .article-area,
  [data-page='faq'] [data-area='products'] .title-container .article-area {
    padding-left: 0;
    padding-right: 0;
  }
}

.fixed_Wrapper {
  top: 0;
  left: 0;
}

[data-page='product_series'] main .banner.banner-normal,
[data-page='product_function'] main .banner.banner-normal,
[data-page='product_lists'] main .banner.banner-normal,
[data-page='product_detail'] main .banner.banner-normal {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 767px) {
  [data-page='product_series'] main .banner.banner-normal,
  [data-page='product_function'] main .banner.banner-normal,
  [data-page='product_lists'] main .banner.banner-normal,
  [data-page='product_detail'] main .banner.banner-normal {
    margin-left: 0;
    margin-right: 0;
    padding-top: 140px;
  }
}
[data-page='product_series'] main .banner.banner-normal .banner-container,
[data-page='product_function'] main .banner.banner-normal .banner-container,
[data-page='product_lists'] main .banner.banner-normal .banner-container,
[data-page='product_detail'] main .banner.banner-normal .banner-container {
  position: relative;
  width: 100%;
  max-width: 575px;
}
@media (max-width: 900px) {
  [data-page='product_series'] main .banner.banner-normal .banner-container,
  [data-page='product_function'] main .banner.banner-normal .banner-container,
  [data-page='product_lists'] main .banner.banner-normal .banner-container,
  [data-page='product_detail'] main .banner.banner-normal .banner-container {
    max-width: none;
  }
}
[data-page='product_series'] main .banner.banner-normal .banner-container_bg,
[data-page='product_function'] main .banner.banner-normal .banner-container_bg,
[data-page='product_lists'] main .banner.banner-normal .banner-container_bg,
[data-page='product_detail'] main .banner.banner-normal .banner-container_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
[data-page='product_series'] main .banner.banner-normal .banner-container_bg .img,
[data-page='product_function'] main .banner.banner-normal .banner-container_bg .img,
[data-page='product_lists'] main .banner.banner-normal .banner-container_bg .img,
[data-page='product_detail'] main .banner.banner-normal .banner-container_bg .img {
  width: 100%;
  height: 100%;
}
[data-page='product_series'] main .banner.banner-normal .banner-container_bg.sub,
[data-page='product_function'] main .banner.banner-normal .banner-container_bg.sub,
[data-page='product_lists'] main .banner.banner-normal .banner-container_bg.sub,
[data-page='product_detail'] main .banner.banner-normal .banner-container_bg.sub {
  width: 100%;
  padding: 0;
}
[data-page='product_series'] main .banner.banner-normal .banner-container_bg.sub .img,
[data-page='product_function'] main .banner.banner-normal .banner-container_bg.sub .img,
[data-page='product_lists'] main .banner.banner-normal .banner-container_bg.sub .img,
[data-page='product_detail'] main .banner.banner-normal .banner-container_bg.sub .img {
  width: 100%;
  border-radius: 74% 26% 0% 0% / 13% 6% 59% 0%;
}
@media (min-width: 768px) {
  [data-page='product_series'] main .banner.banner-normal .banner-container_bg.sub .img,
  [data-page='product_function'] main .banner.banner-normal .banner-container_bg.sub .img,
  [data-page='product_lists'] main .banner.banner-normal .banner-container_bg.sub .img,
  [data-page='product_detail'] main .banner.banner-normal .banner-container_bg.sub .img {
    height: 0;
    padding-bottom: 60%;
  }
}
@media (min-width: 992px) {
  [data-page='product_series'] main .banner.banner-normal .banner-container_bg.sub .img,
  [data-page='product_function'] main .banner.banner-normal .banner-container_bg.sub .img,
  [data-page='product_lists'] main .banner.banner-normal .banner-container_bg.sub .img,
  [data-page='product_detail'] main .banner.banner-normal .banner-container_bg.sub .img {
    height: 0;
    padding-bottom: 50%;
  }
}
@media (min-width: 1200px) {
  [data-page='product_series'] main .banner.banner-normal .banner-container_bg.sub .img,
  [data-page='product_function'] main .banner.banner-normal .banner-container_bg.sub .img,
  [data-page='product_lists'] main .banner.banner-normal .banner-container_bg.sub .img,
  [data-page='product_detail'] main .banner.banner-normal .banner-container_bg.sub .img {
    height: 0;
    padding-bottom: 40%;
  }
}
@media (min-width: 1365px) {
  [data-page='product_series'] main .banner.banner-normal .banner-container_bg.sub .img,
  [data-page='product_function'] main .banner.banner-normal .banner-container_bg.sub .img,
  [data-page='product_lists'] main .banner.banner-normal .banner-container_bg.sub .img,
  [data-page='product_detail'] main .banner.banner-normal .banner-container_bg.sub .img {
    height: 0;
    padding-bottom: 36%;
  }
}
@media (min-width: 1459px) {
  [data-page='product_series'] main .banner.banner-normal .banner-container_bg.sub .img,
  [data-page='product_function'] main .banner.banner-normal .banner-container_bg.sub .img,
  [data-page='product_lists'] main .banner.banner-normal .banner-container_bg.sub .img,
  [data-page='product_detail'] main .banner.banner-normal .banner-container_bg.sub .img {
    height: 0;
    padding-bottom: 34%;
  }
}
@media (max-width: 575px) {
  [data-page='product_series'] main .banner.banner-normal .banner-container_bg.sub .img,
  [data-page='product_function'] main .banner.banner-normal .banner-container_bg.sub .img,
  [data-page='product_lists'] main .banner.banner-normal .banner-container_bg.sub .img,
  [data-page='product_detail'] main .banner.banner-normal .banner-container_bg.sub .img {
    border-radius: 90% 30% 0% 0% / 20% 3% 0% 0%;
  }
}
[data-page='product_series'] main .banner.banner-normal .banner-container_bg.sub .img img,
[data-page='product_function'] main .banner.banner-normal .banner-container_bg.sub .img img,
[data-page='product_lists'] main .banner.banner-normal .banner-container_bg.sub .img img,
[data-page='product_detail'] main .banner.banner-normal .banner-container_bg.sub .img img {
  width: 100%;
  height: auto;
}
[data-page='product_series'] main .banner.banner-normal .banner-container_inner,
[data-page='product_function'] main .banner.banner-normal .banner-container_inner,
[data-page='product_lists'] main .banner.banner-normal .banner-container_inner,
[data-page='product_detail'] main .banner.banner-normal .banner-container_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
[data-page='product_series'] main .banner.banner-normal .banner-container_inner .subtitle + .title,
[data-page='product_function']
  main
  .banner.banner-normal
  .banner-container_inner
  .subtitle
  + .title,
[data-page='product_lists'] main .banner.banner-normal .banner-container_inner .subtitle + .title,
[data-page='product_detail'] main .banner.banner-normal .banner-container_inner .subtitle + .title {
  margin-top: 15px;
}
@media (max-width: 479px) {
  [data-page='product_series']
    main
    .banner.banner-normal
    .banner-container_inner
    .subtitle
    + .title,
  [data-page='product_function']
    main
    .banner.banner-normal
    .banner-container_inner
    .subtitle
    + .title,
  [data-page='product_lists'] main .banner.banner-normal .banner-container_inner .subtitle + .title,
  [data-page='product_detail']
    main
    .banner.banner-normal
    .banner-container_inner
    .subtitle
    + .title {
    margin-top: 10px;
  }
}
[data-page='product_series'] main .banner.banner-normal .banner-container_inner.sub,
[data-page='product_function'] main .banner.banner-normal .banner-container_inner.sub,
[data-page='product_lists'] main .banner.banner-normal .banner-container_inner.sub,
[data-page='product_detail'] main .banner.banner-normal .banner-container_inner.sub {
  position: absolute;
  top: 10%;
  right: 10%;
}
@media (max-width: 479px) {
  [data-page='product_series'] main .banner.banner-normal .banner-container_inner.sub,
  [data-page='product_function'] main .banner.banner-normal .banner-container_inner.sub,
  [data-page='product_lists'] main .banner.banner-normal .banner-container_inner.sub,
  [data-page='product_detail'] main .banner.banner-normal .banner-container_inner.sub {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
[data-page='product_series'] main .banner.banner-normal .banner-container_inner.sub .subtitle,
[data-page='product_function'] main .banner.banner-normal .banner-container_inner.sub .subtitle,
[data-page='product_lists'] main .banner.banner-normal .banner-container_inner.sub .subtitle,
[data-page='product_detail'] main .banner.banner-normal .banner-container_inner.sub .subtitle {
  width: 50%;
}
[data-page='product_series'] main .banner.banner-normal .banner-container_inner .text,
[data-page='product_function'] main .banner.banner-normal .banner-container_inner .text,
[data-page='product_lists'] main .banner.banner-normal .banner-container_inner .text,
[data-page='product_detail'] main .banner.banner-normal .banner-container_inner .text {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
  max-width: 420px;
  color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 900px) {
  [data-page='product_series'] main .banner.banner-normal .banner-container_inner .text,
  [data-page='product_function'] main .banner.banner-normal .banner-container_inner .text,
  [data-page='product_lists'] main .banner.banner-normal .banner-container_inner .text,
  [data-page='product_detail'] main .banner.banner-normal .banner-container_inner .text {
    max-width: none;
  }
}
[data-page='product_series'] main .banner.banner-normal .banner-container_inner .more,
[data-page='product_function'] main .banner.banner-normal .banner-container_inner .more,
[data-page='product_lists'] main .banner.banner-normal .banner-container_inner .more,
[data-page='product_detail'] main .banner.banner-normal .banner-container_inner .more {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  color: #000;
}
[data-page='product_series'] main .banner.banner-normal .banner-container_inner .more span,
[data-page='product_function'] main .banner.banner-normal .banner-container_inner .more span,
[data-page='product_lists'] main .banner.banner-normal .banner-container_inner .more span,
[data-page='product_detail'] main .banner.banner-normal .banner-container_inner .more span {
  padding: 0 10px;
}
[data-page='product_series'] main .banner.banner-normal p + p,
[data-page='product_function'] main .banner.banner-normal p + p,
[data-page='product_lists'] main .banner.banner-normal p + p,
[data-page='product_detail'] main .banner.banner-normal p + p {
  margin-top: 0;
}
[data-page='product_series'] main .banner.banner-normal .article-container .heading2,
[data-page='product_function'] main .banner.banner-normal .article-container .heading2,
[data-page='product_lists'] main .banner.banner-normal .article-container .heading2,
[data-page='product_detail'] main .banner.banner-normal .article-container .heading2 {
  color: rgba(0, 0, 0, 0.6);
}

body[data-page='product_series'] .figure .article-container .article .title .text {
  width: 315px;
  max-width: 100%;
  padding-left: 55px;
}

.lbx_box .nicescroll-rails {
  background: transparent !important;
}
.lbx_box .nicescroll-rails .nicescroll-cursors {
  border: 2px solid #000 !important;
}

.hide_lightbox .nicescroll-rails {
  right: 0;
}

.detail_libox .nicescroll-rails {
  right: 0;
}

.detail_libox[data-detail='center'] .nicescroll-rails .nicescroll-cursors {
  border: 2px solid #ececec !important;
}

[data-page-classify='about'] main .nicescroll-rails-vr,
[data-page='product_series'] main .nicescroll-rails-vr,
[data-page='product_function'] main .nicescroll-rails-vr,
[data-page='product_lists'] main .nicescroll-rails-vr,
[data-page='product_detail'] main .nicescroll-rails-vr,
[data-page='news'] main .nicescroll-rails-vr,
[data-page='contact'] main .nicescroll-rails-vr {
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  width: 1px !important;
  opacity: 1;
  background: #9fc1e1 !important;
  cursor: default;
  position: fixed !important;
  z-index: auto;
  right: 0;
}

[data-page-classify='about'] main .nicescroll-cursors,
[data-page='product_series'] main .nicescroll-cursors,
[data-page='product_function'] main .nicescroll-cursors,
[data-page='product_lists'] main .nicescroll-cursors,
[data-page='product_detail'] main .nicescroll-cursors,
[data-page='news'] main .nicescroll-cursors,
[data-page='contact'] main .nicescroll-cursors {
  position: relative !important;
  right: -2px !important;
}

.forms-container {
  width: 1100px;
  max-width: 100%;
  padding-top: 120px;
  padding-bottom: 80px;
  background-color: rgba(250, 240, 150, 0.6);
}
.forms-container textarea {
  resize: none;
}
.forms-container .form-control[readonly] {
  background-color: #fff;
}
.forms-container .icon_imgReload img {
  width: 25px;
  height: 25px;
}
.forms-container .icon-check img {
  width: 25px;
  height: 25px;
}
.forms-container .input-only-container {
  position: relative;
}
.forms-container .input-only-container .input-only-group {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.forms-container .input-only-container .input-only-group .input-only {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.forms-container .form-row {
  margin-left: -10px;
  margin-right: -10px;
}
.forms-container .form-row > [class*='col-'] {
  padding-left: 10px;
  padding-right: 10px;
}
.forms-container .form-group {
  margin-bottom: 10px;
}
.forms-container .form {
  width: 700px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.forms-container .select-container .sub-navbar-main_inner {
  margin: 0;
}
.forms-container .select-container .sub-navbar-main_inner__toggle {
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.forms-container .select-container .sub-navbar-main_inner__toggle .btn {
  width: 100%;
}
.forms-container .form-group .form-control-group {
  position: relative;
}
.forms-container .form-group-file .form-control-group .file-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.forms-container .form-group-file .form-control-group .file-group label {
  margin-left: auto;
  cursor: pointer;
}
.forms-container .form-group-verification .form-control-group .verification-group {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
.forms-container
  .form-group-verification
  .form-control-group
  .verification-group
  .verification-img {
  border: solid 1px #000;
  width: 65px;
  height: 25px;
}
.forms-container .form-group-buttons {
  padding-top: 65px;
  padding-bottom: 65px;
}
.forms-container .form-group-buttons .form-control-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.forms-container .form-group-buttons .form-control-group .divider {
  width: 1px;
  height: 33px;
  background-color: #000;
  margin-left: 20px;
  margin-right: 20px;
}
.forms-container .form-group-buttons .form-control-group .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: transparent;
  border: 0;
  box-shdow: none;
}
.forms-container .form-group-buttons .form-control-group .btn .icon {
  position: relative;
  width: 48px;
  height: 48px;
  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;
  margin-right: 12px;
}
.forms-container .form-group-buttons .form-control-group .btn .icon .icon-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  background-color: #757575;
  -webkit-transition: background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  z-index: 0;
}
.forms-container .form-group-buttons .form-control-group .btn .icon .icon-bg + [class*='icon_'],
.forms-container .form-group-buttons .form-control-group .btn .icon .icon-bg + [class*='icon-'] {
  position: relative;
  z-index: 1;
}
.forms-container .form-group-buttons .form-control-group .btn:hover .icon .icon-bg {
  background-color: #569198;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.was-validated .form-control:invalid,
.was-validated .custom-select:invalid {
  color: #f00;
}
.was-validated .form-control:invalid::-webkit-input-placeholder,
.was-validated .custom-select:invalid::-webkit-input-placeholder {
  color: #f00;
}
.was-validated .form-control:invalid:-ms-input-placeholder,
.was-validated .custom-select:invalid:-ms-input-placeholder {
  color: #f00;
}
.was-validated .form-control:invalid::-ms-input-placeholder,
.was-validated .custom-select:invalid::-ms-input-placeholder {
  color: #f00;
}
.was-validated .form-control:invalid::placeholder,
.was-validated .custom-select:invalid::placeholder {
  color: #f00;
}

/* common css */
.position-fixed {
  position: fixed;
}

*:focus {
  outline: none !important;
}

.form-control:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.no_scrollbar {
  overflow: hidden;
  -webkit-animation: delay-hidden 1s ease-in-out both;
  animation: delay-hidden 1s ease-in-out both;
}

.nicescroll-rails {
  z-index: 1000 !important;
}

@-webkit-keyframes delay-hidden {
  from {
    overflow: auto;
  }
  to {
    overflow: hidden;
  }
}

@keyframes delay-hidden {
  from {
    overflow: auto;
  }
  to {
    overflow: hidden;
  }
}

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

.absolute-full {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.lists-page main {
  margin-top: 100px;
}
@media screen and (max-width: 1199px) {
  .lists-page main {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .lists-page main {
    margin-top: 60px;
  }
}
@media screen and (max-width: 575px) {
  .lists-page main {
    margin-top: 50px;
  }
}

.select [preset] {
  cursor: pointer;
  pointer-events: none;
  color: rgba(0, 0, 0, 0.3) !important;
}

main {
  z-index: 1;
}

footer {
  z-index: 0;
}

html[class*='Windows'] body {
  -webkit-font-smoothing: antialiased;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

body {
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
}
body:not(#home) main {
  z-index: 0;
}
body:not(#home) footer {
  z-index: 1;
}
@media (min-width: 768px) {
  body:not(#home) footer {
    margin-top: -45px;
  }
}
@media (max-width: 900px) {
  body:not(#home) footer {
    z-index: 2;
  }
}

main,
header,
footer {
  position: relative;
  width: 100%;
}

main {
  overflow: hidden;
}

img {
  max-width: 100%;
}

.btn.no-border {
  border: 0;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mr-auto {
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.position-fixed {
  position: fixed;
}
.position-fixed-top {
  top: 0;
}

.position-absolute {
  position: absolute;
}
.position-absolute-top {
  top: 0;
}

/* === 物件 水平對齊 (Margin法) === */
[data-h-align-margin='left'] {
  margin-right: auto;
}

[data-h-align-margin='center'] {
  margin-left: auto;
  margin-right: auto;
}

[data-h-align-margin='right'] {
  margin-left: auto;
}

/* === 文字 水平對齊 === */
[text-align='left'] {
  text-align: left;
}

[text-align='center'] {
  text-align: center;
}

[text-align='right'] {
  text-align: right;
}

/* === 物件 垂直對齊 (translate法) === */
[data-margin-top='yes'] {
  margin-top: -250px !important;
}

/* === 背景 === */
.bg.absolute-bg {
  position: absolute;
}

/* === tabs === */
.tab-content {
  position: relative;
}

.tab-content > .tab-pane,
.pill-content > .pill-pane {
  display: block;
  height: 0;
  overflow-y: hidden;
}

.tab-content > .show,
.pill-content > .show {
  height: auto;
}

.slick-slider-side[data-dots-align='left'] .slick-dots {
  right: auto;
  left: -54px;
}

.slick-slider-side[data-dots-align='right'] .slick-dots {
  right: -54px;
  left: auto;
}

.slick-slider-side[data-dots-align='bottom'] .slick-dots {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  top: auto;
  bottom: auto;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  margin-top: 0;
}

.slick-slider-side .slick-dots {
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: auto;
  margin-top: -10px;
}
.slick-slider-side .slick-dots li {
  display: block;
  margin: 0;
  width: auto;
  height: auto;
}
.slick-slider-side .slick-dots li button {
  padding: 15px;
  width: auto;
  height: auto;
  margin: auto;
}
.slick-slider-side .slick-dots li button:before {
  content: '';
  position: relative;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #000;
}

.types .yy + .type::before,
.date .yy + .type::before {
  content: '‧';
  display: inline;
  font-size: 28px;
  margin: 0 5px;
  vertical-align: middle;
}

.types .dd + .yy,
.date .dd + .yy {
  margin-left: 15px;
}

.types {
  margin-bottom: 23px;
}

.date + .info {
  margin-top: 23px;
}

/* === Banner 裝飾 === */
main .decorate-line-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 33%;
  z-index: 1;
  pointer-events: none;
}
main .decorate-line-container .decorate-line {
  width: 810px;
  max-width: 45vw;
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-80%, -20%);
  -ms-transform: translate(-80%, -20%);
  transform: translate(-80%, -20%);
}
main .decorate-line-container .decorate-line svg .st0,
main .decorate-line-container .decorate-line svg .st1,
main .decorate-line-container .decorate-line svg .st2,
main .decorate-line-container .decorate-line svg .st3,
main .decorate-line-container .decorate-line svg .st4,
main .decorate-line-container .decorate-line svg .st5 {
  fill: none;
  stroke-dasharray: 0, 20;
}
main .decorate-line-container .decorate-line svg .st0,
main .decorate-line-container .decorate-line svg .st1,
main .decorate-line-container .decorate-line svg .st2,
main .decorate-line-container .decorate-line svg .st3,
main .decorate-line-container .decorate-line svg .st4 {
  stroke: #5d999d;
  stroke-width: 0.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
main .decorate-line-container .decorate-line svg .st0 {
  -webkit-animation: svg_st0 0.8s ease-in-out both;
  animation: svg_st0 0.8s ease-in-out both;
}
main .decorate-line-container .decorate-line svg .st1 {
  -webkit-animation: svg_st1 0.8s ease-in-out 0.6s both;
  animation: svg_st1 0.8s ease-in-out 0.6s both;
}
main .decorate-line-container .decorate-line svg .st2 {
  -webkit-animation: svg_st2 0.8s ease-in-out 1s both;
  animation: svg_st2 0.8s ease-in-out 1s both;
}
main .decorate-line-container .decorate-line svg .st3 {
  -webkit-animation: svg_st3 0.8s ease-in-out 1.5s both;
  animation: svg_st3 0.8s ease-in-out 1.5s both;
}

@-webkit-keyframes svg_st0 {
  0% {
    stroke-dasharray: 0, 20;
  }
  100% {
    stroke-dasharray: 1.997, 1.997;
  }
}

@keyframes svg_st0 {
  0% {
    stroke-dasharray: 0, 20;
  }
  100% {
    stroke-dasharray: 1.997, 1.997;
  }
}

@-webkit-keyframes svg_st1 {
  0% {
    stroke-dasharray: 0, 20;
  }
  100% {
    stroke-dasharray: 1.985, 1.985;
  }
}

@keyframes svg_st1 {
  0% {
    stroke-dasharray: 0, 20;
  }
  100% {
    stroke-dasharray: 1.985, 1.985;
  }
}

@-webkit-keyframes svg_st2 {
  0% {
    stroke-dasharray: 0, 20;
  }
  100% {
    stroke-dasharray: 2.012, 2.012;
  }
}

@keyframes svg_st2 {
  0% {
    stroke-dasharray: 0, 20;
  }
  100% {
    stroke-dasharray: 2.012, 2.012;
  }
}

@-webkit-keyframes svg_st3 {
  0% {
    stroke-dasharray: 0, 20;
  }
  100% {
    stroke-dasharray: 1.991, 1.991;
  }
}

@keyframes svg_st3 {
  0% {
    stroke-dasharray: 0, 20;
  }
  100% {
    stroke-dasharray: 1.991, 1.991;
  }
}
main .decorate-line-container .decorate-animal {
  width: 145px;
  max-width: 10vw;
  position: relative;
  top: 50%;
  left: 30%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
main .decorate-line-container .decorate-animal svg,
main .decorate-line-container .decorate-animal img {
  -webkit-animation: bounce-animal 3s ease-in-out both;
  animation: bounce-animal 3s ease-in-out both;
}
main .decorate-line-container .decorate-animal .st0 {
  opacity: 0.5;
  fill: none;
  stroke: #97b9bc;
  stroke-width: 0.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 767px) {
  main .decorate-line-container {
    display: none;
  }
}

[data-page-classify='product'] main .decorate-line-container[data-dec-width='full'] {
  width: 100%;
}
[data-page-classify='product'] main .decorate-line-container[data-dec-width='full'] .decorate-line {
  width: 100%;
  max-width: 100%;
  left: 0;
  top: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

[data-page-classify='product']
  main
  .decorate-line-container[data-dec-width='auto']
  .decorate-animal {
  width: auto;
  max-width: none;
  top: auto;
  left: auto;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

[data-page-classify='product'] main .decorate-line-container[data-dec-align='right'] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

[data-page-classify='product'] main [data-area='recommend'] .decorate-line-container {
  width: 100%;
  top: -110px;
}
@media (max-width: 1365px) {
  [data-page-classify='product'] main [data-area='recommend'] .decorate-line-container {
    top: -80px;
  }
}
@media (max-width: 1199px) {
  [data-page-classify='product'] main [data-area='recommend'] .decorate-line-container {
    top: -50px;
  }
}
@media (max-width: 991px) {
  [data-page-classify='product'] main [data-area='recommend'] .decorate-line-container {
    top: -25px;
  }
}
@media (max-width: 767px) {
  [data-page-classify='product'] main [data-area='recommend'] .decorate-line-container {
    display: block;
    top: 0;
  }
}

@-webkit-keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes navToggler1 {
  0% {
    left: 0;
    top: 0;
    height: 5px;
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
  }
  50% {
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    left: calc(100% + 5px);
    height: 30px;
  }
  100% {
    left: 0;
    top: 0;
    height: 5px;
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
  }
}

@keyframes navToggler1 {
  0% {
    left: 0;
    top: 0;
    height: 5px;
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
  }
  50% {
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    left: calc(100% + 5px);
    height: 30px;
  }
  100% {
    left: 0;
    top: 0;
    height: 5px;
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
  }
}

.navbar {
  width: 100%;
  z-index: 100;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  padding: 25px 0 0;
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
@media (max-width: 1279px) {
  .navbar {
    padding: 25px 0 0;
  }
}
@media (max-width: 575px) {
  .navbar {
    padding: 15px 0 0;
  }
}
.navbar.position-fixed {
  position: absolute;
}
.navbar.position-fixed .nav-header {
  background-color: #fff !important;
  position: fixed;
  top: 0;
  bottom: auto;
  -webkit-transform: translateY(-101%);
  -ms-transform: translateY(-101%);
  transform: translateY(-101%);
}
.navbar.position-fixed .nav-header ul {
  color: #000 !important;
}
.navbar.position-fixed .nav-header ul .back-btn {
  color: rgba(0, 0, 0, 0.5) !important;
}
.navbar.position-fixed.up .nav-header {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: background-color 0.4s ease, -webkit-transform 0.4s ease;
  transition: background-color 0.4s ease, -webkit-transform 0.4s ease;
  -o-transition: background-color 0.4s ease, transform 0.4s ease;
  transition: background-color 0.4s ease, transform 0.4s ease;
  transition: background-color 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}
.navbar .nav-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 7vw;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: background-color 0.4s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.4s ease, -webkit-transform 0.2s ease;
  -o-transition: background-color 0.4s ease, transform 0.2s ease;
  transition: background-color 0.4s ease, transform 0.2s ease;
  transition: background-color 0.4s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media (min-width: 1921px) {
  .navbar .nav-header {
    padding: 0 130px;
  }
}
@media (max-width: 1199px) {
  .navbar .nav-header {
    padding-left: 6vw;
    padding-right: 4vw;
  }
}
@media (max-width: 575px) {
  .navbar .nav-header {
    padding-left: 8vw;
    padding-right: 6.5vw;
  }
}
.navbar .nav-header .nav-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .navbar .nav-header .nav-logo {
    margin-left: 20px;
  }
}
@media screen and (max-width: 575px) {
  .navbar .nav-header .nav-logo {
    margin-left: 15px;
  }
}
@media screen and (max-width: 479px) {
  .navbar .nav-header .nav-logo {
    margin-left: 0;
  }
}
@media screen and (max-width: 375px) {
  .navbar .nav-header .nav-logo {
    max-width: 70px;
  }
}
.navbar .nav-header .nav-logo img {
  max-width: 100%;
}
@media screen and (max-width: 1459px) {
  .navbar .nav-header .nav-logo img {
    width: 75px;
  }
}
.navbar .nav-header .nav-header-links {
  position: relative;
}
@media screen and (min-width: 768px) {
  .navbar .nav-header .nav-header-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.navbar .nav-header .nav-header-links .group {
  position: relative;
  margin-top: 2px;
}
body[data-page='home'] .navbar .nav-header .nav-header-links .group {
  width: auto !important;
  height: auto !important;
}
.navbar .nav-header .nav-header-links ul {
  height: 100%;
  font-size: 0;
  padding-left: 10px;
  padding-right: 10px;
}
.navbar .nav-header .nav-header-links ul li {
  height: 100%;
}
.navbar .nav-header .nav-header-links ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.navbar .nav-header .nav-header-links ul li a span {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-transition: letter-spacing 0.3s ease;
  -o-transition: letter-spacing 0.3s ease;
  transition: letter-spacing 0.3s ease;
}
@media screen and (max-width: 1199px) {
  .navbar .nav-header .nav-header-links ul li a span {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 991px) {
  .navbar .nav-header .nav-header-links ul li a span {
    padding-left: 7px;
    padding-right: 7px;
  }
}
@media (max-width: 991px) {
  .navbar .nav-header .nav-header-links ul li a:not(.back-btn) {
    display: none;
  }
}
.navbar .nav-header .nav-header-links ul li a:not(.back-btn) [class*='icon-'] {
  margin-right: 0;
  font-size: 20px;
  margin-top: -7px;
  padding-left: 15px;
  padding-right: 0;
}
.navbar .nav-header .nav-header-links ul li a:not(.back-btn) [class*='icon-'] + span {
  padding-left: 5px;
}
@media (max-width: 991px) {
  .navbar .nav-header .nav-header-links ul li a:not(.back-btn) [class*='icon-'] {
    padding-left: 8px;
  }
}
.navbar .nav-header .nav-header-links ul li a:hover:not(.back-btn) {
  color: #559198;
}
.navbar .nav-header .nav-header-links ul li a:hover:not(.back-btn) span {
  letter-spacing: 2px;
}
.navbar .nav-header .nav-header-links ul li a:hover:not(.back-btn) [class*='icon-'] + .txt {
  letter-spacing: normal;
}
@media screen and (max-width: 991px) {
  .navbar .nav-header .nav-header-links.nav-header-right-links {
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .navbar .nav-header .nav-header-links.nav-header-right-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .navbar .nav-header .nav-header-links.nav-header-right-links ul {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}
.navbar .nav-header .nav-header-links.nav-header-right-links ul .hr-verticle {
  display: inline-block;
  width: 2px;
  height: 23px;
  background-color: #1ab57f;
}
@media screen and (max-width: 479px) {
  .navbar .nav-header .nav-header-links.nav-header-right-links .group .link-active-value .nav-link {
    font-size: 0.875rem;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.navbar .nav-header .nav-header-links .back-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: rgba(0, 0, 0, 0.5);
  padding-right: 20px;
  opacity: 1;
  -webkit-transition: opacity 0.6s ease 0.3s;
  -o-transition: opacity 0.6s ease 0.3s;
  transition: opacity 0.6s ease 0.3s;
  position: relative;
}
@media screen and (max-width: 479px) {
  .navbar .nav-header .nav-header-links .back-btn {
    padding-right: 10px;
    font-size: 0.875rem;
  }
}
.navbar .nav-header .nav-header-links .back-btn span {
  display: block !important;
}
.navbar .nav-header .nav-header-links .back-btn [class*='icon'] {
  font-weight: bold;
  padding-right: 10px;
  margin-top: -3px;
}
@media (max-width: 375px) {
  .navbar .nav-header .nav-header-links .back-btn [class*='icon'] {
    padding-right: 5px;
  }
}
.navbar .nav-header .nav-header-links .back-btn [class*='icon'] body[data-page-classify='about'] {
  margin-top: -1px;
}
.navbar .nav-header .nav-header-links .back-btn [class*='icon']:before {
  color: #888;
}
.navbar .nav-header .nav-header-links .back-btn .txt {
  margin-top: 4px;
  padding-left: 0;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .navbar .nav-header .nav-header-links .back-btn .txt {
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .navbar .nav-header .nav-header-links .back-btn .txt {
    padding-right: 0px;
  }
}
.navbar .nav-header .nav-header-links .back-btn:after {
  content: '';
  position: absolute;
  right: 20px;
  top: calc(50% - 1px);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 3px;
  height: 20px;
  top: 50%;
  background-color: #609ca2;
}
@media (max-width: 991px) {
  .navbar .nav-header .nav-header-links .back-btn:after {
    display: none;
  }
}
@media (max-width: 1199px) {
  .navbar .nav-header .nav-header-links .back-btn:after {
    right: 10px;
  }
}
.navbar .nav-header .nav-header-links .back-btn:hover [class*='icon-'] {
  -webkit-animation: slide-in-right 0.6s ease-in-out both;
  animation: slide-in-right 0.6s ease-in-out both;
}
.navbar .nav-header .nav-header-links .back-btn .nav-link,
.navbar .nav-header .nav-header-links .link-active-value .nav-link {
  padding-left: 20px;
  padding-right: 20px;
}
.navbar .nav-header .nav-header-links .link-active-value {
  display: block;
  pointer-events: auto;
  opacity: 1;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: opacity 0.6s ease 0.3s;
  -o-transition: opacity 0.6s ease 0.3s;
  transition: opacity 0.6s ease 0.3s;
}
@media (min-width: 768px) {
  .navbar .nav-header .nav-header-links.in > .back-btn {
    opacity: 0;
    -webkit-transition: opacity 0s;
    -o-transition: opacity 0s;
    transition: opacity 0s;
  }
}
@media (max-width: 767px) {
  .navbar .nav-header .nav-header-links .group {
    pointer-events: none;
    width: auto !important;
    height: auto !important;
  }
}
@media (max-width: 767px) {
  .navbar .nav-header .nav-header-links .group .link-active-value {
    position: relative;
    right: auto;
    left: 0;
    top: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.navbar .nav-header .nav-toggler {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 70px;
  height: 70px;
  border: 0;
  cursor: pointer;
  background-color: transparent;
}
@media (max-width: 575px) {
  .navbar .nav-header .nav-toggler {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.navbar .nav-header .nav-toggler .toggler-bg {
  background-size: 100% !important;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out, right 0.5s ease-in-out,
    top 0.5s ease-in-out;
  -o-transition: width 0.5s ease-in-out, height 0.5s ease-in-out, right 0.5s ease-in-out,
    top 0.5s ease-in-out;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out, right 0.5s ease-in-out,
    top 0.5s ease-in-out;
}
.navbar .nav-header .nav-toggler .toggler-bg:focus {
  position: fixed;
}
.navbar .nav-header .nav-toggler .icon-nav-toggler {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.navbar .nav-header .nav-toggler .icon-nav-toggler span {
  position: absolute;
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
}
@media screen and (max-width: 1459px) {
  .navbar .nav-header .nav-toggler {
    width: 55px;
    height: 55px;
  }
}
@media screen and (max-width: 991px) {
  .navbar .nav-header .nav-toggler {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .navbar .nav-header .nav-toggler {
    margin-left: 0;
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 575px) {
  .navbar .nav-header .nav-toggler {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  .navbar .nav-header .nav-toggler {
    margin-left: 0;
  }
}
@media screen and (max-width: 1459px) {
  .navbar .nav-header .nav-toggler .icon-nav-toggler {
    width: 15px;
    height: 15px;
  }
}
.navbar .nav-header .nav-toggler .icon-nav-toggler span:nth-child(1),
.navbar .nav-header .nav-toggler .icon-nav-toggler span:nth-child(4) {
  background-color: #eaca59;
}
.navbar .nav-header .nav-toggler .icon-nav-toggler span:nth-child(2),
.navbar .nav-header .nav-toggler .icon-nav-toggler span:nth-child(3) {
  background-color: #fff;
}
.navbar .nav-header .nav-toggler .icon-nav-toggler span:nth-child(1) {
  left: 0;
  top: 0;
  -webkit-transition: height 0.3s ease 0.3s, left 0.3s ease, border 0.3s ease,
    -webkit-transform 0.3s ease;
  transition: height 0.3s ease 0.3s, left 0.3s ease, border 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: height 0.3s ease 0.3s, transform 0.3s ease, left 0.3s ease, border 0.3s ease;
  transition: height 0.3s ease 0.3s, transform 0.3s ease, left 0.3s ease, border 0.3s ease;
  transition: height 0.3s ease 0.3s, transform 0.3s ease, left 0.3s ease, border 0.3s ease,
    -webkit-transform 0.3s ease;
}
.navbar .nav-header .nav-toggler .icon-nav-toggler span:nth-child(2) {
  right: 0;
  top: 0;
  -webkit-transition: width 0.3s ease 0.3s, top 0.3s ease, border 0.3s ease,
    -webkit-transform 0.3s ease;
  transition: width 0.3s ease 0.3s, top 0.3s ease, border 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: width 0.3s ease 0.3s, transform 0.3s ease, top 0.3s ease, border 0.3s ease;
  transition: width 0.3s ease 0.3s, transform 0.3s ease, top 0.3s ease, border 0.3s ease;
  transition: width 0.3s ease 0.3s, transform 0.3s ease, top 0.3s ease, border 0.3s ease,
    -webkit-transform 0.3s ease;
}
.navbar .nav-header .nav-toggler .icon-nav-toggler span:nth-child(3) {
  left: 0;
  bottom: 0;
  -webkit-transition: width 0.3s ease 0.3s, bottom 0.3s ease, border 0.3s ease,
    -webkit-transform 0.3s ease;
  transition: width 0.3s ease 0.3s, bottom 0.3s ease, border 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: width 0.3s ease 0.3s, transform 0.3s ease, bottom 0.3s ease, border 0.3s ease;
  transition: width 0.3s ease 0.3s, transform 0.3s ease, bottom 0.3s ease, border 0.3s ease;
  transition: width 0.3s ease 0.3s, transform 0.3s ease, bottom 0.3s ease, border 0.3s ease,
    -webkit-transform 0.3s ease;
}
.navbar .nav-header .nav-toggler .icon-nav-toggler span:nth-child(4) {
  right: 0;
  bottom: 0;
  -webkit-transition: height 0.3s ease 0.3s, right 0.3s ease, border 0.3s ease,
    -webkit-transform 0.3s ease;
  transition: height 0.3s ease 0.3s, right 0.3s ease, border 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: height 0.3s ease 0.3s, transform 0.3s ease, right 0.3s ease, border 0.3s ease;
  transition: height 0.3s ease 0.3s, transform 0.3s ease, right 0.3s ease, border 0.3s ease;
  transition: height 0.3s ease 0.3s, transform 0.3s ease, right 0.3s ease, border 0.3s ease,
    -webkit-transform 0.3s ease;
}
@media screen and (max-width: 991px) {
  .navbar .nav-header .nav-toggler .toggler-bg {
    width: 60px;
    height: 60px;
    background-size: contain !important;
  }
}
@media screen and (max-width: 767px) {
  .navbar .nav-header .nav-toggler .toggler-bg {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 575px) {
  .navbar .nav-header .nav-toggler .toggler-bg {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 991px) {
  .navbar .nav-header .nav-toggler .icon-nav-toggler {
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 575px) {
  .navbar .nav-header .nav-toggler .icon-nav-toggler {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 575px) {
  .navbar .nav-header .nav-toggler .icon-nav-toggler span {
    width: 4px;
    height: 4px;
  }
}
.navbar .nav-header .nav-toggler:hover .icon-nav-toggler {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.navbar .nav-collapse {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (min-width: 992px) {
  .navbar .nav-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
.navbar .nav-collapse:not(.show) {
  display: none;
}

.main-nav-tabs-fixed
  body[data-page='product_detail']
  .navbar
  .nav-header
  .nav-header-right-links
  .group,
.main-nav-tabs-fixed
  body[data-page='product_detail']
  .navbar
  .nav-header
  .nav-header-right-links
  .link-active-value,
.main-nav-tabs-fixed
  body[data-page='product_detail']
  .navbar
  .nav-header
  .nav-header-right-links
  .nav-link {
  pointer-events: none;
}

body[data-page='home'] .navbar .back-btn,
body[data-page='news'] .navbar .back-btn,
body[data-page='about'] .navbar .back-btn,
body[data-page='product_collection'] .navbar .back-btn {
  display: none !important;
}

.menu_detail {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  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;
  color: #fff;
}
.menu_detail.open {
  -webkit-animation: fade-in 0.7s both;
  animation: fade-in 0.7s both;
}
.menu_detail.close {
  -webkit-animation: fade-out 1s both 1s;
  animation: fade-out 1s both 1s;
}
.menu_detail.close .detail {
  -webkit-animation: fade-out-top 1s both;
  animation: fade-out-top 1s both;
}
.menu_detail section.ajax_close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.menu_detail .detail {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: auto;
  overflow: visible;
  max-width: 1070px;
  width: calc(100vw - 50px);
  height: calc(80vw - 40px);
  max-height: 850px;
  background-color: #3c6b92;
  border-radius: 45% 55% 55% 45% / 50% 60% 40% 50%;
}
@media (max-height: 900px) and (min-aspect-ratio: 107 / 85) {
  .menu_detail .detail {
    width: calc(125vh - 60px);
    height: calc(100vh - 50px);
  }
}
@media (max-width: 700px) {
  .menu_detail .detail {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    border-radius: unset;
    overflow-y: auto;
    display: block;
  }
}
.menu_detail .detail:before {
  position: absolute;
  top: -20px;
  left: -20px;
  width: calc(100% - 20px);
  height: 100%;
  display: block;
  content: '';
  border-radius: 45% 55% 55% 45% / 50% 60% 40% 50%;
  border: dashed 2px #619ca2;
}
@media (max-width: 900px) {
  .menu_detail .detail:before {
    left: 0;
  }
}
@media (max-width: 700px) {
  .menu_detail .detail:before {
    display: none;
  }
}
.menu_detail .detail .liboxClose {
  position: absolute;
  top: 10%;
  right: 10%;
  z-index: 1;
  background-image: url('../../upload/f2e/icon/menu_close.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 80px;
  width: 90px;
  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;
  cursor: pointer;
}
@media (max-width: 700px) {
  .menu_detail .detail .liboxClose {
    top: 5vw;
    right: 5vw;
    height: 50px;
    width: 50px;
  }
}
.menu_detail .detail .liboxClose:hover span {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.menu_detail .detail .liboxClose span {
  display: block;
  position: relative;
  width: 28px;
  height: 28px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
@media (max-width: 700px) {
  .menu_detail .detail .liboxClose span {
    width: 20px;
    height: 20px;
  }
}
.menu_detail .detail .liboxClose span:before,
.menu_detail .detail .liboxClose span:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: '';
  background-color: #424242;
}
.menu_detail .detail .liboxClose span:before {
  width: 2px;
  height: 100%;
}
.menu_detail .detail .liboxClose span:after {
  width: 100%;
  height: 2px;
}
.menu_detail .mainContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  padding: 80px 0 50px 80px;
  height: 100%;
  width: 100%;
}
@media (max-width: 1440px) {
  .menu_detail .mainContent {
    padding: 60px 0 30px 80px;
  }
}
@media (max-width: 900px) {
  .menu_detail .mainContent {
    padding: 100px 5vw 50px;
  }
}
@media (max-width: 700px) {
  .menu_detail .mainContent {
    padding: 100px 5vw 50px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: auto;
  }
}
.menu_detail .mainContent .links {
  max-width: 630px;
  padding: 0 380px 0 0;
  max-height: calc(100% - 120px);
}
@media (max-height: 900px) and (min-width: 1025px) {
  .menu_detail .mainContent .links {
    padding: 0 330px 0 10vh;
  }
}
@media (max-width: 1024px) {
  .menu_detail .mainContent .links {
    padding: 0 33vw 0 5vw;
  }
}
@media (max-width: 900px) {
  .menu_detail .mainContent .links {
    padding: 0 200px 0 5vw;
  }
}
@media (max-width: 700px) {
  .menu_detail .mainContent .links {
    padding: 0 5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-height: none;
  }
}
.menu_detail .mainContent .links ul {
  overflow-y: auto;
  height: 100%;
}
@media (max-width: 700px) {
  .menu_detail .mainContent .links ul {
    height: auto;
  }
}
.menu_detail .mainContent .links ul::-webkit-scrollbar {
  width: 5px;
}
.menu_detail .mainContent .links ul::-webkit-scrollbar-track {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin: 0 0 0 10px;
}
.menu_detail .mainContent .links ul::-webkit-scrollbar-thumb {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: #dbdbdb;
}
.menu_detail .mainContent .links ul li {
  margin: 5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-height: 900px) and (min-width: 1025px) {
  .menu_detail .mainContent .links ul li {
    margin: 5px 0;
  }
}
@media (max-width: 1024px) {
  .menu_detail .mainContent .links ul li {
    margin: 0;
  }
}
@media (max-width: 700px) {
  .menu_detail .mainContent .links ul li {
    margin: 10px 0;
  }
}
.menu_detail .mainContent .links ul li:nth-of-type(even) {
  margin-left: 25px;
}
.menu_detail .mainContent .links ul li a {
  padding: 10px 0;
  display: block;
}
@media (max-height: 900px) and (min-width: 1025px) {
  .menu_detail .mainContent .links ul li a {
    padding: 5px 0;
  }
}
@media (max-width: 1024px) {
  .menu_detail .mainContent .links ul li a {
    padding: 5px 0;
  }
}
.menu_detail .mainContent .links ul li a:hover p {
  color: #f4d35e;
}
.menu_detail .mainContent .links ul li a p {
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 2.25rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-height: 900px) and (min-width: 1025px) {
  .menu_detail .mainContent .links ul li a p {
    font-size: 1.875rem;
  }
}
@media (max-height: 800px) and (min-width: 1025px) {
  .menu_detail .mainContent .links ul li a p {
    font-size: 1.625rem;
  }
}
@media (max-width: 1024px) {
  .menu_detail .mainContent .links ul li a p {
    font-size: 2rem;
  }
}
@media (max-width: 900px) {
  .menu_detail .mainContent .links ul li a p {
    font-size: 1.625rem;
  }
}
.menu_detail .mainContent .hotProduct {
  position: absolute;
  max-width: 240px;
  top: 45%;
  right: 200px;
  padding: 45px 20px 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media (max-width: 1130px) {
  .menu_detail .mainContent .hotProduct {
    right: 17.6vw;
  }
}
@media (max-height: 900px) and (min-aspect-ratio: 107 / 85) {
  .menu_detail .mainContent .hotProduct {
    right: 15vh;
  }
}
@media (max-width: 700px) {
  .menu_detail .mainContent .hotProduct {
    position: relative;
    top: auto;
    right: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin-top: 50px;
  }
}
.menu_detail .mainContent .hotProduct .type {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 3px 0 0;
}
.menu_detail .mainContent .hotProduct .type span {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.menu_detail .mainContent .hotProduct .type p {
  font-family: 'mplus-heavy', '微軟正黑體';
  font-size: 0.9375rem;
  position: relative;
  z-index: 1;
  min-width: 50px;
  text-align: center;
  padding: 0 5px;
}
.menu_detail .mainContent .hotProduct ._img {
  width: 200px;
  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;
}
.menu_detail .mainContent .hotProduct ._img img {
  max-height: 200px;
}
.menu_detail .mainContent .hotProduct .info {
  text-align: center;
  font-family: 'mplus-medium', '微軟正黑體';
}
.menu_detail .mainContent .hotProduct .info h6 {
  font-size: 1.125rem;
}
.menu_detail .mainContent .hotProduct .info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}
.menu_detail .mainContent .bottom {
  padding-right: 100px;
  width: 55vw;
  max-width: 600px;
}
@media (max-height: 900px) and (min-width: 1025px) {
  .menu_detail .mainContent .bottom {
    width: 80vh;
  }
}
@media (max-width: 900px) {
  .menu_detail .mainContent .bottom {
    padding-right: 0;
  }
}
@media (max-width: 700px) {
  .menu_detail .mainContent .bottom {
    width: 100vw;
    margin-top: 50px;
  }
}
.menu_detail .mainContent .bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
}
@media (max-width: 700px) {
  .menu_detail .mainContent .bottom ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.menu_detail .mainContent .bottom ul::-webkit-scrollbar {
  height: 5px;
}
.menu_detail .mainContent .bottom ul::-webkit-scrollbar-track {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin: 0 0 0 10px;
}
.menu_detail .mainContent .bottom ul::-webkit-scrollbar-thumb {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: #dbdbdb;
}
@media (min-width: 701px) {
  .menu_detail .mainContent .bottom ul li:not(:last-child) {
    margin-right: 25px;
  }
  .menu_detail .mainContent .bottom ul li:nth-of-type(odd) {
    margin-top: 30px;
  }
  .menu_detail .mainContent .bottom ul li:nth-of-type(even) {
    margin-top: 60px;
  }
}
@media (max-width: 700px) {
  .menu_detail .mainContent .bottom ul li {
    margin: 0 5vw 30px;
  }
}
.menu_detail .mainContent .bottom ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.menu_detail .mainContent .bottom ul li a:hover .icon- img {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.menu_detail .mainContent .bottom ul li a:hover p {
  color: #f4d35e;
}
.menu_detail .mainContent .bottom ul li a .icon- {
  width: 40px;
  height: 40px;
  padding: 10px;
  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;
  background-color: #3a9ddc;
  border-radius: 50%;
}
@media (max-height: 900px) and (min-width: 1025px) {
  .menu_detail .mainContent .bottom ul li a .icon- {
    width: 35px;
    height: 35px;
    padding: 5px;
  }
}
.menu_detail .mainContent .bottom ul li a .icon- img {
  display: block;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.menu_detail .mainContent .bottom ul li a p {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 1.125rem;
  margin-left: 10px;
}
@media (max-height: 900px) and (min-width: 1025px) {
  .menu_detail .mainContent .bottom ul li a p {
    font-size: 1rem;
  }
}
.menu_detail .mainContent .socialMedia {
  position: absolute;
  top: 50%;
  left: 100px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media (max-width: 1130px) {
  .menu_detail .mainContent .socialMedia {
    left: 6vw;
  }
}
@media (max-height: 900px) and (min-width: 1025px) {
  .menu_detail .mainContent .socialMedia {
    left: 10vh;
  }
}
@media (max-height: 700px) and (min-width: 1025px) {
  .menu_detail .mainContent .socialMedia {
    left: 5vh;
  }
}
@media (max-width: 900px) {
  .menu_detail .mainContent .socialMedia {
    top: 45%;
  }
}
@media (max-width: 700px) {
  .menu_detail .mainContent .socialMedia {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin-top: 50px;
    width: 100%;
  }
}
@media (max-width: 700px) {
  .menu_detail .mainContent .socialMedia ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 700px) {
  .menu_detail .mainContent .socialMedia ul li {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .menu_detail .mainContent .socialMedia ul li:nth-child(odd) {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0 10vw 0 0;
  }
  .menu_detail .mainContent .socialMedia ul li:nth-child(even) {
    position: relative;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 0 0 10vw;
  }
  .menu_detail .mainContent .socialMedia ul li:nth-child(even):before {
    content: '';
    display: block;
    height: 15px;
    width: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.menu_detail .mainContent .socialMedia ul li:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 1279px) {
  .menu_detail .mainContent .socialMedia ul li:not(:last-child) {
    margin-bottom: 5px;
  }
}
@media (max-width: 700px) {
  .menu_detail .mainContent .socialMedia ul li:last-child {
    margin-bottom: 5px;
  }
}
.menu_detail .mainContent .socialMedia ul li a {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 15px 0 0;
}
@media (max-width: 700px) {
  .menu_detail .mainContent .socialMedia ul li a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (max-width: 700px) {
  .menu_detail .mainContent .socialMedia ul li a {
    padding: 10px 0;
  }
}
.menu_detail .mainContent .socialMedia ul li a:hover span {
  color: #f4d35e;
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.menu_detail .mainContent .socialMedia ul li a:hover p {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.menu_detail .mainContent .socialMedia ul li a span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.25rem;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
@media (max-width: 900px) {
  .menu_detail .mainContent .socialMedia ul li a span {
    font-size: 1rem;
  }
}
.menu_detail .mainContent .socialMedia ul li a p {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  letter-spacing: 0;
  margin: 10px 0 0;
  font-size: 0.875rem;
  font-family: 'mplus-medium', '微軟正黑體';
}
@media (min-width: 1025px) {
  .menu_detail .mainContent .socialMedia ul li a p {
    opacity: 0;
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}
@media (max-width: 900px) {
  .menu_detail .mainContent .socialMedia ul li a p {
    font-size: 0.75rem;
  }
}
@media (max-width: 700px) {
  .menu_detail .mainContent .socialMedia ul li a p {
    margin: 0 0 0 5px;
  }
}

.privacyLibox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100vh;
  display: none;
  overflow-y: auto;
  overflow-x: hidden;
}
.privacyLibox.open {
  display: block;
  -webkit-animation: fade-in 0.4s both;
  animation: fade-in 0.4s both;
}
.privacyLibox.close {
  display: block;
  -webkit-animation: fade-out 0.4s both;
  animation: fade-out 0.4s both;
}
.privacyLibox .box {
  max-width: 1280px;
  width: 100%;
  margin: auto;
  min-height: 100%;
  padding: 150px 50px 60px;
  position: relative;
  background-color: #c6dadc;
  color: rgba(0, 0, 0, 0.8);
}
@media (max-width: 1024px) {
  .privacyLibox .box {
    padding: 100px 5vw 60px;
  }
}
@media (max-width: 700px) {
  .privacyLibox .box {
    padding: 80px 5vw 60px;
  }
}
.privacyLibox .box .img-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 595px) {
  .privacyLibox .box .img-cover {
    opacity: 0.3;
  }
}
.privacyLibox .box .img-cover img {
  position: absolute;
}
.privacyLibox .box .img-cover img.i01 {
  top: 0;
  left: 36%;
}
.privacyLibox .box .img-cover img.i02 {
  top: 7.5%;
  left: 65%;
}
.privacyLibox .box .img-cover img.i03 {
  top: 26%;
  left: 0;
}
.privacyLibox .box .img-cover img.i04 {
  top: 23%;
  left: 3%;
}
.privacyLibox .box .img-cover img.i05 {
  top: 44%;
  right: 0;
}
.privacyLibox .box .img-cover img.i06 {
  top: 52%;
  right: 4%;
}
.privacyLibox .box .img-cover img.i07 {
  bottom: 0;
  left: 0;
}
.privacyLibox .box .img-cover img.i08 {
  top: 68%;
  left: -2%;
}
.privacyLibox .box h5,
.privacyLibox .box h6,
.privacyLibox .box p {
  line-height: 1.5;
  letter-spacing: 0;
}
.privacyLibox .box .liboxClose {
  width: 75px;
  position: fixed;
  top: 110px;
  left: calc(50% + 445px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 1280px) {
  .privacyLibox .box .liboxClose {
    right: 50px;
    left: auto;
  }
}
@media (max-width: 1024px) {
  .privacyLibox .box .liboxClose {
    top: 60px;
    right: 5vw;
  }
}
@media (max-width: 700px) {
  .privacyLibox .box .liboxClose {
    top: 30px;
  }
}
.privacyLibox .box .liboxClose span {
  font-size: 1rem;
  font-family: 'mplus-heavy', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  color: #888888;
  margin: 0 10px 5px 0px;
}
.privacyLibox .box .liboxClose p {
  font-size: 1.125rem;
  font-family: 'mplus-heavy', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
.privacyLibox .box ._title,
.privacyLibox .box .rules {
  max-width: 880px;
  width: 100%;
  margin: auto;
}
.privacyLibox .box ._title {
  padding: 0 5px;
}
.privacyLibox .box ._title h5 {
  font-size: 3.4375rem;
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  margin: 0 0 100px;
}
@media (max-width: 1024px) {
  .privacyLibox .box ._title h5 {
    margin: 0 0 60px;
    font-size: 3rem;
  }
}
@media (max-width: 700px) {
  .privacyLibox .box ._title h5 {
    font-size: 2.625rem;
  }
}
.privacyLibox .box ._title h6 {
  font-size: 1.5625rem;
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  margin: 0 0 5px;
}
.privacyLibox .box ._title p {
  font-size: 0.9375rem;
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
.privacyLibox .box .rules .rule {
  padding: 40px 5px 25px;
}
.privacyLibox .box .rules .rule:not(:last-child) {
  border-bottom: 1px solid #a8babb;
}
.privacyLibox .box .rules .rule h6 {
  font-size: 1.375rem;
  position: relative;
  color: #4a4a4a;
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  margin: 0 0 10px;
}
.privacyLibox .box .rules .rule h6:before {
  content: '●';
  font-size: 0.75rem;
  color: #2b69d1;
  position: absolute;
  left: -18px;
  top: 16px;
  -webkit-transform: translateY(-50%) scale(0.8);
  -ms-transform: translateY(-50%) scale(0.8);
  transform: translateY(-50%) scale(0.8);
}
@media (max-width: 700px) {
  .privacyLibox .box .rules .rule h6:before {
    left: -14px;
  }
}
.privacyLibox .box .rules .rule p {
  font-size: 0.9375rem;
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
.privacyLibox .box .rules .rule p:not(:last-child) {
  margin: 0 0 25px;
}
.privacyLibox .box .rules .rule p span {
  color: #df1515;
}
.privacyLibox .box .lbx_footer {
  margin: auto;
  display: block;
  position: relative;
  padding: 20px 0;
  width: 100%;
}
.privacyLibox .box .lbx_footer .gotop {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  bottom: auto;
}
.privacyLibox .box .lbx_footer .gotop .icon-up-arrow {
  background: #707070;
  color: #fff;
}

[data-page='home'] footer .left {
  padding-top: 250px;
}
@media (max-width: 991px) {
  [data-page='home'] footer .left {
    padding-top: 150px;
  }
}
@media (max-width: 767px) {
  [data-page='home'] footer .left {
    padding-top: 40px;
  }
}

[data-page='home'] footer .right {
  padding-top: 250px;
}
@media (max-width: 991px) {
  [data-page='home'] footer .right {
    padding-top: 150px;
  }
}
@media (max-width: 767px) {
  [data-page='home'] footer .right {
    padding-top: 80px;
  }
}

@media (max-width: 1024px) {
  footer {
    z-index: 3;
  }
}

footer .row {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: 0;
  margin-right: 0;
}

footer section {
  position: relative;
  overflow: visible;
}

footer .left {
  position: relative;
  overflow: hidden;
  width: 60%;
  z-index: 1;
  padding: 9.7vw 65px 60px;
}
@media (max-width: 1024px) {
  footer .left {
    padding: 9.7vw 5vw 60px;
  }
}
@media (max-width: 767px) {
  footer .left {
    width: 100%;
    padding: 40px 5vw 40px;
  }
}
footer .left::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #cadcdd;
}
footer .left .line-dashed {
  position: absolute;
  z-index: 0;
  bottom: -70%;
  left: 80%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 49% 51% 67% 33% / 62% 52% 48% 38%;
  border: dashed 1px #91b6b7;
  width: 700px;
  height: 740px;
}
@media (max-width: 767px) {
  footer .left .line-dashed {
    display: none;
  }
}
footer .left .decorate-line-container {
  position: absolute;
  right: 0;
  top: -30px;
  z-index: 0;
}
footer .left .decorate-line-container .decorate-line {
  width: 800px;
  max-width: 50%;
}
@media (max-width: 767px) {
  footer .left .decorate-line-container {
    display: none;
  }
}
footer .left .group {
  position: relative;
  z-index: 1;
  width: 710px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
@media (max-width: 1365px) {
  footer .left .group {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  footer .left .group {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
  }
}
@media (max-width: 767px) {
  footer .left .group .footer-links {
    display: none;
  }
}
footer .left .group .footer-links .footer-links-lists {
  margin-left: -28px;
  margin-right: -28px;
}
@media (max-width: 991px) {
  footer .left .group .footer-links .footer-links-lists {
    margin-left: -15px;
    margin-right: -15px;
  }
}
footer .left .group .footer-links .footer-links-lists a {
  position: relative;
  display: block;
  padding: 6px 28px;
  white-space: nowrap;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 991px) {
  footer .left .group .footer-links .footer-links-lists a {
    padding-left: 15px;
    padding-right: 15px;
  }
}
footer .left .group .footer-links .footer-links-lists a:before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 3px;
  height: 25px;
}
@media (max-width: 1459px) {
  footer .left .group .footer-links .footer-links-lists a:before {
    height: 20px;
  }
}
footer .left .group .footer-links .footer-links-lists a:last-child:before {
  display: none;
}
footer .left .group .footer-links .footer-links-lists a:hover {
  color: #559198;
}
footer .left .group .footer-contact {
  padding-top: 4.69vw;
  margin-left: -10px;
  margin-right: -10px;
  line-height: 1.5;
}
@media (max-width: 991px) {
  footer .left .group .footer-contact {
    padding-top: 8.66vw;
  }
}
@media (max-width: 767px) {
  footer .left .group .footer-contact {
    text-align: center;
    padding-top: 0;
  }
}
footer .left .group .footer-contact [class*='col-'] {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 600px) {
  footer .left .group .footer-contact [class*='col-'] {
    width: 100%;
  }
}
footer .left .group .footer-contact label {
  color: rgba(0, 0, 0, 0.6);
}
footer .left .group .footer-contact .contact-link {
  color: rgba(0, 0, 0, 0.5);
  padding-left: 5px;
  position: relative;
  white-space: nowrap;
  display: inline-block;
}
footer .left .group .footer-contact .contact-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: width 0.5s ease;
  -o-transition: width 0.5s ease;
  transition: width 0.5s ease;
}
footer .left .group .footer-contact a.contact-link:hover:before {
  width: 100%;
}
footer .left .group .footer-contact .contact-address .contact-link {
  padding-left: 0;
  display: block;
  margin-top: 10px;
  white-space: normal;
}
@media (max-width: 575px) {
  footer .left .group .footer-contact .contact-address .contact-link {
    margin-top: 20px;
  }
}

footer .right {
  width: 40%;
  z-index: 2;
  padding: 9.7vw 65px 60px;
}
@media (max-width: 1024px) {
  footer .right {
    padding: 9.7vw 5vw 60px;
  }
}
@media (max-width: 767px) {
  footer .right {
    width: 100%;
    padding: 80px 5vw 40px;
  }
}
footer .right .group {
  position: relative;
  width: 500px;
  max-width: 100%;
}
@media (max-width: 991px) {
  footer .right .group {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    margin: auto;
  }
}
@media (max-width: 767px) {
  footer .right .group {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    margin: auto;
  }
}
@media (max-width: 767px) {
  footer .right .group .logo {
    display: none;
  }
}
footer .right .group .logo img {
  display: block;
  margin-left: auto;
}
@media (max-width: 1459px) {
  footer .right .group .logo img {
    width: 75px;
  }
}
@media (max-width: 1459px) {
  footer .right .group .other-area {
    position: relative;
  }
}
footer .right .group .links-area {
  padding-top: 60px;
  text-align: right;
}
@media (max-width: 767px) {
  footer .right .group .links-area {
    padding-top: 0;
    text-align: center;
  }
}
footer .right .group .links-area .socials {
  margin-left: -14px;
  margin-right: -14px;
}
footer .right .group .links-area .socials a {
  padding-left: 14px;
  padding-right: 14px;
}
footer .right .group .links-area .socials .social-link--instagram [class*='icon']::before {
  font-size: 18px;
}
footer .right .group .links-area .socials .social-link--wechat [class*='icon']::before {
  font-size: 22px;
}
footer .right .group .copyright {
  padding-top: 20px;
  width: 305px;
  text-align: right;
  margin-left: auto;
}
@media (max-width: 767px) {
  footer .right .group .copyright {
    margin-right: auto;
    text-align: center;
  }
}
footer .right .group .copyright p + p {
  margin-top: 0;
}
footer .right .group .copyright span,
footer .right .group .copyright a {
  display: inline;
}
footer .right .group .copyright span,
footer .right .group .copyright a {
  color: rgba(0, 0, 0, 0.4);
}
footer .right .gotop {
  left: -45px;
  z-index: 10;
}
@media (max-width: 1024px) {
  footer .right .gotop {
    left: -45px;
  }
}
@media (max-width: 767px) {
  footer .right .gotop {
    z-index: 10;
    left: 0;
    bottom: auto;
    top: -50px;
    width: 100%;
  }
  footer .right .gotop [class*='icon-'] {
    margin-left: auto;
    margin-right: auto;
  }
}

.mobileAlert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5vw;
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
.mobileAlert.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mobileAlert section {
  background-color: #fff;
  text-align: center;
  padding: 50px;
  border-radius: 10px;
}
.mobileAlert section img {
  margin: 0 0 10px;
}
.mobileAlert section h2 {
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-aspect-ratio: 1 / 1) {
  .mobileAlert section .ipad {
    display: none;
  }
}
@media (max-aspect-ratio: 1 / 1) {
  .mobileAlert section .phone {
    display: none;
  }
}

[data-page='home'] .org_img,
[data-page='home'] .nb_img,
[data-page='home'] .pad_img,
[data-page='home'] .retina_img,
[data-page='home'] .small_img {
  display: none;
}

@media (min-width: 768px) {
  [data-page='home'] .org_img {
    display: block;
  }
  [data-page='home'] .org_img.padding_height {
    height: 0;
    padding-bottom: 40%;
  }
  body:not([data-page='about']) [data-page='home'] .org_img.padding_height {
    padding-bottom: 35%;
  }
}

@media (max-width: 767px) {
  [data-page='home'] .small_img {
    display: block;
  }
  [data-page='home'] .small_img.padding_height {
    height: 0;
    padding-bottom: 130%;
  }
  body:not([data-page='about']) [data-page='home'] .small_img.padding_height {
    padding-bottom: 125%;
  }
}

[data-page='home'] main section {
  padding-top: 87px;
  padding-bottom: 87px;
}
@media (max-width: 1459px) {
  [data-page='home'] main section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 1199px) {
  [data-page='home'] main section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 1024px) {
  [data-page='home'] main section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 700px) {
  [data-page='home'] main section {
    padding-top: 0;
    padding-bottom: 50px;
  }
}
[data-page='home'] main section.banner {
  padding-top: 0;
}

[data-page='home'] main[data-margin-bottom='true'] {
  margin-bottom: -70px;
}
@media (max-width: 767px) {
  [data-page='home'] main[data-margin-bottom='true'] {
    margin-bottom: 0;
  }
}
[data-page='home'] main[data-margin-bottom='true'] section:last-of-type {
  padding-bottom: 0;
}

[data-page='home'] [data-area='about'] .article-title .heading2,
[data-page='home'] [data-area='about'] .article-title .heading3 {
  color: inherit;
}

@media (max-width: 1024px) {
  [data-page='home'] .swiper-pagination-bullets {
    bottom: 55px;
  }
}

@media (max-width: 700px) {
  [data-page='home'] .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
}

[data-page='home'] .slick-arrows.has-hr .slick-arrows-group,
[data-page='home'] .slick-arrows.has-hr .swiper-buttons-group,
[data-page='home'] .swiper-buttons .slick-arrows-group,
[data-page='home'] .swiper-buttons .swiper-buttons-group {
  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;
  width: 114px;
  margin-left: -10px;
  font-size: medium;
}

[data-page='home'] .slick-arrows.has-hr .swiper-button-prev,
[data-page='home'] .slick-arrows.has-hr .swiper-container-rtl,
[data-page='home'] .slick-arrows.has-hr .swiper-button-next,
[data-page='home'] .swiper-buttons .swiper-button-prev,
[data-page='home'] .swiper-buttons .swiper-container-rtl,
[data-page='home'] .swiper-buttons .swiper-button-next {
  background: none;
  width: auto;
  height: auto;
  margin-top: auto;
  padding: 10px;
}

[data-page='home'] .slick-arrows.has-hr .slick-arrow,
[data-page='home'] .slick-arrows.has-hr [class*='swiper-button'],
[data-page='home'] .swiper-buttons .slick-arrow,
[data-page='home'] .swiper-buttons [class*='swiper-button'] {
  position: relative;
  left: 0;
  top: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  text-align: center;
}
[data-page='home'] .slick-arrows.has-hr .slick-arrow:before,
[data-page='home'] .slick-arrows.has-hr [class*='swiper-button']:before,
[data-page='home'] .swiper-buttons .slick-arrow:before,
[data-page='home'] .swiper-buttons [class*='swiper-button']:before {
  font-family: 'icomoon';
  font-weight: bold;
  font-size: 1rem;
  color: inherit;
}
[data-page='home'] .slick-arrows.has-hr .slick-arrow.slick-prev::before,
[data-page='home'] .slick-arrows.has-hr .slick-arrow.swiper-button-prev::before,
[data-page='home'] .slick-arrows.has-hr [class*='swiper-button'].slick-prev::before,
[data-page='home'] .slick-arrows.has-hr [class*='swiper-button'].swiper-button-prev::before,
[data-page='home'] .swiper-buttons .slick-arrow.slick-prev::before,
[data-page='home'] .swiper-buttons .slick-arrow.swiper-button-prev::before,
[data-page='home'] .swiper-buttons [class*='swiper-button'].slick-prev::before,
[data-page='home'] .swiper-buttons [class*='swiper-button'].swiper-button-prev::before {
  content: '\e901';
}
[data-page='home'] .slick-arrows.has-hr .slick-arrow.slick-next::before,
[data-page='home'] .slick-arrows.has-hr .slick-arrow.swiper-button-next::before,
[data-page='home'] .slick-arrows.has-hr [class*='swiper-button'].slick-next::before,
[data-page='home'] .slick-arrows.has-hr [class*='swiper-button'].swiper-button-next::before,
[data-page='home'] .swiper-buttons .slick-arrow.slick-next::before,
[data-page='home'] .swiper-buttons .slick-arrow.swiper-button-next::before,
[data-page='home'] .swiper-buttons [class*='swiper-button'].slick-next::before,
[data-page='home'] .swiper-buttons [class*='swiper-button'].swiper-button-next::before {
  content: '\e900';
}

[data-page='home'] .slick-arrows.has-hr .slick-hr,
[data-page='home'] .slick-arrows.has-hr .swiper-buttons-hr,
[data-page='home'] .swiper-buttons .slick-hr,
[data-page='home'] .swiper-buttons .swiper-buttons-hr {
  position: static;
  left: 0;
  top: 0;
  width: 20px;
  height: 1px;
  background-color: #7d7d7d;
}
@media (max-width: 575px) {
  [data-page='home'] .slick-arrows.has-hr .slick-hr,
  [data-page='home'] .slick-arrows.has-hr .swiper-buttons-hr,
  [data-page='home'] .swiper-buttons .slick-hr,
  [data-page='home'] .swiper-buttons .swiper-buttons-hr {
    background-color: #000;
  }
}

[data-page='home'] .about .article-title .heading3 {
  color: inherit;
  margin-top: 10px;
}

[data-page='home'] .about .about-container {
  width: 87%;
  margin: auto;
}
@media (max-width: 575px) {
  [data-page='home'] .about .about-container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
[data-page='home'] .about .about-container .about-group {
  width: 100%;
  padding-bottom: 45%;
  height: 0;
  position: relative;
}
@media (max-width: 1459px) {
  [data-page='home'] .about .about-container .about-group {
    padding-bottom: 56%;
  }
}
@media (max-width: 767px) {
  [data-page='home'] .about .about-container .about-group {
    padding-bottom: 120%;
    height: 0;
  }
}

[data-page='home'] .about .pic-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
[data-page='home'] .about .pic-container .pic {
  width: 100%;
  height: 100%;
}

[data-page='home'] .about .article-container {
  position: absolute;
  left: 25%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #fff;
  width: 600px;
  max-width: 50%;
  padding: 0 90px;
}
@media (max-width: 1380px) {
  [data-page='home'] .about .article-container {
    padding: 0 6.5vw;
  }
}
@media (max-width: 575px) {
  [data-page='home'] .about .article-container {
    max-width: 100%;
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    padding: 40px 8vw 0 8vw;
  }
}
[data-page='home'] .about .article-container .article-info-container {
  width: 100%;
  max-width: 420px;
  padding-bottom: 85px;
  padding-top: 10%;
}
@media (max-width: 1199px) {
  [data-page='home'] .about .article-container .article-info-container {
    padding-top: 8%;
  }
}
@media (max-width: 991px) {
  [data-page='home'] .about .article-container .article-info-container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 575px) {
  [data-page='home'] .about .article-container .article-info-container {
    padding-top: 0;
  }
}
[data-page='home'] .about .article-container .article-info-container .info {
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 575px) {
  [data-page='home'] .about .article-container .article-info-container .info {
    margin: 20px 0 0;
  }
}
[data-page='home'] .about .article-container .article-info-container .info p {
  color: inherit;
  height: 40px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
[data-page='home'] .about .article-container .article-info-container .btn-area {
  padding-top: 40px;
  padding-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media (max-width: 575px) {
  [data-page='home'] .about .article-container .article-info-container .btn-area {
    padding-bottom: 0;
    padding-top: 30px;
  }
}
[data-page='home'] .about .article-container .article-info-container .btn-area .btn {
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
}
[data-page='home'] .about .article-container .article-info-container .btn-area .txt {
  color: rgba(255, 255, 255, 0.8);
}
[data-page='home'] .about .article-container .article-info-container .btn-area .btn:hover .txt {
  color: #559198;
}

body[data-page='home'] main .title-container .article-area .info + .btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  body[data-page='home'] main .title-container .article-area .info + .btn-area {
    margin-top: 20px;
  }
}
@media (max-width: 479px) {
  body[data-page='home'] main .title-container .article-area .info + .btn-area {
    margin-top: 10px;
  }
}

body[data-page='home'] main .title-container .article-area .btn-area .btn {
  padding-left: 0;
  padding-right: 0;
}
body[data-page='home'] main .title-container .article-area .btn-area .btn:hover .txt {
  color: #559198;
}

@media (min-width: 1025px) {
  body[data-page='home'] [data-area='products'] .title-container {
    padding-top: 20vh;
  }
}

@media (min-width: 1200px) {
  body[data-page='home'] [data-area='products'] .content .title-container,
  body[data-page='home'] [data-area='news'] .news-container .left {
    width: calc(30% + 40px);
  }
  body[data-page='home'] [data-area='products'] .content .products-container,
  body[data-page='home'] [data-area='news'] .news-container .right {
    width: 70%;
  }
}

[data-page='home'] .banner-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 0;
}
[data-page='home'] .banner-container .tools {
  position: absolute;
  bottom: 55px;
  right: 10%;
  text-align: right;
  z-index: 20;
}
@media (max-width: 991px) {
  [data-page='home'] .banner-container .tools {
    width: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
@media (max-width: 575px) {
  [data-page='home'] .banner-container .tools {
    left: auto;
    right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    bottom: 40px;
    right: 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
[data-page='home'] .banner-container .tools ul {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  [data-page='home'] .banner-container .tools ul {
    padding-right: 25px;
  }
}
[data-page='home'] .banner-container .tools ul li a {
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 575px) {
  [data-page='home'] .banner-container .tools ul li.tool-language,
  [data-page='home'] .banner-container .tools ul li.tool-search {
    display: none;
  }
}
[data-page='home'] .banner-container .tools ul li.tool-language a [class*='icon'] {
  font-size: 15px;
  padding-right: 8px;
}
[data-page='home'] .banner-container .tools ul li.tool-search {
  margin-left: 4px;
}
[data-page='home'] .banner-container .tools ul li.tool-search a [class*='icon'] {
  font-size: 18px;
  padding-right: 7px;
}
[data-page='home'] .banner-container .tools ul li.tool-search a .txt {
  margin-top: 4px;
}
[data-page='home'] .banner-container .tools ul li.tool-goDown {
  margin-left: 12px;
}
@media (max-width: 575px) {
  [data-page='home'] .banner-container .tools ul li.tool-goDown {
    margin-left: 0;
  }
}
[data-page='home'] .banner-container .tools ul li.tool-goDown a {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-color: #ccc;
}
[data-page='home'] .banner-container .tools ul li.tool-goDown a [class*='icon'] {
  font-size: 12px;
  font-weight: bold;
}

[data-page='home'] .banner {
  width: 100vw;
  overflow-x: hidden;
}

[data-page='home'] .swiper-wrapper.disabled {
  -webkit-transform: translate3d(0px, 0, 0) !important;
  transform: translate3d(0px, 0, 0) !important;
}
[data-page='home'] .swiper-wrapper.disabled .pic-container {
  margin: auto;
}

[data-page='home'] .swiper-pagination.disabled,
[data-page='home'] .swiper-button-next.disabled,
[data-page='home'] .swiper-button-prev.disabled {
  display: none;
}

[data-page='home'] .swiper-container {
  width: 100vw;
  height: 100vh;
}
@media (min-width: 1921px) {
  [data-page='home'] .swiper-container {
    min-height: 900px;
  }
}
@media (max-width: 575px) {
  [data-page='home'] .swiper-container {
    width: 100%;
    max-width: 100vw;
    height: calc(100vh - 70px);
  }
}
@media (min-width: 1921px) {
  [data-page='home'] .swiper-container .swiper-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 575px) {
  [data-page='home'] .swiper-container .swiper-wrapper .swiper-slide {
    opacity: 1;
  }
}

[data-page='home'] .swiper-container.gallery {
  margin-left: 0;
}
[data-page='home'] .swiper-container.gallery .swiper-slide {
  opacity: 0;
  pointer-events: none;
  max-width: 60vw;
  width: 100%;
  position: relative;
  text-align: center;
  font-size: 18px;
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
@media (max-width: 575px) {
  [data-page='home'] .swiper-container.gallery .swiper-slide {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
[data-page='home'] .swiper-container.gallery .swiper-slide.swiper-slide-prev,
[data-page='home'] .swiper-container.gallery .swiper-slide.swiper-slide-next {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
[data-page='home'] .swiper-container.gallery .swiper-slide.swiper-slide-active {
  pointer-events: auto;
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 575px) {
  [data-page='home'] .swiper-container.gallery .swiper-slide .pic-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
[data-page='home'] .swiper-container.gallery .swiper-slide .pic-container .pic {
  position: relative;
  margin: auto;
}
@media (max-width: 575px) {
  [data-page='home'] .swiper-container.gallery .swiper-slide .pic-container .pic {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    margin: 0;
  }
}
[data-page='home'] .swiper-container.gallery .swiper-slide .pic-container .pic img {
  display: block;
  margin-left: auto;
}
@media (max-width: 575px) {
  [data-page='home'] .swiper-container.gallery .swiper-slide .pic-container .pic img {
    margin-left: auto;
    margin-right: auto;
  }
}
[data-page='home'] .swiper-container.gallery .swiper-slide.fullPic {
  width: 100%;
  max-width: 100%;
}
@media (max-width: 1920px) {
  [data-page='home'] .swiper-container.gallery .swiper-slide.fullPic {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@media (max-width: 1365px) {
  [data-page='home'] .swiper-container.gallery .swiper-slide.fullPic {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@media (max-width: 1199px) {
  [data-page='home'] .swiper-container.gallery .swiper-slide.fullPic {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
[data-page='home'] .swiper-container.gallery .swiper-slide.fullPic .pic-container {
  width: 100%;
  height: 100%;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
[data-page='home'] .swiper-container.gallery .swiper-slide.fullPic .pic {
  width: 100%;
  height: 100vh;
  min-height: 100%;
  height: 100%;
  min-height: 100vh;
}
[data-page='home'] .swiper-container.gallery .swiper-slide:not(.fullPic) {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1920px) {
  [data-page='home'] .swiper-container.gallery .swiper-slide:not(.fullPic) {
    padding: 0 100px 0 calc(100px + 10vw);
  }
}
@media (max-width: 1365px) {
  [data-page='home'] .swiper-container.gallery .swiper-slide:not(.fullPic) {
    padding: 0 80px 0 calc(80px + 10vw);
  }
}
@media (max-width: 1199px) {
  [data-page='home'] .swiper-container.gallery .swiper-slide:not(.fullPic) {
    padding: 0 60px 0 calc(60px + 10vw);
  }
}
@media (max-width: 991px) {
  [data-page='home'] .swiper-container.gallery .swiper-slide:not(.fullPic) {
    padding: 0 40px 0 calc(40px + 10vw);
  }
}
@media (max-width: 575px) {
  [data-page='home'] .swiper-container.gallery .swiper-slide:not(.fullPic) {
    min-height: 0;
    height: 100vh;
    padding: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
[data-page='home'] .swiper-container.gallery .swiper-slide:not(.fullPic) .pic-container {
  width: 100%;
  height: 100%;
  margin-left: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 1921px) {
  [data-page='home'] .swiper-container.gallery .swiper-slide:not(.fullPic) .pic-container {
    width: 60vw !important;
    min-width: calc(100% - 850px);
    margin-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 575px) {
  [data-page='home'] .swiper-container.gallery .swiper-slide:not(.fullPic) .pic-container {
    margin: 0 auto;
    padding: 80px 0 100px;
    height: 80%;
  }
}
[data-page='home'] .swiper-container.gallery .swiper-slide:not(.fullPic) .pic-container .pic {
  padding: 120px 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 1921px) {
  [data-page='home'] .swiper-container.gallery .swiper-slide:not(.fullPic) .pic-container .pic {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  [data-page='home'] .swiper-container.gallery .swiper-slide:not(.fullPic) .pic-container .pic {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    margin: 0;
    padding: 0;
  }
}
[data-page='home']
  .swiper-container.gallery
  .swiper-slide:not(.fullPic)
  .pic-container
  .pic
  .pic-box {
  position: relative;
}
[data-page='home'] .swiper-container.gallery .swiper-slide:not(.fullPic) .pic-container .pic img {
  position: relative;
}
@media (min-width: 1921px) {
  [data-page='home'] .swiper-container.gallery .swiper-slide:not(.fullPic) .pic-container .pic img {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 575px) {
  [data-page='home'] .swiper-container.gallery .swiper-slide:not(.fullPic) .pic-container .pic img {
    margin-left: auto;
    margin-right: auto;
  }
}
[data-page='home']
  .swiper-container.gallery
  .swiper-slide:not(.fullPic).pic-portrait-item
  .pic-container {
  max-height: 100vh;
}
@media (max-width: 1920px) {
  [data-page='home']
    .swiper-container.gallery
    .swiper-slide:not(.fullPic).pic-portrait-item
    .pic-container {
    max-height: none;
  }
}
@media (max-width: 1920px) {
  [data-page='home']
    .swiper-container.gallery
    .swiper-slide:not(.fullPic).pic-portrait-item
    .pic-container
    .pic {
    height: 100%;
  }
}
@media (max-width: 1920px) {
  [data-page='home']
    .swiper-container.gallery
    .swiper-slide:not(.fullPic).pic-portrait-item
    .pic-container
    .pic
    .pic-box {
    max-height: none;
    min-height: 0;
    max-height: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 575px) {
  [data-page='home']
    .swiper-container.gallery
    .swiper-slide:not(.fullPic).pic-portrait-item
    .pic-container
    .pic
    .pic-box {
    width: 100%;
    height: 100%;
  }
}
[data-page='home']
  .swiper-container.gallery
  .swiper-slide:not(.fullPic).pic-portrait-item
  .pic-container
  .pic
  img {
  width: auto;
  max-height: calc(90vh - 100px);
}
@media (max-width: 575px) {
  [data-page='home']
    .swiper-container.gallery
    .swiper-slide:not(.fullPic).pic-portrait-item
    .pic-container
    .pic
    img {
    max-height: 100%;
    min-height: 0;
  }
}
@media (max-width: 575px) {
  [data-page='home']
    .swiper-container.gallery
    .swiper-slide:not(.fullPic).pic-landscape-item
    .pic-container
    .pic
    .pic-box {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
[data-page='home']
  .swiper-container.gallery
  .swiper-slide:not(.fullPic).pic-landscape-item
  .pic-container
  .pic
  img {
  width: 100%;
  height: auto;
}
@media (min-width: 1921px) {
  [data-page='home']
    .swiper-container.gallery
    .swiper-slide:not(.fullPic).pic-landscape-item
    .pic-container
    .pic
    img {
    max-width: 80%;
  }
}

[data-page='home'] .swiper-container.gallery-article {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  background-color: transparent;
  pointer-events: none;
  width: 40vw;
  opacity: 0;
}
@media (max-width: 575px) {
  [data-page='home'] .swiper-container.gallery-article {
    left: 0;
    right: auto;
    top: auto;
    bottom: 60px;
    width: 100vw;
    height: auto;
    min-height: unset;
    max-height: none;
  }
}
[data-page='home'] .swiper-container.gallery-article.swiper-container-horizontal {
  -webkit-animation: fadeIn 1s both 0.5s;
  animation: fadeIn 1s both 0.5s;
}
[data-page='home'] .swiper-container.gallery-article .article-container {
  max-width: 100%;
  width: 650px;
  padding: 0 100px;
}
@media (max-width: 1365px) {
  [data-page='home'] .swiper-container.gallery-article .article-container {
    padding: 0 80px;
  }
}
@media (max-width: 1199px) {
  [data-page='home'] .swiper-container.gallery-article .article-container {
    padding: 0 60px;
  }
}
@media (max-width: 991px) {
  [data-page='home'] .swiper-container.gallery-article .article-container {
    padding: 0 40px;
  }
}
@media (max-width: 575px) {
  [data-page='home'] .swiper-container.gallery-article .article-container {
    padding: 15px 25px;
  }
}
@media (max-width: 575px) {
  [data-page='home'] .swiper-container.gallery-article .article-container .article {
    width: 100%;
  }
}
@media (max-width: 575px) {
  [data-page='home'] .swiper-container.gallery-article .article-container .article-title {
    margin-left: 0;
    margin-right: 0;
  }
}
[data-page='home'] .swiper-container.gallery-article .swiper-wrapper,
[data-page='home'] .swiper-container.gallery-article .swiper-slide {
  height: 100%;
}
[data-page='home'] .swiper-container.gallery-article .swiper-slide {
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media (max-width: 575px) {
  [data-page='home'] .swiper-container.gallery-article .swiper-slide {
    width: 100vw;
    max-width: 100vw;
    height: auto;
  }
}

@media (max-width: 767px) {
  #home [data-area='products'] {
    padding-bottom: 150px;
  }
}

[data-area='products'] .products-container {
  position: relative;
  z-index: 0;
  width: 70%;
}
@media (max-width: 767px) {
  [data-area='products'] .products-container {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

[data-area='products'] .content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 1024px) {
  [data-area='products'] .content {
    padding-top: 80px;
  }
  body[data-page='home'] [data-area='products'] .content {
    padding-top: 50px;
  }
}
[data-area='products'] .content > .bg {
  position: absolute;
  left: 30%;
  top: 0;
  height: 100%;
  width: 65vw;
  z-index: 0;
  max-width: 1090px;
}
@media (min-width: 1921px) {
  [data-area='products'] .content > .bg {
    max-width: calc(70vw - 250px);
  }
}
@media (max-width: 1024px) {
  [data-area='products'] .content > .bg {
    left: 0%;
    width: 85vw;
  }
}
@media (max-width: 575px) {
  [data-area='products'] .content > .bg {
    width: 100%;
  }
}
[data-area='products'] .content .title-container {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 0 0 70px 60px;
  position: absolute;
  top: 0;
  height: 100vh;
  z-index: 1;
}
@media all and (max-width: 1024px) {
  [data-area='products'] .content .title-container {
    padding: 0 5vw;
    width: 100%;
    height: auto;
  }
  body[data-page='home'] [data-area='products'] .content .title-container {
    position: relative !important;
    padding-bottom: 60px;
  }
}
@media (max-width: 991px) {
  [data-area='products'] .content .title-container {
    height: auto;
  }
}
@media (max-width: 767px) {
  [data-area='products'] .content .title-container {
    position: relative !important;
    width: 85%;
  }
  body[data-page='news'] [data-area='products'] .content .title-container {
    position: relative !important;
  }
}
@media (max-width: 575px) {
  [data-area='products'] .content .title-container {
    width: 100%;
  }
}
@media (max-width: 479px) {
  [data-area='products'] .content .title-container {
    padding: 0 20px;
  }
}
[data-area='products'] .content .title-container.position-fixed {
  position: fixed;
}
[data-area='products'] .content .title-container.position-fixed.position-absolute {
  position: absolute;
  bottom: 0;
  top: auto;
}
[data-area='products'] .content .title-container .article-area {
  max-width: 420px;
  width: 100%;
}
@media (max-width: 1024px) {
  [data-area='products'] .content .title-container .article-area {
    max-width: unset;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    padding: 0 5vw;
  }
}
@media (max-width: 767px) {
  [data-area='products'] .content .title-container .article-area {
    margin-right: auto;
    padding: 0 10px;
  }
}
[data-area='products'] .content .title-container .article-info-container {
  max-width: 420px;
  width: 100%;
  margin-top: 45px;
}
@media (max-width: 1024px) {
  [data-area='products'] .content .title-container .article-info-container {
    max-width: unset;
    padding: 20px 0;
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  [data-area='products'] .content .title-container .article-info-container {
    margin-top: 0;
  }
}
[data-area='products']
  .content
  .title-container
  .article-info-container
  .article-title
  .heading2
  span {
  position: relative;
}
[data-area='products']
  .content
  .title-container
  .article-info-container
  .article-title
  .heading2
  span::before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: calc(100% + 10px);
  width: 65px;
  height: 2px;
  background-color: #889eb9;
}

[data-area='products'] .products-container {
  position: relative;
  width: 71%;
  margin-left: auto;
  padding-top: 25vh;
  padding-bottom: 21.5vh;
}
@media all and (max-width: 1024px) {
  [data-area='products'] .products-container {
    width: 100%;
    max-width: 100%;
    padding-top: 40px;
    padding-bottom: 100px;
  }
  [data-area='products'] .products-container .article-area {
    max-width: unset !important;
  }
}

[data-area='products'] img {
  display: block;
}
@media (max-width: 1024px) {
  [data-area='products'] img {
    max-height: 70vh;
  }
}
@media (max-width: 700px) {
  [data-area='products'] img {
    max-height: 90vh;
  }
}

[data-area='products'] .figure-container {
  position: relative;
  z-index: 1;
}
[data-area='products'] .figure-container .figure {
  position: relative;
}
[data-area='products'] .figure-container .figure .pic,
[data-area='products'] .figure-container .figure .article {
  opacity: 0;
}
[data-area='products'] .figure-container .figure.in .pic {
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
}
[data-area='products'] .figure-container .figure.in .article.show {
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
}
[data-area='products'] .figure-container .figure-artistic {
  position: absolute;
  right: -20%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  z-index: 2;
  -webkit-transition: opacity 0.6s ease;
  -o-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
[data-area='products'] .figure-container .figure-artistic img {
  max-width: 40vw;
}
[data-area='products'] .figure-container .figure-artistic .article {
  position: absolute;
  top: 30%;
  left: 15%;
  opacity: 0;
}
[data-area='products'] .figure-container .figure-artistic .article .heading4,
[data-area='products'] .figure-container .figure-artistic .article .heading5 {
  margin: 0;
}
@media (max-width: 991px) {
  [data-area='products'] .figure-container .figure-artistic {
    display: none;
  }
}

[data-area='products'] .figure-box .figure-artistic + .figure {
  -webkit-transition: opacity 0.6s ease;
  -o-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

@media (min-width: 992px) {
  [data-area='products'] .figure-box:hover .figure-container .figure-artistic {
    opacity: 1;
  }
  [data-area='products'] .figure-box:hover .figure-artistic + .figure {
    opacity: 0;
  }
}

[data-area='products'] .article-container .article {
  padding-bottom: 45px;
  min-width: 340px;
}
body[data-page='product_series'] [data-area='products'] .article-container .article {
  min-width: 340px;
  max-width: 360px;
}

[data-area='products'] .figure-box[data-article-position='close'] .article-container .article {
  max-width: 100%;
  min-width: 300px;
  width: 100%;
}

@media (max-width: 991px) {
  body[data-page='home'] .figure-boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media (max-width: 1024px) {
  body[data-page='home'] .figure-box {
    display: none;
  }
}

@media (max-width: 1024px) {
  body[data-page='home'] .figure-box:nth-child(2),
  body[data-page='home'] .figure-box:nth-child(3) {
    display: block;
  }
}

@media all and (max-width: 1024px) {
  body[data-page='home'] .figure-box:not([data-article-position='close']) {
    width: 80% !important;
  }
}

@media (max-width: 1199px) {
  body[data-page='home'] .figure-box .pic {
    z-index: 2;
  }
}

@media (max-width: 1199px) {
  body[data-page='home'] .figure-box .article-container .article {
    position: absolute;
    top: 100%;
  }
}

@media (max-width: 767px) {
  body[data-page='home'] .figure-box .article-container .article {
    min-width: 300px;
  }
}

@media (max-width: 375px) {
  body[data-page='home'] .figure-box .article-container .article {
    min-width: 260px;
  }
}

body[data-page='home'] .figure-box .article-container .learnMore {
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 15px 0 0;
}
@media (min-width: 1025px) {
  body[data-page='home'] .figure-box .article-container .learnMore {
    display: none;
  }
}
body[data-page='home'] .figure-box .article-container .learnMore:before {
  font-family: 'icomoon';
  content: '\e90b';
  font-weight: bold;
  font-size: 0.9375rem;
  display: block;
  margin-right: 10px;
}

@media (max-width: 1199px) {
  body[data-page='home'] .figure-box:not([data-article-position='close']) + .figure-box {
    margin-top: 250px !important;
  }
}

@media (max-width: 700px) {
  body[data-page='home'] .figure-box:not([data-article-position='close']) + .figure-box {
    margin-top: 230px !important;
  }
}

@media (max-width: 1199px) {
  body[data-page='home'] .figure-box:not([data-article-position='close']):nth-of-type(even) {
    margin-left: 15% !important;
    margin-right: 5% !important;
  }
}

@media (max-width: 991px) {
  body[data-page='home'] .figure-box:not([data-article-position='close']):nth-of-type(even) {
    margin-left: auto !important;
    margin-right: 5vw !important;
  }
}

@media (max-width: 991px) {
  body[data-page='home']
    .figure-box:not([data-article-position='close']):nth-of-type(even)
    .article-container {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (max-width: 1199px) {
  body[data-page='home']
    .figure-box:not([data-article-position='close']):nth-of-type(even)
    .article-container
    .article {
    -webkit-transform: translate(-25%, -70px) !important;
    -ms-transform: translate(-25%, -70px) !important;
    transform: translate(-25%, -70px) !important;
  }
}

@media (max-width: 575px) {
  body[data-page='home']
    .figure-box:not([data-article-position='close']):nth-of-type(even)
    .article-container
    .article {
    -webkit-transform: translate(-25%, -40px) !important;
    -ms-transform: translate(-25%, -40px) !important;
    transform: translate(-25%, -40px) !important;
  }
}

@media (max-width: 1199px) {
  body[data-page='home'] .figure-box:not([data-article-position='close']):nth-of-type(odd) {
    margin-left: 5% !important;
    margin-right: 15% !important;
  }
}

@media (max-width: 991px) {
  body[data-page='home'] .figure-box:not([data-article-position='close']):nth-of-type(odd) {
    margin-left: 5vw !important;
    margin-right: auto !important;
  }
}

@media (max-width: 1199px) {
  body[data-page='home']
    .figure-box:not([data-article-position='close']):nth-of-type(odd)
    .article {
    -webkit-transform: translate(25%, -70px) !important;
    -ms-transform: translate(25%, -70px) !important;
    transform: translate(25%, -70px) !important;
  }
}

@media (max-width: 575px) {
  body[data-page='home']
    .figure-box:not([data-article-position='close']):nth-of-type(odd)
    .article {
    -webkit-transform: translate(25%, -40px) !important;
    -ms-transform: translate(25%, -40px) !important;
    transform: translate(25%, -40px) !important;
  }
}

@media (max-width: 575px) {
  body[data-page='home']
    .figure-box:not([data-article-position='close'])[data-article-position='inside']
    .article {
    padding-top: 70px;
    padding-bottom: 30px;
  }
}

@media (max-width: 375px) {
  body[data-page='home']
    .figure-box:not([data-article-position='close'])[data-article-position='inside']
    .article {
    padding-top: 65px;
  }
}

@media (max-width: 575px) {
  body[data-page='home']
    .figure-box:not([data-article-position='close'])[data-article-position='inside']:nth-of-type(even) {
    width: calc(100% - 100px) !important;
    margin-left: auto !important;
    margin-right: 20px !important;
    float: right;
  }
}

@media (max-width: 375px) {
  body[data-page='home']
    .figure-box:not([data-article-position='close'])[data-article-position='inside']:nth-of-type(even) {
    width: calc(100% - 60px) !important;
    margin-left: auto !important;
    margin-right: 15px !important;
  }
}

@media (max-width: 1199px) {
  body[data-page='home']
    .figure-box:not([data-article-position='close'])[data-article-position='inside']:nth-of-type(even)
    .article {
    -webkit-transform: translate(-25%, -70px) !important;
    -ms-transform: translate(-25%, -70px) !important;
    transform: translate(-25%, -70px) !important;
  }
}

@media (max-width: 1024px) {
  body[data-page='home']
    .figure-box:not([data-article-position='close'])[data-article-position='inside']:nth-of-type(even)
    .article {
    -webkit-transform: translate(-50%, -70px) !important;
    -ms-transform: translate(-50%, -70px) !important;
    transform: translate(-50%, -70px) !important;
  }
}

@media (max-width: 767px) {
  body[data-page='home']
    .figure-box:not([data-article-position='close'])[data-article-position='inside']:nth-of-type(even)
    .article {
    -webkit-transform: translate(-55px, -70px) !important;
    -ms-transform: translate(-55px, -70px) !important;
    transform: translate(-55px, -70px) !important;
  }
}

@media (max-width: 575px) {
  body[data-page='home']
    .figure-box:not([data-article-position='close'])[data-article-position='inside']:nth-of-type(even)
    .article {
    -webkit-transform: translate(-55px, -40px) !important;
    -ms-transform: translate(-55px, -40px) !important;
    transform: translate(-55px, -40px) !important;
  }
}

@media (max-width: 375px) {
  body[data-page='home']
    .figure-box:not([data-article-position='close'])[data-article-position='inside']:nth-of-type(even)
    .article {
    -webkit-transform: translate(-30px, -40px) !important;
    -ms-transform: translate(-30px, -40px) !important;
    transform: translate(-30px, -40px) !important;
  }
}

@media (max-width: 575px) {
  body[data-page='home']
    .figure-box:not([data-article-position='close'])[data-article-position='inside']:nth-of-type(odd) {
    width: calc(100% - 100px) !important;
    margin-left: 20px !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 375px) {
  body[data-page='home']
    .figure-box:not([data-article-position='close'])[data-article-position='inside']:nth-of-type(odd) {
    width: calc(100% - 60px) !important;
    margin-left: 15px !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 1199px) {
  body[data-page='home']
    .figure-box:not([data-article-position='close'])[data-article-position='inside']:nth-of-type(odd)
    .article {
    -webkit-transform: translate(25%, -70px) !important;
    -ms-transform: translate(25%, -70px) !important;
    transform: translate(25%, -70px) !important;
  }
}

@media (max-width: 767px) {
  body[data-page='home']
    .figure-box:not([data-article-position='close'])[data-article-position='inside']:nth-of-type(odd)
    .article {
    -webkit-transform: translate(55px, -70px) !important;
    -ms-transform: translate(55px, -70px) !important;
    transform: translate(55px, -70px) !important;
  }
}

@media (max-width: 575px) {
  body[data-page='home']
    .figure-box:not([data-article-position='close'])[data-article-position='inside']:nth-of-type(odd)
    .article {
    -webkit-transform: translate(55px, -40px) !important;
    -ms-transform: translate(55px, -40px) !important;
    transform: translate(55px, -40px) !important;
  }
}

@media (max-width: 375px) {
  body[data-page='home']
    .figure-box:not([data-article-position='close'])[data-article-position='inside']:nth-of-type(odd)
    .article {
    -webkit-transform: translate(30px, -40px) !important;
    -ms-transform: translate(30px, -40px) !important;
    transform: translate(30px, -40px) !important;
  }
}

@media (max-width: 1199px) {
  body[data-page='home'] .figure-box[data-article-position='inside'] .article-container,
  body[data-page='home'] .figure-box[data-article-position='outside'] .article-container {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
}

@media (max-width: 1459px) {
  body[data-page='home'] .figure-box[data-article-position='close'] {
    min-width: 300px;
  }
}

@media (max-width: 1199px) {
  body[data-page='home'] .figure-box[data-article-position='close'] {
    margin-top: 10% !important;
    max-width: 300px !important;
  }
}

@media (max-width: 1024px) {
  body[data-page='home'] .figure-box[data-article-position='close'] {
    margin-top: 0px !important;
    width: auto !important;
    max-width: unset !important;
  }
}

@media (max-width: 767px) {
  body[data-page='home'] .figure-box[data-article-position='close'] {
    width: auto !important;
    max-width: 50vw !important;
    margin-top: 10vw !important;
  }
}

@media all and (min-width: 480px) and (max-width: 575px) {
  body[data-page='home'] .figure-box[data-article-position='close'] {
    width: calc(420px - 100px) !important;
    max-width: calc(420px - 100px) !important;
  }
}

@media (max-width: 479px) {
  body[data-page='home'] .figure-box[data-article-position='close'] {
    width: calc(100% - 40px) !important;
    max-width: 300px !important;
    min-width: 0;
    margin-left: calc((100vw - 300px) / 2) !important;
    margin-right: calc((100vw - 300px) / 2) !important;
  }
}

@media (max-width: 375px) {
  body[data-page='home'] .figure-box[data-article-position='close'] {
    width: 260px !important;
    max-width: 260px !important;
    min-width: 0;
    margin-left: calc((100vw - 260px) / 2) !important;
    margin-right: calc((100vw - 260px) / 2) !important;
  }
}

@media (max-width: 1199px) {
  body[data-page='home'] .figure-box[data-article-position='close']:nth-child(odd) {
    margin-left: 10% !important;
    margin-right: 50% !important;
  }
}

@media (max-width: 767px) {
  body[data-page='home'] .figure-box[data-article-position='close']:nth-child(odd) {
    margin-left: 10vw !important;
    margin-right: 40vw !important;
  }
}

@media all and (min-width: 480px) and (max-width: 575px) {
  body[data-page='home'] .figure-box[data-article-position='close']:nth-child(odd) {
    margin-left: 80px !important;
    margin-right: 20px !important;
    float: right !important;
  }
}

@media (max-width: 479px) {
  body[data-page='home'] .figure-box[data-article-position='close']:nth-child(odd) {
    margin-left: calc((100vw - 300px) / 2) !important;
    margin-right: calc((100vw - 300px) / 2) !important;
  }
}

@media (max-width: 375px) {
  body[data-page='home'] .figure-box[data-article-position='close']:nth-child(odd) {
    margin-left: calc((100vw - 260px) / 2) !important;
    margin-right: calc((100vw - 260px) / 2) !important;
  }
}

@media (max-width: 1199px) {
  body[data-page='home'] .figure-box[data-article-position='close']:nth-child(even) {
    margin-left: 50% !important;
    margin-right: 10% !important;
  }
}

@media (max-width: 767px) {
  body[data-page='home'] .figure-box[data-article-position='close']:nth-child(even) {
    margin-left: 40vw !important;
    margin-right: 10vw !important;
  }
}

@media all and (min-width: 480px) and (max-width: 575px) {
  body[data-page='home'] .figure-box[data-article-position='close']:nth-child(even) {
    margin-left: 20px !important;
    margin-right: 80px !important;
  }
}

@media (max-width: 479px) {
  body[data-page='home'] .figure-box[data-article-position='close']:nth-child(even) {
    margin-left: calc((100vw - 300px) / 2) !important;
    margin-right: calc((100vw - 300px) / 2) !important;
  }
}

@media (max-width: 375px) {
  body[data-page='home'] .figure-box[data-article-position='close']:nth-child(even) {
    margin-left: calc((100vw - 260px) / 2) !important;
    margin-right: calc((100vw - 260px) / 2) !important;
  }
}

@media (max-width: 479px) {
  body[data-page='home'] .figure-box[data-article-position='close'] .article-container .article {
    min-width: 100% !important;
  }
}

@media (max-width: 375px) {
  body[data-page='home'] .figure-box[data-article-position='close'] .article-container .article {
    min-width: 100% !important;
  }
}

@media (max-width: 375px) {
  body[data-page='home'] .figure-box[data-article-position='close'] .pic img {
    width: 180px;
  }
}

@media (max-width: 991px) {
  body[data-page='home'] [data-area='products'] .content .title-container {
    padding-bottom: 40px;
  }
}

@media (max-width: 991px) {
  body[data-page='home'] [data-area='products'] .content .products-container {
    padding-top: 70px;
    padding-bottom: 100px;
  }
}

@media (max-width: 700px) {
  body[data-page='home'] [data-area='products'] .content .products-container {
    padding-top: 0;
  }
}

[data-page='home'] [data-area='news'] .news-container {
  position: relative;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
[data-page='home'] [data-area='news'] .news-container .news-group {
  position: relative;
  z-index: 1;
  max-width: 1655px;
  width: 100%;
  margin: auto;
}
@media all and (max-width: 1200px) {
  [data-page='home'] [data-area='news'] .news-container .news-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
[data-page='home'] [data-area='news'] .news-container .decorate-line-container {
  z-index: 0;
  height: 100%;
}
@media (max-width: 991px) {
  [data-page='home'] [data-area='news'] .news-container .decorate-line-container {
    width: 100%;
  }
}
[data-page='home'] [data-area='news'] .news-container .decorate-line-container .decorate-line {
  left: 45%;
  -webkit-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
}
@media (max-width: 991px) {
  [data-page='home'] [data-area='news'] .news-container .decorate-line-container .decorate-line {
    left: 0%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    top: 0%;
    max-width: 60vw;
  }
}
[data-page='home'] [data-area='news'] .news-container .decorate-line-container .decorate-animal {
  position: absolute;
  left: 60%;
  top: 90%;
  -webkit-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
}
@media (max-width: 991px) {
  [data-page='home'] [data-area='news'] .news-container .decorate-line-container .decorate-animal {
    left: 80%;
    top: 20%;
    max-width: 20vw;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
[data-page='home'] [data-area='news'] .news-container .main-nav-tabs-area {
  padding: 0 0 0 15px;
}
@media (max-width: 1024px) {
  [data-page='home'] [data-area='news'] .news-container .main-nav-tabs-area {
    margin: 30px 0 0;
    padding: 0;
  }
}
@media (max-width: 767px) {
  [data-page='home'] [data-area='news'] .news-container .main-nav-tabs-area {
    width: 360px;
    max-width: 100%;
  }
}
@media (max-width: 479px) {
  [data-page='home'] [data-area='news'] .news-container .main-nav-tabs-area {
    width: 100%;
    margin: 20px 0 0 -5px;
  }
}
@media (max-width: 767px) {
  [data-page='home'] [data-area='news'] .news-container .main-nav-tabs-area .selectVal,
  [data-page='home'] [data-area='news'] .news-container .main-nav-tabs-area .nav-tabs {
    width: 100%;
  }
}
[data-page='home'] [data-area='news'] .news-container .main-nav-tabs-area .nav-tabs {
  margin-top: 45px;
}
@media (max-width: 1365px) {
  [data-page='home'] [data-area='news'] .news-container .main-nav-tabs-area .nav-tabs {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  [data-page='home'] [data-area='news'] .news-container .main-nav-tabs-area .nav-tabs {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  [data-page='home'] [data-area='news'] .news-container .main-nav-tabs-area .nav-tabs {
    margin-top: 0;
  }
}
[data-page='home'] [data-area='news'] .news-container .main-nav-tabs-area .nav-tabs .nav-item {
  margin-right: 25px;
  margin-left: 0 !important;
  margin-bottom: 25px;
}
@media (max-width: 1199px) {
  [data-page='home'] [data-area='news'] .news-container .main-nav-tabs-area .nav-tabs .nav-item {
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  [data-page='home'] [data-area='news'] .news-container .main-nav-tabs-area .nav-tabs .nav-item {
    margin-right: 0;
  }
}
[data-page='home'] [data-area='news'] .news-container .left {
  padding: 80px 0 0 50px;
  position: relative;
  z-index: 10;
}
@media (max-width: 1200px) {
  [data-page='home'] [data-area='news'] .news-container .left {
    max-width: unset;
    padding: 70px 50px 30px;
    margin-left: 0;
  }
}
@media (max-width: 1024px) {
  [data-page='home'] [data-area='news'] .news-container .left {
    padding: 30px 50px;
  }
}
@media (max-width: 479px) {
  [data-page='home'] [data-area='news'] .news-container .left {
    padding: 0 15px 30px;
    padding-top: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 479px) {
  [data-page='home'] [data-area='news'] .news-container .left .article-container {
    padding-left: 25px;
    padding-right: 25px;
  }
}
[data-page='home'] [data-area='news'] .news-container .right {
  padding: 0 60px;
}
@media (max-width: 1200px) and (min-width: 1025px) {
  [data-page='home'] [data-area='news'] .news-container .right {
    max-width: 90vw;
    margin: 60px 0 0 auto;
    padding: 0 50px;
  }
}
@media (max-width: 1024px) {
  [data-page='home'] [data-area='news'] .news-container .right {
    max-width: unset;
    margin: 0;
  }
}
@media (max-width: 479px) {
  [data-page='home'] [data-area='news'] .news-container .right {
    padding: 0;
  }
}
[data-page='home'] [data-area='news'] .news-container .right .article-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100% - 310px);
}
@media (max-width: 1655px) {
  [data-page='home'] [data-area='news'] .news-container .right .article-container {
    width: calc(60% - 20px);
  }
}
@media (max-width: 599px) {
  [data-page='home'] [data-area='news'] .news-container .right .article-container {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
  }
}
[data-page='home'] [data-area='news'] .news-container .right .article-container .info .heading4 {
  color: rgba(0, 0, 0, 0.8);
}
[data-page='home'] [data-area='news'] .news-container .right .article-container .info p {
  color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 40px;
}

[data-page='home'] [data-area='news'] .news_lists_slider {
  max-width: 950px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  [data-page='home'] [data-area='news'] .news_lists_slider {
    width: 100%;
  }
}
@media (max-width: 767px) {
  [data-page='home'] [data-area='news'] .news_lists_slider {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 479px) {
  [data-page='home'] [data-area='news'] .news_lists_slider {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 599px) {
  [data-page='home'] [data-area='news'] .news_lists_slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
[data-page='home'] [data-area='news'] .news_lists_slider .list-item-group:nth-child(2) {
  margin-top: 60px;
}
[data-page='home'] [data-area='news'] .news_lists_slider .slick-arrow {
  padding: 0 0 0 5px;
}
@media (max-width: 479px) {
  [data-page='home'] [data-area='news'] .news_lists_slider .slick-arrow {
    width: 30px;
    height: 30px;
    top: calc(50% - 25px);
  }
}
@media (max-width: 479px) {
  [data-page='home'] [data-area='news'] .news_lists_slider .slick-arrow:before {
    font-size: 0.75rem;
  }
}
[data-page='home'] [data-area='news'] .news_lists_slider .slick-arrow.slick-prev {
  left: 5px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  [data-page='home'] [data-area='news'] .news_lists_slider .slick-arrow.slick-prev {
    left: 10px;
  }
}
[data-page='home'] [data-area='news'] .news_lists_slider .slick-arrow.slick-next {
  right: 5px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  [data-page='home'] [data-area='news'] .news_lists_slider .slick-arrow.slick-next {
    right: 10px;
  }
}
[data-page='home'] [data-area='news'] .news_lists_slider .list-item {
  text-align: center;
}
@media (max-width: 575px) {
  [data-page='home'] [data-area='news'] .news_lists_slider .list-item {
    max-width: 90%;
  }
}
@media (max-width: 479px) {
  [data-page='home'] [data-area='news'] .news_lists_slider .list-item {
    max-width: 100%;
    margin: 0 5px;
  }
}
[data-page='home'] [data-area='news'] .news_lists_slider .list-item.slick-slide .list-item-group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
[data-page='home'] [data-area='news'] .news_lists_slider .list-item-group {
  text-align: left;
  display: none;
  max-width: 100%;
  margin: auto;
  margin-left: -30px;
  margin-right: -30px;
}
@media (min-width: 600px) {
  [data-page='home'] [data-area='news'] .news_lists_slider .list-item-group {
    width: calc(100% - 90px);
  }
  [data-page='home'] [data-area='news'] .news_lists_slider .list-item-group:nth-of-type(odd) {
    margin-left: 90px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  [data-page='home'] [data-area='news'] .news_lists_slider .list-item-group:nth-of-type(odd) {
    margin-left: 0;
  }
  [data-page='home'] [data-area='news'] .news_lists_slider .list-item-group:nth-of-type(even) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  [data-page='home'] [data-area='news'] .news_lists_slider .list-item-group {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 767px) {
  [data-page='home'] [data-area='news'] .news_lists_slider .list-item-group {
    width: calc(100% - 90px);
  }
  [data-page='home'] [data-area='news'] .news_lists_slider .list-item-group:nth-of-type(odd) {
    margin-left: 90px;
  }
}
@media (max-width: 599px) {
  [data-page='home'] [data-area='news'] .news_lists_slider .list-item-group {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
[data-page='home'] [data-area='news'] .news_lists_slider .list-item-group .pic-group,
[data-page='home'] [data-area='news'] .news_lists_slider .list-item-group .article-container {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 1439px) {
  [data-page='home'] [data-area='news'] .news_lists_slider .list-item-group .pic-group {
    padding-left: 0;
    padding-right: 0;
  }
}
[data-page='home'] [data-area='news'] .news_lists_slider .list-item-group .article-container {
  margin-left: 20px;
}
@media (max-width: 1439px) {
  [data-page='home'] [data-area='news'] .news_lists_slider .list-item-group .article-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
[data-page='home'] [data-area='news'] .news_lists_slider .pic-group {
  width: 290px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
@media (max-width: 1655px) {
  [data-page='home'] [data-area='news'] .news_lists_slider .pic-group {
    width: 40%;
  }
}
@media (max-width: 599px) {
  [data-page='home'] [data-area='news'] .news_lists_slider .pic-group {
    width: 100%;
    margin: auto;
  }
}
@media (max-width: 599px) {
  [data-page='home'] [data-area='news'] .news_lists_slider .pic-group.pic-portrait-container,
  [data-page='home'] [data-area='news'] .news_lists_slider .pic-group.pic-landscape-container {
    width: 70%;
    max-width: 70%;
  }
}
@media (max-width: 479px) {
  [data-page='home'] [data-area='news'] .news_lists_slider .pic-group.pic-portrait-container,
  [data-page='home'] [data-area='news'] .news_lists_slider .pic-group.pic-landscape-container {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 1365px) {
  [data-page='home']
    [data-area='news']
    .news_lists_slider
    .pic-group.pic-portrait-container
    .pic-area,
  [data-page='home']
    [data-area='news']
    .news_lists_slider
    .pic-group.pic-landscape-container
    .pic-area {
    width: 100%;
  }
}
[data-page='home'] [data-area='news'] .news_lists_slider .pic-group .date {
  position: absolute;
  right: -20px;
  bottom: 0;
  color: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}
@media (max-width: 599px) {
  [data-page='home'] [data-area='news'] .news_lists_slider .pic-group .date {
    position: relative;
    right: auto;
    left: auto;
  }
}
[data-page='home'] [data-area='news'] .news_lists_slider .pic-group.pic-portrait-container {
  max-width: 325px;
}
[data-page='home']
  [data-area='news']
  .news_lists_slider
  .pic-group.pic-portrait-container
  .pic-area {
  width: 100%;
  padding-bottom: 100%;
}
[data-page='home'] [data-area='news'] .news_lists_slider .pic-group.pic-portrait-container .date {
  right: 12px;
  bottom: 0;
}
@media (max-width: 599px) {
  [data-page='home'] [data-area='news'] .news_lists_slider .pic-group.pic-portrait-container .date {
    right: auto;
    left: 20px;
  }
}
[data-page='home'] [data-area='news'] .news_lists_slider .pic-group.pic-landscape-container {
  max-width: 350px;
}
[data-page='home']
  [data-area='news']
  .news_lists_slider
  .pic-group.pic-landscape-container
  .pic-area {
  width: 100%;
  padding-bottom: 91.37%;
}
[data-page='home'] [data-area='news'] .news_lists_slider .pic-group .pic-area {
  position: relative;
}
[data-page='home'] [data-area='news'] .news_lists_slider .pic-group .pic-area .pic {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

[data-area='artist'] .artist-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
[data-area='artist'] .artist-group .article-container,
[data-area='artist'] .artist-group .pic-container {
  max-width: 50%;
}
[data-area='artist'] .artist-group .article-container {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
[data-area='artist'] .artist-group .pic-container {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media (min-width: 768px) and (max-width: 1199px) {
  [data-area='artist'] .artist-group .article-container,
  [data-area='artist'] .artist-group .pic-container {
    max-width: 50%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  [data-area='artist'] .artist-group {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  [data-area='artist'] .artist-group .article-container,
  [data-area='artist'] .artist-group .pic-container {
    max-width: 60%;
  }
}
@media (max-width: 575px) {
  [data-area='artist'] .artist-group .article-container,
  [data-area='artist'] .artist-group .pic-container {
    max-width: 80%;
  }
}
@media (max-width: 479px) {
  [data-area='artist'] .artist-group .article-title-container,
  [data-area='artist'] .artist-group .article-container,
  [data-area='artist'] .artist-group .pic-container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
[data-area='artist'] .artist-group .article-container .article-area,
[data-area='artist'] .artist-group .article-title-container .article-title {
  padding-left: 20%;
  padding-right: 5%;
  width: 800px;
  max-width: 95%;
}
@media (min-width: 1200px) and (max-width: 1365px) {
  [data-area='artist'] .artist-group .article-container .article-area,
  [data-area='artist'] .artist-group .article-title-container .article-title {
    padding-left: 10%;
    max-width: 100%;
  }
}
@media (min-width: 576px) and (max-width: 1199px) {
  [data-area='artist'] .artist-group .article-container .article-area,
  [data-area='artist'] .artist-group .article-title-container .article-title {
    padding-left: 10%;
    max-width: 100%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  [data-area='artist'] .artist-group .article-container .article-area,
  [data-area='artist'] .artist-group .article-title-container .article-title {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  [data-area='artist'] .artist-group .article-container .article-area,
  [data-area='artist'] .artist-group .article-title-container .article-title {
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media (max-width: 479px) {
  [data-area='artist'] .artist-group .article-container .article-area,
  [data-area='artist'] .artist-group .article-title-container .article-title {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
[data-area='artist'] .artist-group .article-title-container {
  max-width: 100%;
  margin-bottom: -140px;
}
[data-area='artist'] .artist-group .article-title-container .article-title-area {
  max-width: 50%;
  margin-left: auto;
}
@media (min-width: 576px) and (max-width: 1199px) {
  [data-area='artist'] .artist-group .article-title-container {
    position: absolute;
    top: 0;
    left: 0;
  }
  [data-area='artist'] .artist-group .article-title-container .article-title-area {
    margin-left: 0;
    max-width: 60%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  [data-area='artist'] .artist-group .article-title-container {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
  [data-area='artist'] .artist-group .article-title-container .article-title-area {
    max-width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  [data-area='artist'] .artist-group .article-title-container {
    position: relative;
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  [data-area='artist'] .artist-group .article-title-container {
    margin-bottom: 0;
  }
  [data-area='artist'] .artist-group .article-title-container .article-title-area {
    max-width: 100%;
  }
  [data-area='artist'] .artist-group .article-title-container .article-title-area .article-title {
    padding-bottom: 30px;
    max-width: 480px;
  }
}
[data-area='artist'] .artist-group .article-container {
  padding-top: 220px;
}
[data-area='artist'] .artist-group .article-container .article-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 100%;
}
@media (min-width: 576px) and (max-width: 1199px) {
  [data-area='artist'] .artist-group .article-container .article-area {
    padding-top: 0;
  }
}
@media (max-width: 575px) {
  [data-area='artist'] .artist-group .article-container .article-area {
    padding-top: 20px;
    margin: auto;
  }
}
[data-area='artist'] .artist-group .article-container .article-area .article-slider {
  width: 100%;
}
[data-area='artist'] .artist-group .article-container .article-area .article-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
[data-area='artist']
  .artist-group
  .article-container
  .article-area
  .article-slider
  .slick-track
  .slick-slide {
  float: none;
}
[data-area='artist']
  .artist-group
  .article-container
  .article-area
  .article-slider
  .slick-track
  .slick-slide
  > div {
  text-align: center;
}
[data-area='artist']
  .artist-group
  .article-container
  .article-area
  .article-slider
  .slick-track
  .slick-slide
  .list-item {
  padding-left: 20%;
  padding-right: 5%;
}
@media (max-width: 1199px) {
  [data-area='artist']
    .artist-group
    .article-container
    .article-area
    .article-slider
    .slick-track
    .slick-slide
    .list-item {
    padding-left: 15%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  [data-area='artist']
    .artist-group
    .article-container
    .article-area
    .article-slider
    .slick-track
    .slick-slide
    .list-item {
    padding-left: 0;
    padding-right: 0;
  }
  [data-area='artist']
    .artist-group
    .article-container
    .article-area
    .article-slider
    .slick-track
    .slick-slide
    .list-item
    img {
    margin: auto;
  }
}
@media (max-width: 575px) {
  [data-area='artist']
    .artist-group
    .article-container
    .article-area
    .article-slider
    .slick-track
    .slick-slide
    .list-item {
    padding-left: 0;
    padding-right: 0;
  }
  [data-area='artist']
    .artist-group
    .article-container
    .article-area
    .article-slider
    .slick-track
    .slick-slide
    .list-item
    .pic
    img {
    margin: auto;
  }
}
[data-area='artist'] .artist-group .article-container .article-area .article-slider .pic,
[data-area='artist'] .artist-group .article-container .article-area .article-slider .article {
  padding-top: 40px;
}
[data-area='artist']
  .artist-group
  .article-container
  .article-area
  .article-slider
  .article
  .group {
  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;
  margin-left: -40px;
  margin-right: -40px;
}
@media (max-width: 1199px) {
  [data-area='artist']
    .artist-group
    .article-container
    .article-area
    .article-slider
    .article
    .group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-left: -20px;
    margin-right: -20px;
  }
}
[data-area='artist']
  .artist-group
  .article-container
  .article-area
  .article-slider
  .article
  .group
  .name,
[data-area='artist']
  .artist-group
  .article-container
  .article-area
  .article-slider
  .article
  .group
  .info {
  padding: 0 40px;
  text-align: left;
}
@media (max-width: 1199px) {
  [data-area='artist']
    .artist-group
    .article-container
    .article-area
    .article-slider
    .article
    .group
    .name,
  [data-area='artist']
    .artist-group
    .article-container
    .article-area
    .article-slider
    .article
    .group
    .info {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
[data-area='artist']
  .artist-group
  .article-container
  .article-area
  .article-slider
  .article
  .group
  .name {
  max-width: 45%;
}
[data-area='artist']
  .artist-group
  .article-container
  .article-area
  .article-slider
  .article
  .group
  .name
  .heading4 {
  margin-bottom: 0;
}
[data-area='artist']
  .artist-group
  .article-container
  .article-area
  .article-slider
  .article
  .group
  .info {
  max-width: 55%;
  text-align: left;
}
[data-area='artist']
  .artist-group
  .article-container
  .article-area
  .article-slider
  .article
  .group
  .hr {
  width: 4px;
  height: 50px;
  background-color: #000;
}
@media (max-width: 1199px) {
  [data-area='artist']
    .artist-group
    .article-container
    .article-area
    .article-slider
    .article
    .group
    .hr {
    width: 50px;
    height: 4px;
    margin-left: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
[data-area='artist']
  .artist-group
  .article-container
  .article-area
  .article-slider
  .article
  .btn-area {
  padding-top: 40px;
}
@media (max-width: 767px) {
  [data-area='artist']
    .artist-group
    .article-container
    .article-area
    .article-slider
    .article
    .btn-area {
    padding-top: 30px;
  }
}
@media (max-width: 575px) {
  [data-area='artist']
    .artist-group
    .article-container
    .article-area
    .article-slider
    .article
    .btn-area {
    padding-top: 20px;
  }
}
@media (max-width: 479px) {
  [data-area='artist']
    .artist-group
    .article-container
    .article-area
    .article-slider
    .article
    .btn-area {
    padding-top: 10px;
  }
}
[data-area='artist']
  .artist-group
  .article-container
  .article-area
  .article-slider
  .article
  .btn-area
  .btn {
  padding-left: 0;
  padding-right: 0;
}
[data-area='artist']
  .artist-group
  .article-container
  .article-area
  .article-slider
  .article
  .btn-area
  .txt {
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
[data-area='artist']
  .artist-group
  .article-container
  .article-area
  .article-slider
  .article
  .btn-area
  [class*='icon']::after {
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
[data-area='artist']
  .artist-group
  .article-container
  .article-area
  .article-slider
  .article
  .btn-area:hover
  .txt {
  color: #559198;
}
[data-area='artist'] .artist-group .pic-container {
  min-height: 755px;
}
@media (max-width: 767px) {
  [data-area='artist'] .artist-group .pic-container {
    max-width: 60%;
  }
}
@media (min-width: 576px) and (max-width: 1199px) {
  [data-area='artist'] .artist-group .pic-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    min-height: 0;
  }
}
@media (max-width: 575px) {
  [data-area='artist'] .artist-group .pic-container {
    margin: auto;
    min-height: 0;
    max-width: 100%;
  }
}
[data-area='artist'] .artist-group .pic-container .pic-area,
[data-area='artist'] .artist-group .pic-container .pic-slider,
[data-area='artist'] .artist-group .pic-container .slick-list,
[data-area='artist'] .artist-group .pic-container .slick-track {
  height: 100%;
}
@media (min-width: 576px) and (max-width: 1199px) {
  [data-area='artist'] .artist-group .pic-container .pic-area,
  [data-area='artist'] .artist-group .pic-container .pic-slider,
  [data-area='artist'] .artist-group .pic-container .slick-list,
  [data-area='artist'] .artist-group .pic-container .slick-track {
    height: auto;
  }
}
[data-area='artist'] .artist-group .pic-container .pic-area {
  position: relative;
}
@media (min-width: 576px) and (max-width: 1199px) {
  [data-area='artist'] .artist-group .pic-container .pic-area {
    width: 100%;
  }
}
@media (max-width: 767px) {
  [data-area='artist'] .artist-group .pic-container .pic-area {
    width: 100%;
  }
}
@media (min-width: 576px) and (max-width: 1199px) {
  [data-area='artist'] .artist-group .pic-container .pic-area .pic {
    background: none !important;
  }
}
@media (max-width: 767px) {
  [data-area='artist'] .artist-group .pic-container .pic-area .pic {
    background: none !important;
  }
}
@media (min-width: 576px) and (max-width: 1199px) {
  [data-area='artist'] .artist-group .pic-container .pic-area .pic img {
    display: block !important;
  }
}
@media (max-width: 767px) {
  [data-area='artist'] .artist-group .pic-container .pic-area .pic img {
    display: block !important;
  }
}
[data-area='artist'] .artist-group .pic-container .pic-area .slick-slide > div,
[data-area='artist'] .artist-group .pic-container .pic-area .slick-slide .list-item,
[data-area='artist'] .artist-group .pic-container .pic-area .slick-slide .list-item .pic {
  height: 100%;
}
@media (min-width: 576px) and (max-width: 1199px) {
  [data-area='artist'] .artist-group .pic-container .pic-area .slick-slide > div,
  [data-area='artist'] .artist-group .pic-container .pic-area .slick-slide .list-item,
  [data-area='artist'] .artist-group .pic-container .pic-area .slick-slide .list-item .pic {
    height: auto;
  }
}
@media (max-width: 991px) {
  [data-area='artist'] .artist-group .pic-container .pic-area .slick-arrows {
    width: 140px;
    height: 60px;
  }
}
@media (max-width: 479px) {
  [data-area='artist'] .artist-group .pic-container .pic-area .slick-arrows {
    height: 50px;
  }
}

[data-area='artist'] .slick-arrows.has-hr {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  width: 200px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
[data-area='artist'] .slick-arrows.has-hr .slick-group {
  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;
  width: 94px;
}
[data-area='artist'] .slick-arrows.has-hr .slick-arrow {
  position: relative;
  top: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  text-align: center;
}
[data-area='artist'] .slick-arrows.has-hr .slick-arrow::before {
  color: #000;
}
[data-area='artist'] .slick-arrows.has-hr .slick-arrow.slick-prev {
  left: 0%;
}
[data-area='artist'] .slick-arrows.has-hr .slick-arrow.slick-next {
  left: 0;
  right: auto;
}
[data-area='artist'] .slick-arrows.has-hr .slick-arrow.slick-next::after {
  display: none;
}

@media (max-width: 767px) {
  [data-page='news']
    .title-container
    .main-nav-tabs-area
    .nav-tabs.select-area
    .select-area_scroll
    span.tri {
    right: 25px;
    top: 20px;
  }
}

@media (max-width: 767px) {
  [data-page='news']
    .title-container
    .main-nav-tabs-area
    .nav-tabs.select-area
    .select-area_scroll
    li
    a {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 768px) {
  [data-page='news']
    [data-page='product_lists']
    .sub-navbar-main_inner
    .sub-navbar-main_inner__toggle
    .btn
    span.tri {
    border-width: 0 5.5px 8px 5.5px;
    border-color: transparent transparent #2e5e8d transparent;
  }
}

@media (min-width: 768px) {
  [data-page='news']
    [data-page='product_lists']
    .sub-navbar-main_inner
    .sub-navbar-main_inner__toggle
    .btn
    span.tri:before {
    top: -3px;
  }
}

@media (min-width: 768px) {
  [data-page='news'] [data-page='product_lists'] .sub-navbar-main_inner .select-area {
    top: auto;
    bottom: 0;
  }
}

@media (max-width: 767px) {
  [data-page='news'] [data-page='product_lists'] .sub-navbar-main_inner .select-area {
    top: 0;
    bottom: auto;
  }
}

@media (min-width: 768px) {
  [data-page='news'] [data-page='product_lists'] .sub-navbar-main_inner .select-area span.tri {
    border-width: 8px 5.5px 0 5.5px;
    border-color: #2e5e8d transparent transparent transparent;
  }
}

[data-page='news'] .products-container > .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

[data-page='news'] .main-nav-tabs-area .selectVal {
  background: #a7bed2;
}

[data-page='news'] .main-nav-tabs-area .nav-tabs {
  margin-left: 0;
}
[data-page='news'] .main-nav-tabs-area .nav-tabs .nav-item {
  margin-bottom: 15px;
  margin-left: 0;
  line-height: 1.5;
}

[data-page='news'] .main-nav-tabs-area + .select-container {
  margin-top: 15px;
}

[data-page='news'] .select-container .select-box .sub-navbar-main_inner__toggle {
  max-width: 100%;
  background: #a7bed2;
}
[data-page='news'] .select-container .select-box .sub-navbar-main_inner__toggle .btn {
  width: 290px;
  max-width: 100%;
}

[data-page='news'] [data-page-classify='product'] .sub-navbar-main_inner {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 1279px) {
  [data-page='news'] [data-area='products'] .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  [data-page='news'] [data-area='products'] .content .title-container,
  [data-page='news'] [data-area='products'] .content .products-container {
    width: 100%;
    max-width: 100%;
  }
}

[data-page='news'] [data-area='products'] .content .title-container {
  width: 33%;
  padding-top: 250px;
  padding-bottom: 45px;
  -webkit-transform: translateX(5vw);
  -ms-transform: translateX(5vw);
  transform: translateX(5vw);
  position: fixed;
}
@media (max-width: 1440px) {
  [data-page='news'] [data-area='products'] .content .title-container {
    padding-top: 200px;
  }
}
@media (max-width: 1279px) {
  [data-page='news'] [data-area='products'] .content .title-container {
    padding-top: 170px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    position: relative !important;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    padding-right: 60px;
    height: auto;
  }
}
@media (max-width: 1024px) and (min-aspect-ratio: 1 / 1) {
  [data-page='news'] [data-area='products'] .content .title-container {
    padding-top: 80px;
  }
}
@media (max-width: 900px) {
  [data-page='news'] [data-area='products'] .content .title-container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  [data-page='news'] [data-area='products'] .content .title-container {
    margin: auto;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 90%;
    padding-top: 50px;
    padding-bottom: 0;
  }
}
[data-page='news'] [data-area='products'] .content .title-container .position-absolute {
  position: absolute;
}
@media (max-width: 1279px) {
  [data-page='news'] [data-area='products'] .content .title-container .article-area,
  [data-page='news'] [data-area='products'] .content .title-container .article-info-container {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  [data-page='news'] [data-area='products'] .content .title-container .article-area,
  [data-page='news'] [data-area='products'] .content .title-container .article-info-container {
    width: 100%;
  }
}
[data-page='news']
  [data-area='products']
  .content
  .title-container
  .article-title-area
  + .article-info-container {
  padding-top: 20px;
  padding-bottom: 50px;
}
@media (max-width: 1279px) {
  [data-page='news']
    [data-area='products']
    .content
    .title-container
    .article-title-area
    + .article-info-container {
    padding-top: 100px;
  }
}
@media (max-width: 1024px) {
  [data-page='news']
    [data-area='products']
    .content
    .title-container
    .article-title-area
    + .article-info-container {
    padding-top: 20px;
  }
}
[data-page='news'] [data-area='products'] .content .title-container .article-info-container {
  opacity: 0;
  -webkit-animation: fadeIn 1s both 1s;
  animation: fadeIn 1s both 1s;
}
@media (max-width: 767px) {
  [data-page='news']
    [data-area='products']
    .content
    .title-container
    .article-info-container
    .article-area {
    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;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-height: 1279px) {
  [data-page='news']
    [data-area='products']
    .content
    .title-container
    .article-info-container
    .article-area {
    margin-bottom: 0;
  }
}
[data-page='news']
  [data-area='products']
  .content
  .title-container
  .article-info-container
  .article-area
  .article-title {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  [data-page='news']
    [data-area='products']
    .content
    .title-container
    .article-info-container
    .article-area
    .article-title {
    width: 100%;
  }
}
[data-page='news']
  [data-area='products']
  .content
  .title-container
  .article-info-container
  .article-area
  .article-title
  .info {
  padding-top: 30px;
}
@media (max-height: 899px) {
  [data-page='news']
    [data-area='products']
    .content
    .title-container
    .article-info-container
    .article-area
    .article-title
    .info {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media (max-width: 767px) {
  [data-page='news']
    [data-area='products']
    .content
    .title-container
    .article-info-container
    .article-area
    .article-title
    .info {
    padding-top: 10px;
  }
}
@media (max-width: 575px) {
  [data-page='news']
    [data-area='products']
    .content
    .title-container
    .article-info-container
    .article-area
    .article-title
    .info {
    padding-top: 15px;
  }
}
@media (max-width: 767px) {
  [data-page='news']
    [data-area='products']
    .content
    .title-container
    .article-info-container
    .article-area
    .main-nav-tabs-area,
  [data-page='news']
    [data-area='products']
    .content
    .title-container
    .article-info-container
    .article-area
    .select-container {
    width: 48%;
  }
}
@media (max-width: 575px) {
  [data-page='news']
    [data-area='products']
    .content
    .title-container
    .article-info-container
    .article-area
    .main-nav-tabs-area,
  [data-page='news']
    [data-area='products']
    .content
    .title-container
    .article-info-container
    .article-area
    .select-container {
    width: 300px;
  }
}
@media (max-width: 1279px) {
  [data-page='news']
    [data-area='products']
    .content
    .title-container
    .article-info-container
    .article-area
    .select-container {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  [data-page='news']
    [data-area='products']
    .content
    .title-container
    .article-info-container
    .article-area
    .select-container {
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  [data-page='news']
    [data-area='products']
    .content
    .title-container
    .article-info-container
    .article-area
    .select-container {
    margin-top: 20px;
  }
}
@media (max-width: 479px) {
  [data-page='news']
    [data-area='products']
    .content
    .title-container
    .article-info-container
    .article-area
    .select-container {
    width: 100%;
  }
}
@media (max-width: 767px) {
  [data-page='news']
    [data-area='products']
    .content
    .title-container
    .article-info-container
    .article-area
    .select-container
    .select-box
    .sub-navbar-main_inner__toggle {
    width: 100%;
    text-align: left;
  }
}

[data-page='news'] [data-area='products'] .content .products-container {
  width: 67%;
  min-height: 100vh;
  padding-left: 60px;
}
@media (max-width: 1500px) {
  [data-page='news'] [data-area='products'] .content .products-container {
    padding-left: 80px;
  }
}
@media (max-width: 1279px) {
  [data-page='news'] [data-area='products'] .content .products-container {
    width: 90%;
  }
}
@media (max-width: 900px) {
  [data-page='news'] [data-area='products'] .content .products-container {
    padding-left: 0;
    width: 100%;
  }
}
@media (max-width: 767px) {
  [data-page='news'] [data-area='products'] .content .products-container {
    padding-top: 50px;
    min-height: 0;
  }
}
@media (max-width: 479px) {
  [data-page='news'] [data-area='products'] .content .products-container {
    padding-top: 60px;
  }
}

[data-page='news'] [data-area='news'].products-container {
  padding-top: 250px;
}
@media (max-width: 1440px) {
  [data-page='news'] [data-area='news'].products-container {
    padding-top: 200px;
  }
}
@media (max-width: 1279px) {
  [data-page='news'] [data-area='news'].products-container {
    padding-top: 80px;
  }
}
@media (max-width: 575px) {
  [data-page='news'] [data-area='news'].products-container {
    padding-top: 60px;
  }
}

[data-page='news'] [data-area='news'] .news_lists_slider {
  position: relative;
}
@media (max-width: 900px) {
  [data-page='news'] [data-area='news'] .news_lists_slider {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media (max-width: 767px) {
  [data-page='news'] [data-area='news'] .news_lists_slider .list-item {
    max-width: 100%;
  }
}
[data-page='news'] [data-area='news'] .news_lists_slider .list-item + .list-item {
  margin-top: 140px;
}
@media (max-width: 1400px) {
  [data-page='news'] [data-area='news'] .news_lists_slider .list-item + .list-item {
    margin-top: 120px;
  }
}
@media (max-width: 767px) {
  [data-page='news'] [data-area='news'] .news_lists_slider .list-item + .list-item {
    margin-top: 100px;
  }
}
@media (max-width: 700px) {
  [data-page='news'] [data-area='news'] .news_lists_slider .list-item .pic-group {
    max-width: 400px !important;
    width: 100% !important;
    margin: auto !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item
    .pic-group.pic-landscape-container {
    max-width: 35vw;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item
    .pic-group.pic-portrait-container {
    max-width: 32.5vw;
  }
}
@media (max-width: 479px) {
  [data-page='news'] [data-area='news'] .news_lists_slider .list-item .pic-group .date {
    position: absolute;
    bottom: -15px !important;
    display: inline-block;
  }
}
@media (max-width: 700px) {
  [data-page='news'] [data-area='news'] .news_lists_slider .list-item .article-container {
    width: 100% !important;
    margin-top: 40px;
  }
}
@media (min-width: 576px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(odd)
    .list-item-group {
    padding-left: 0;
  }
}
@media (min-width: 576px) and (max-width: 1199px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(odd)
    .list-item-group {
    padding-left: 0;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  [data-page='news'] [data-area='news'] .news_lists_slider .list-item:nth-child(odd) .pic-group {
    padding-left: 0;
  }
}
@media (min-width: 699px) {
  [data-page='news'] [data-area='news'] .news_lists_slider .list-item:nth-child(odd) .pic-group {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media (max-width: 1459px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(odd)
    .pic-group
    .date {
    position: absolute;
  }
}
@media (min-width: 1366px) and (max-width: 1459px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(odd)
    .pic-group
    .date {
    right: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1365px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(odd)
    .pic-group
    .date {
    right: -10px;
  }
}
@media (max-width: 1199px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(odd)
    .pic-group
    .date {
    right: -10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(odd)
    .pic-group
    .date {
    right: -5px;
  }
}
@media (max-width: 767px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(odd)
    .pic-group
    .date {
    right: 0;
  }
}
@media (max-width: 576px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(odd)
    .pic-group
    .date {
    left: auto;
    right: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1365px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(odd)
    .article-container {
    padding-left: 40px;
    padding-right: 0;
  }
}
@media (min-width: 699px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(odd)
    .article-container {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(odd)
    .article-container {
    padding-right: 0;
  }
}
@media (min-width: 576px) and (max-width: 1199px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(even)
    .list-item-group {
    padding-right: 0;
    margin-right: 0;
  }
}
@media (max-width: 1199px) {
  [data-page='news'] [data-area='news'] .news_lists_slider .list-item:nth-child(even) .pic-group {
    margin-left: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='news'] [data-area='news'] .news_lists_slider .list-item:nth-child(even) .pic-group {
    padding-right: 0;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  [data-page='news'] [data-area='news'] .news_lists_slider .list-item:nth-child(even) .pic-group {
    padding-left: 0;
  }
}
@media (min-width: 699px) {
  [data-page='news'] [data-area='news'] .news_lists_slider .list-item:nth-child(even) .pic-group {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (max-width: 1459px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(even)
    .pic-group
    .date {
    position: absolute;
  }
}
@media (max-width: 1199px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(even)
    .pic-group
    .date {
    left: -15px;
    right: auto;
  }
}
@media (min-width: 1366px) and (max-width: 1459px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(even)
    .pic-group
    .date {
    left: -10px;
  }
}
@media (min-width: 1200px) and (max-width: 1365px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(even)
    .pic-group
    .date {
    left: -15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(even)
    .pic-group
    .date {
    left: -10px;
  }
}
@media (max-width: 767px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(even)
    .pic-group
    .date {
    left: auto !important;
    right: -20px !important;
  }
}
@media (max-width: 576px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(even)
    .pic-group
    .date {
    right: auto;
    left: -35px;
  }
}
@media (min-width: 1200px) and (max-width: 1365px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(even)
    .article-container {
    padding-left: 0;
    padding-right: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(even)
    .article-container {
    padding-left: 0;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(even)
    .article-container {
    padding-left: 0;
  }
}
@media (min-width: 699px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(even)
    .article-container {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
[data-page='news'] [data-area='news'] .news_lists_slider .list-item .list-item-group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 600px) and (max-width: 991px) {
  [data-page='news'] [data-area='news'] .news_lists_slider .list-item .list-item-group {
    margin-left: 0;
  }
}
@media (max-width: 700px) {
  [data-page='news'] [data-area='news'] .news_lists_slider .list-item .list-item-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 576px) and (max-width: 1199px) {
  [data-page='news'] [data-area='news'] .news_lists_slider .list-item .list-item-group {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
@media (max-width: 575px) {
  [data-page='news'] [data-area='news'] .news_lists_slider .list-item .list-item-group {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item
    .list-item-group:hover
    .pic-group
    .pic-portrait
    .pic {
    border-radius: 47% 53% 60% 40% / 42% 40% 60% 50%;
  }
}
[data-page='news']
  [data-area='news']
  .news_lists_slider
  .list-item
  .list-item-group
  .article-container,
[data-page='news'] [data-area='news'] .news_lists_slider .list-item .list-item-group .pic-group {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 1459px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item
    .list-item-group
    .article-container,
  [data-page='news'] [data-area='news'] .news_lists_slider .list-item .list-item-group .pic-group {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item
    .list-item-group
    .article-container,
  [data-page='news'] [data-area='news'] .news_lists_slider .list-item .list-item-group .pic-group {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 479px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item
    .list-item-group
    .article-container,
  [data-page='news'] [data-area='news'] .news_lists_slider .list-item .list-item-group .pic-group {
    padding-left: 15px;
    padding-right: 15px;
  }
}
[data-page='news']
  [data-area='news']
  .news_lists_slider
  .list-item
  .list-item-group
  .article-container
  .types {
  margin-bottom: 23px;
}
@media (max-width: 1459px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item
    .list-item-group
    .article-container
    .types {
    margin-bottom: 12px;
  }
}
@media (max-width: 1365px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item
    .list-item-group
    .article-container
    .types {
    margin-bottom: 0px;
  }
}
@media (max-width: 767px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item
    .list-item-group
    .article-container
    .types {
    margin-bottom: 5px;
  }
}
@media (max-width: 575px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item
    .list-item-group
    .article-container
    .types {
    margin-bottom: 0;
  }
}
[data-page='news']
  [data-area='news']
  .news_lists_slider
  .list-item
  .list-item-group
  .article-container
  .types
  .yy
  + .type:before {
  content: '‧';
  display: inline;
  font-size: 28px;
  margin: 0 5px;
  vertical-align: middle;
}
@media (max-width: 575px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item
    .list-item-group
    .article-container
    .date
    + .info {
    margin-top: 0;
  }
}
[data-page='news']
  [data-area='news']
  .news_lists_slider
  .list-item
  .list-item-group
  .article-container
  .heading4 {
  font-size: 1.5rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='news'] [data-area='news'] .news_lists_slider .list-item .list-item-group .pic-group {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  [data-page='news'] [data-area='news'] .news_lists_slider .list-item .list-item-group .pic-group {
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  [data-page='news'] [data-area='news'] .news_lists_slider .list-item .list-item-group .pic-group {
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item
    .list-item-group
    .pic-group.pic-landscape-container,
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item
    .list-item-group
    .pic-group.pic-portrait-container {
    max-width: 300px;
  }
}
@media (max-width: 479px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item
    .list-item-group
    .pic-group.pic-landscape-container
    .pic-area {
    width: 100%;
  }
}
@media (max-width: 479px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item
    .list-item-group
    .pic-group.pic-portrait-container
    .pic-area {
    width: 95%;
  }
}
@media (max-width: 767px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item
    .list-item-group
    .pic-group
    .pic-portrait {
    padding-bottom: 90%;
  }
}
@media (max-width: 767px) {
  [data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item
    .list-item-group
    .pic-group
    .pic-portrait
    .pic {
    border-radius: 60% 40% 47% 53% / 60% 50% 42% 40%;
  }
}

[data-page='news'] [data-page='product_lists'] .sub-navbar-main_inner .select-area {
  top: auto;
  bottom: 0;
}

body[data-page='news'] [data-area='news'] .news_lists_slider {
  max-width: 880px;
}
@media (max-width: 575px) {
  body[data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(odd)
    .pic-group
    .date,
  body[data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item:nth-child(even)
    .pic-group
    .date {
    left: auto !important;
    right: 20px !important;
    bottom: -40px;
  }
}
body[data-page='news']
  [data-area='news']
  .news_lists_slider
  .list-item:nth-child(even)
  .pic-group
  .date {
  left: 0;
  right: auto;
}
body[data-page='news']
  [data-area='news']
  .news_lists_slider
  .list-item
  .list-item-group
  .pic-group {
  opacity: 0;
}
body[data-page='news']
  [data-area='news']
  .news_lists_slider
  .list-item
  .list-item-group
  .pic-group.pic-landscape-container,
body[data-page='news']
  [data-area='news']
  .news_lists_slider
  .list-item
  .list-item-group
  .pic-group.pic-portrait-container {
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
}
@media (min-width: 480px) and (max-width: 575px) {
  body[data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item
    .list-item-group
    .pic-group.pic-landscape-container,
  body[data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item
    .list-item-group
    .pic-group.pic-portrait-container {
    max-width: 100%;
  }
}
@media (min-width: 480px) and (max-width: 575px) {
  body[data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item
    .list-item-group
    .pic-group.pic-landscape-container
    .pic-area,
  body[data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item
    .list-item-group
    .pic-group.pic-portrait-container
    .pic-area {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 480px) and (max-width: 575px) {
  body[data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item
    .list-item-group
    .pic-group.pic-landscape-container
    .pic-area {
    padding-bottom: 71.37%;
  }
}
@media (min-width: 480px) and (max-width: 575px) {
  body[data-page='news']
    [data-area='news']
    .news_lists_slider
    .list-item
    .list-item-group
    .pic-group.pic-portrait-container
    .pic-area {
    padding-bottom: 85%;
  }
}
body[data-page='news'] [data-area='news'] .news_lists_slider .list-item .pic-group {
  width: calc(100% - 360px);
  max-width: none;
}
body[data-page='news'] [data-area='news'] .news_lists_slider .list-item .article-container {
  width: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 0;
}

@media (max-width: 767px) {
  [data-page='news'] .select-container .select-box .sub-navbar-main_inner__toggle .btn {
    width: 100%;
  }
}

[data-page='news'] .slick-slider-side[data-dots-align='left'] .slick-dots {
  right: auto;
  left: 0;
}
@media (max-width: 991px) {
  [data-page='news'] .slick-slider-side[data-dots-align='left'] .slick-dots {
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
  }
}

[data-page='news'] .slick-slider-side[data-dots-align='right'] .slick-dots {
  right: 0;
  left: auto;
}
@media (max-width: 991px) {
  [data-page='news'] .slick-slider-side[data-dots-align='right'] .slick-dots {
    -webkit-transform: translate(100%, -50%);
    -ms-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
  }
}

@media (max-width: 575px) {
  [data-page='news'] .slick-slider-side .slick-dots {
    -webkit-transform: translateY(0%) !important;
    -ms-transform: translateY(0%) !important;
    transform: translateY(0%) !important;
  }
}

[data-page='news'] .news_detail.open {
  -webkit-animation: fadeIn 0.4s both;
  animation: fadeIn 0.4s both;
}

[data-page='news'] .news_detail .detail_libox .detail-slider {
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  [data-page='news'] .news_detail .detail_libox .detail-slider {
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  [data-page='news'] .news_detail .detail_libox .detail-slider {
    padding-bottom: 20px;
    padding-top: 30px;
  }
}
[data-page='news'] .news_detail .detail_libox .detail-slider .list-item {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  [data-page='news'] .news_detail .detail_libox .detail-slider .list-item {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
[data-page='news'] .news_detail .detail_libox .detail-slider .list-item figure {
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 36px;
}
@media (max-width: 991px) {
  [data-page='news'] .news_detail .detail_libox .detail-slider .list-item figure {
    padding-bottom: 10px;
  }
}
[data-page='news'] .news_detail .detail_libox .detail-slider .list-item figure img {
  width: 100%;
}
@media (max-width: 767px) {
  [data-page='news'] .news_detail .detail_libox .detail-slider .list-item figure img {
    margin-bottom: 0;
  }
}
[data-page='news'] .news_detail .detail_libox .detail-slider .slick-dots {
  position: absolute;
  bottom: 0;
}
@media (max-width: 991px) {
  [data-page='news'] .news_detail .detail_libox .detail-slider .slick-dots {
    position: relative;
  }
}
@media (max-width: 575px) {
  [data-page='news'] .news_detail .detail_libox .detail-slider + .article .article_inner__item {
    padding-top: 0;
  }
}

[data-page='news'] .news_detail .detail_libox .article_inner.narrow {
  margin-left: 0;
}
@media (max-width: 991px) {
  [data-page='news'] .news_detail .detail_libox .article_inner.narrow {
    width: 100%;
  }
}

body[data-page-classify='product'] .banner.banner-normal .article-container .article-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding-bottom: 15px;
}
body[data-page-classify='product']
  .banner.banner-normal
  .article-container
  .article-title
  .heading2 {
  margin-bottom: 0;
}
body[data-page-classify='product'] .banner.banner-normal .article-container .article-title hr {
  display: block;
  width: 64px;
  height: 2px;
  background-color: rgba(234, 202, 89, 0.7);
  border: none;
  margin-left: 20px;
}

[data-page='product_collection'] main {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

[data-page='product_collection'] .banner {
  padding-top: 150px;
}
@media (max-height: 800px) and (min-width: 1025px) {
  [data-page='product_collection'] .banner {
    padding-top: calc(100px + 6.25vh);
  }
}
@media (max-width: 1024px) {
  [data-page='product_collection'] .banner {
    padding-top: 200px;
  }
}
@media (max-width: 767px) {
  [data-page='product_collection'] .banner {
    padding-top: 150px;
  }
}

[data-page='product_collection'] .banner-container {
  margin: auto;
  width: 100%;
  max-width: 1366px;
  padding: 0 50px;
}
@media (max-width: 1366px) {
  [data-page='product_collection'] .banner-container {
    padding: 0 7vw;
  }
}
@media (max-width: 1024px) {
  [data-page='product_collection'] .banner-container {
    padding: 0 5vw;
  }
}
@media (max-height: 800px) and (min-width: 1025px) {
  [data-page='product_collection'] .banner-container_inner h3 {
    font-size: 2.5rem !important;
  }
}
[data-page='product_collection'] .banner-container .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}
@media (max-width: 1024px) {
  [data-page='product_collection'] .banner-container .group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 479px) {
  [data-page='product_collection'] .banner-container .group {
    margin-top: 40px;
  }
}
[data-page='product_collection'] .banner-container .group .text {
  width: 50%;
}
@media (max-width: 1024px) {
  [data-page='product_collection'] .banner-container .group .text {
    width: auto;
  }
}
[data-page='product_collection'] .banner-container .group .btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 60px;
}
@media (max-width: 1024px) {
  [data-page='product_collection'] .banner-container .group .btn-area {
    margin-top: 25px;
    margin-left: 0;
  }
}
[data-page='product_collection'] .banner-container .group .btn-area .more {
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
[data-page='product_collection'] .banner-container .group .btn-area .more:not(:last-child) {
  margin-right: 60px;
}
@media (max-width: 1024px) {
  [data-page='product_collection'] .banner-container .group .btn-area .more:not(:last-child) {
    margin-right: 5vw;
  }
}
[data-page='product_collection'] .banner-container .group .btn-area .more > span {
  padding: 0 10px;
}

[data-page='product_collection'] .content {
  margin: 70px auto;
  width: 100%;
  padding: 0 250px;
  max-width: 1560px;
}
@media (max-width: 1600px) {
  [data-page='product_collection'] .content {
    padding: 0 18vw;
  }
}
@media (max-height: 800px) and (min-width: 1025px) {
  [data-page='product_collection'] .content {
    margin: 10px auto 70px;
  }
}
@media (max-height: 700px) and (min-width: 1025px) {
  [data-page='product_collection'] .content {
    margin: 0 auto 70px;
  }
}
@media (max-width: 1024px) {
  [data-page='product_collection'] .content {
    padding: 0 5vw;
    margin: 80px auto 120px;
  }
}
[data-page='product_collection'] .content .row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 1024px) {
  [data-page='product_collection'] .content .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
[data-page='product_collection'] .content .row.active .list-item .pic-container .img-mask {
  border: dashed 1px transparent;
}
[data-page='product_collection'] .content .row.active:after {
  height: 0;
}
[data-page='product_collection'] .content .row:after {
  content: '';
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
  height: 250px;
  width: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 1024px) {
  [data-page='product_collection'] .content .row:after {
    display: none;
  }
}
[data-page='product_collection'] .content .list-item {
  max-width: 50%;
}
@media (max-width: 1024px) {
  [data-page='product_collection'] .content .list-item {
    max-width: none;
    width: 100%;
  }
  [data-page='product_collection'] .content .list-item:not(:last-child) {
    margin-bottom: 60px;
  }
}
@media (min-width: 1025px) {
  [data-page='product_collection'] .content .list-item:nth-child(odd) {
    padding-right: 50px;
  }
}
@media (max-width: 1024px) {
  [data-page='product_collection'] .content .list-item:nth-child(odd) .list-item-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (max-width: 700px) {
  [data-page='product_collection'] .content .list-item:nth-child(odd) .list-item-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
[data-page='product_collection']
  .content
  .list-item:nth-child(odd)
  .list-item-group
  .pic-container {
  left: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
[data-page='product_collection']
  .content
  .list-item:nth-child(odd)
  .list-item-group
  .pic-container
  .img-mask {
  width: 470px;
  height: 440px;
}
@media (max-width: 1600px) {
  [data-page='product_collection']
    .content
    .list-item:nth-child(odd)
    .list-item-group
    .pic-container
    .img-mask {
    width: 29.375vw;
    height: 27.5vw;
  }
}
@media (max-height: 800px) and (min-width: 1025px) {
  [data-page='product_collection']
    .content
    .list-item:nth-child(odd)
    .list-item-group
    .pic-container
    .img-mask {
    width: 50vh;
    height: 46.875vh;
  }
}
@media (max-width: 1024px) {
  [data-page='product_collection']
    .content
    .list-item:nth-child(odd)
    .list-item-group
    .pic-container
    .img-mask {
    width: auto;
    height: auto;
  }
}
[data-page='product_collection']
  .content
  .list-item:nth-child(odd)
  .list-item-group
  .pic-container
  figure {
  left: 0;
}
@media (min-width: 1025px) {
  [data-page='product_collection'] .content .list-item:nth-child(odd) .list-item-group .article {
    padding: 0 5px 0 5vw;
  }
}
@media (min-width: 1601px) {
  [data-page='product_collection']
    .content
    .list-item:nth-child(odd)
    .list-item-group:hover
    .pic-container {
    left: 117px;
  }
}
@media (max-width: 1600px) and (min-width: 1025px) {
  [data-page='product_collection']
    .content
    .list-item:nth-child(odd)
    .list-item-group:hover
    .pic-container {
    left: 7.34vw;
  }
}
@media (max-height: 800px) and (min-width: 1025px) {
  [data-page='product_collection']
    .content
    .list-item:nth-child(odd)
    .list-item-group:hover
    .pic-container {
    left: 12.5vh;
  }
}
@media (min-width: 1025px) {
  [data-page='product_collection']
    .content
    .list-item:nth-child(odd)
    .list-item-group:hover
    .pic-container
    .img-mask {
    border-radius: 55% 45% 46% 54% / 51% 59% 41% 49%;
  }
}
@media (min-width: 1025px) {
  [data-page='product_collection'] .content .list-item:nth-child(even) {
    padding-left: 50px;
  }
}
@media (max-width: 1024px) {
  [data-page='product_collection'] .content .list-item:nth-child(even) .list-item-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
@media (max-width: 700px) {
  [data-page='product_collection'] .content .list-item:nth-child(even) .list-item-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
[data-page='product_collection']
  .content
  .list-item:nth-child(even)
  .list-item-group
  .pic-container {
  right: 0;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}
@media (min-width: 1601px) {
  [data-page='product_collection']
    .content
    .list-item:nth-child(even)
    .list-item-group
    .pic-container
    .img-mask {
    width: 415px;
    height: 460px;
  }
}
@media (max-width: 1600px) and (min-width: 1025px) {
  [data-page='product_collection']
    .content
    .list-item:nth-child(even)
    .list-item-group
    .pic-container
    .img-mask {
    width: 25.9375vw;
    height: 28.75vw;
  }
}
@media (max-height: 800px) and (min-width: 1025px) {
  [data-page='product_collection']
    .content
    .list-item:nth-child(even)
    .list-item-group
    .pic-container
    .img-mask {
    width: 43.75vh;
    height: 48.75vh;
  }
}
[data-page='product_collection']
  .content
  .list-item:nth-child(even)
  .list-item-group
  .pic-container
  figure {
  right: 0;
}
@media (max-width: 1024px) and (min-width: 701px) {
  [data-page='product_collection'] .content .list-item:nth-child(even) .list-item-group .article {
    padding: 0 5vw 0 5px;
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  [data-page='product_collection']
    .content
    .list-item:nth-child(even)
    .list-item-group
    .article
    .btn-area {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
@media (min-width: 1601px) {
  [data-page='product_collection']
    .content
    .list-item:nth-child(even)
    .list-item-group:hover
    .pic-container {
    right: 103px;
  }
}
@media (max-width: 1600px) and (min-width: 1025px) {
  [data-page='product_collection']
    .content
    .list-item:nth-child(even)
    .list-item-group:hover
    .pic-container {
    right: 6vw;
  }
}
@media (max-height: 800px) and (min-width: 1025px) {
  [data-page='product_collection']
    .content
    .list-item:nth-child(even)
    .list-item-group:hover
    .pic-container {
    right: 10.9vw;
  }
}
@media (min-width: 1025px) {
  [data-page='product_collection']
    .content
    .list-item:nth-child(even)
    .list-item-group:hover
    .pic-container
    .img-mask {
    border-radius: 43% 57% 44% 56% / 34% 45% 55% 66%;
  }
}
[data-page='product_collection'] .content .list-item .list-item-group {
  padding: 120px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  opacity: 0;
}
@media (max-width: 1600px) {
  [data-page='product_collection'] .content .list-item .list-item-group {
    padding: 7.5vw 0;
  }
}
@media (max-height: 800px) and (min-width: 1025px) {
  [data-page='product_collection'] .content .list-item .list-item-group {
    padding: 13vh 0;
  }
}
@media (max-width: 1024px) {
  [data-page='product_collection'] .content .list-item .list-item-group {
    padding: 0;
  }
  [data-page='product_collection'] .content .list-item .list-item-group:not(:last-child) {
    margin-bottom: 80px;
  }
}
[data-page='product_collection'] .content .list-item .list-item-group .pic-container {
  position: absolute;
  bottom: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1024px) {
  [data-page='product_collection'] .content .list-item .list-item-group .pic-container {
    position: relative;
    left: auto !important;
    right: auto !important;
    -webkit-transform: translate(0) !important;
    -ms-transform: translate(0) !important;
    transform: translate(0) !important;
    bottom: auto;
    width: 50%;
  }
}
@media (max-width: 700px) {
  [data-page='product_collection'] .content .list-item .list-item-group .pic-container {
    width: 100%;
  }
}
[data-page='product_collection'] .content .list-item .list-item-group .pic-container .img-mask {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: dashed 1px #619ca2;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}
@media (max-width: 1024px) {
  [data-page='product_collection'] .content .list-item .list-item-group .pic-container .img-mask {
    border-radius: 25px !important;
    border: none !important;
  }
}
[data-page='product_collection']
  .content
  .list-item
  .list-item-group
  .pic-container
  .img-mask
  .pic {
  height: 100%;
  width: 100%;
  -webkit-transition: opacity 0.6s ease;
  -o-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
@media (min-width: 1025px) {
  [data-page='product_collection']
    .content
    .list-item
    .list-item-group
    .pic-container
    .img-mask
    .pic {
    opacity: 0;
  }
}
@media (min-width: 1025px) {
  [data-page='product_collection'] .content .list-item .list-item-group .pic-container figure {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
[data-page='product_collection'] .content .list-item .list-item-group .pic-container figure img {
  width: 100%;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
[data-page='product_collection'] .content .list-item .list-item-group .article {
  position: relative;
  width: 350px;
  max-width: 100%;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1024px) {
  [data-page='product_collection'] .content .list-item .list-item-group .article {
    width: 50%;
  }
}
@media (max-width: 700px) {
  [data-page='product_collection'] .content .list-item .list-item-group .article {
    padding: 20px 0 0 15px !important;
    width: 100%;
  }
}
[data-page='product_collection'] .content .list-item .list-item-group .article .btn-area {
  -webkit-transition: opacity 0.6s ease;
  -o-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  [data-page='product_collection'] .content .list-item .list-item-group .article .btn-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
  }
}
@media (max-width: 700px) {
  [data-page='product_collection'] .content .list-item .list-item-group .article .btn-area {
    margin-top: 10px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
[data-page='product_collection'] .content .list-item .list-item-group .article .btn-area .btn {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1024px) {
  [data-page='product_collection']
    .content
    .list-item
    .list-item-group
    .article
    .btn-area
    .btn
    [class*='icon']:after {
    opacity: 0;
  }
}
@media (min-width: 1025px) {
  [data-page='product_collection']
    .content
    .list-item
    .list-item-group:hover
    .pic-container
    .img-mask
    .pic,
  [data-page='product_collection'] .content .list-item .list-item-group:hover .article .btn-area {
    opacity: 1;
  }
  [data-page='product_collection'] .content .list-item .list-item-group:hover .pic-container {
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
  [data-page='product_collection']
    .content
    .list-item
    .list-item-group:hover
    .pic-container
    .img-mask {
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
}
@media (min-width: 1025px) and (min-width: 1361px) {
  [data-page='product_collection']
    .content
    .list-item
    .list-item-group:hover
    .pic-container
    .img-mask {
    width: 600px;
    height: 600px;
  }
}
@media (min-width: 1025px) and (min-width: 1025px) {
  [data-page='product_collection']
    .content
    .list-item
    .list-item-group:hover
    .pic-container
    .img-mask {
    border-color: transparent;
  }
}
@media (min-width: 1025px) and (min-width: 1025px) and (max-width: 1360px) {
  [data-page='product_collection']
    .content
    .list-item
    .list-item-group:hover
    .pic-container
    .img-mask {
    width: 48vw;
    height: 48vw;
  }
}
@media (min-width: 1025px) {
  [data-page='product_collection']
    .content
    .list-item
    .list-item-group:hover
    .pic-container
    figure {
    opacity: 1;
  }
  [data-page='product_collection'] .content .list-item .list-item-group:hover .article {
    opacity: 0;
  }
}

[data-page='product_series'] [data-page='home'] [data-area='products'] .products-container,
[data-page='product_function'] [data-page='home'] [data-area='products'] .products-container {
  width: 100%;
  padding-top: 0;
  padding-bottom: 100px;
}

[data-page='product_series'] .banner.banner-normal,
[data-page='product_function'] .banner.banner-normal {
  padding-top: 210px;
  padding-bottom: 130px;
}
@media (min-width: 1025px) {
  [data-page='product_series'] .banner.banner-normal,
  [data-page='product_function'] .banner.banner-normal {
    min-height: 100vh;
  }
}
@media (max-width: 767px) {
  [data-page='product_series'] .banner.banner-normal,
  [data-page='product_function'] .banner.banner-normal {
    position: relative;
    z-index: 1;
    padding-bottom: 60px;
  }
}
[data-page='product_series'] .banner.banner-normal .row,
[data-page='product_function'] .banner.banner-normal .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 100px;
  max-width: 1400px;
  width: 100%;
}
@media (max-width: 1400px) {
  [data-page='product_series'] .banner.banner-normal .row,
  [data-page='product_function'] .banner.banner-normal .row {
    padding: 0 7vw;
  }
}
@media (max-width: 900px) {
  [data-page='product_series'] .banner.banner-normal .row,
  [data-page='product_function'] .banner.banner-normal .row {
    padding: 0 5vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
[data-page='product_series'] .banner.banner-normal .banner-container,
[data-page='product_function'] .banner.banner-normal .banner-container {
  width: 50%;
}
@media (max-width: 900px) {
  [data-page='product_series'] .banner.banner-normal .banner-container,
  [data-page='product_function'] .banner.banner-normal .banner-container {
    width: 100%;
    padding: 0 5px;
  }
}
[data-page='product_series'] .banner.banner-normal .banner-container .banner-container_inner,
[data-page='product_function'] .banner.banner-normal .banner-container .banner-container_inner {
  position: relative;
  padding-right: 110px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 1400px) {
  [data-page='product_series'] .banner.banner-normal .banner-container .banner-container_inner,
  [data-page='product_function'] .banner.banner-normal .banner-container .banner-container_inner {
    padding-right: 5vw;
  }
}
@media (max-width: 900px) {
  [data-page='product_series'] .banner.banner-normal .banner-container .banner-container_inner,
  [data-page='product_function'] .banner.banner-normal .banner-container .banner-container_inner {
    padding-right: 0;
  }
}
[data-page='product_series'] .banner.banner-normal .banner-container .banner-container_inner .text,
[data-page='product_function']
  .banner.banner-normal
  .banner-container
  .banner-container_inner
  .text {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 1440px) {
  [data-page='product_series']
    .banner.banner-normal
    .banner-container
    .banner-container_inner
    .text,
  [data-page='product_function']
    .banner.banner-normal
    .banner-container
    .banner-container_inner
    .text {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
@media (max-width: 900px) {
  [data-page='product_series']
    .banner.banner-normal
    .banner-container
    .banner-container_inner
    .more,
  [data-page='product_function']
    .banner.banner-normal
    .banner-container
    .banner-container_inner
    .more {
    display: none;
  }
}
[data-page='product_series'] .banner.banner-normal .article-container,
[data-page='product_function'] .banner.banner-normal .article-container {
  padding-left: 110px;
  width: 50%;
}
@media (max-width: 1400px) {
  [data-page='product_series'] .banner.banner-normal .article-container,
  [data-page='product_function'] .banner.banner-normal .article-container {
    padding-left: 5vw;
  }
}
@media (max-width: 900px) {
  [data-page='product_series'] .banner.banner-normal .article-container,
  [data-page='product_function'] .banner.banner-normal .article-container {
    width: 100%;
    padding-left: 0;
  }
}
[data-page='product_series'] .banner.banner-normal .article-container .article-title,
[data-page='product_function'] .banner.banner-normal .article-container .article-title {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
[data-page='product_series'] .banner.banner-normal .article-container .article-title h2,
[data-page='product_function'] .banner.banner-normal .article-container .article-title h2 {
  width: 100%;
}
[data-page='product_series'] .banner.banner-normal .article-container .main-nav-tabs-area,
[data-page='product_function'] .banner.banner-normal .article-container .main-nav-tabs-area {
  padding-bottom: 0;
  z-index: 1;
}
[data-page='product_series'] .banner.banner-normal .article-container .main-nav-tabs-area ul,
[data-page='product_function'] .banner.banner-normal .article-container .main-nav-tabs-area ul {
  width: 100%;
}
[data-page='product_series'] .banner.banner-normal .article-container .main-nav-tabs-area ul li,
[data-page='product_function'] .banner.banner-normal .article-container .main-nav-tabs-area ul li {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  [data-page='product_series']
    .banner.banner-normal
    .article-container
    .main-nav-tabs-area
    ul
    li
    a:hover,
  [data-page='product_series']
    .banner.banner-normal
    .article-container
    .main-nav-tabs-area
    ul
    li
    a.active,
  [data-page='product_function']
    .banner.banner-normal
    .article-container
    .main-nav-tabs-area
    ul
    li
    a:hover,
  [data-page='product_function']
    .banner.banner-normal
    .article-container
    .main-nav-tabs-area
    ul
    li
    a.active {
    color: #000;
  }
}
@media (min-width: 768px) {
  [data-page='product_series']
    .banner.banner-normal
    .article-container
    .main-nav-tabs-area
    ul
    li
    a:hover:after,
  [data-page='product_series']
    .banner.banner-normal
    .article-container
    .main-nav-tabs-area
    ul
    li
    a.active:after,
  [data-page='product_function']
    .banner.banner-normal
    .article-container
    .main-nav-tabs-area
    ul
    li
    a:hover:after,
  [data-page='product_function']
    .banner.banner-normal
    .article-container
    .main-nav-tabs-area
    ul
    li
    a.active:after {
    width: 100%;
  }
}
[data-page='product_series'] .banner.banner-normal .scroll_down-container,
[data-page='product_function'] .banner.banner-normal .scroll_down-container {
  position: absolute;
  right: 5%;
  bottom: 35px;
  z-index: 99;
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='product_series'] .banner.banner-normal .scroll_down-container,
  [data-page='product_function'] .banner.banner-normal .scroll_down-container {
    bottom: 70px;
  }
}
@media (max-width: 575px) {
  [data-page='product_series'] .banner.banner-normal .scroll_down-container,
  [data-page='product_function'] .banner.banner-normal .scroll_down-container {
    display: none;
  }
}
[data-page='product_series'] .banner.banner-normal .scroll_down-container .scroll_down,
[data-page='product_function'] .banner.banner-normal .scroll_down-container .scroll_down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  bottom: 0;
}
[data-page='product_series']
  .banner.banner-normal
  .scroll_down-container
  .scroll_down
  [class*='icon-'],
[data-page='product_function']
  .banner.banner-normal
  .scroll_down-container
  .scroll_down
  [class*='icon-'] {
  margin-left: 15px;
  margin-right: 0;
}
[data-page='product_series'] .banner.banner-normal .dec-container,
[data-page='product_function'] .banner.banner-normal .dec-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  [data-page='product_series'] .banner.banner-normal .dec-container,
  [data-page='product_function'] .banner.banner-normal .dec-container {
    display: none;
  }
}
[data-page='product_series'] .banner.banner-normal .dec-container .left,
[data-page='product_series'] .banner.banner-normal .dec-container .right,
[data-page='product_function'] .banner.banner-normal .dec-container .left,
[data-page='product_function'] .banner.banner-normal .dec-container .right {
  width: 50%;
  height: 100%;
}
[data-page='product_series'] .banner.banner-normal .dec-container .left .dec,
[data-page='product_function'] .banner.banner-normal .dec-container .left .dec {
  width: 38.3vw;
  height: 37vw;
  margin-left: -25%;
  margin-top: -15%;
  border-color: #619ca2;
  border-color: rgba(97, 156, 162, 0.4);
  border-style: dashed;
  border-width: 2px;
}
[data-page='product_series'] .banner.banner-normal .dec-container .right .dec,
[data-page='product_function'] .banner.banner-normal .dec-container .right .dec {
  position: relative;
  max-width: 700px;
  width: 100%;
  height: 100%;
}
[data-page='product_series'] .banner.banner-normal .dec-container .right .dec img,
[data-page='product_function'] .banner.banner-normal .dec-container .right .dec img {
  position: absolute;
  right: 50px;
  top: 35%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 1400px) {
  [data-page='product_series'] .banner.banner-normal .dec-container .right .dec img,
  [data-page='product_function'] .banner.banner-normal .dec-container .right .dec img {
    max-width: 14vw;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  [data-page='product_series'] .banner.banner-normal .scroll_down-container {
    bottom: 180px;
  }
}

@media (max-width: 767px) {
  [data-page='product_series'] .banner.banner-normal > .container {
    padding-left: 25px;
    padding-right: 25px;
    margin-left: 0;
  }
}

@media (max-width: 479px) {
  [data-page='product_series'] .banner.banner-normal > .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 1199px) {
  [data-page='product_series'] footer {
    z-index: 0;
  }
}

@media (max-width: 1199px) {
  [data-page='product_series'] [data-page='home'] [data-area='products'] .products-container {
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  [data-page='product_series'] .hide_lightbox .banner.banner-normal {
    padding-top: 50px;
    padding-bottom: 0;
  }
  [data-page='product_series'] .hide_lightbox .banner.banner-normal .banner-container {
    padding-bottom: 0;
  }
}

#product_series article.content {
  margin-top: -80px;
}
@media (max-width: 800px) {
  #product_series article.content {
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  #product_series article.content {
    position: relative;
    z-index: 0;
  }
}
#product_series article.content section .type {
  position: relative;
}
#product_series article.content section .type.horizontal {
  padding: 75px 0;
}
@media (max-width: 700px) {
  #product_series article.content section .type.horizontal {
    padding: 30px 0;
  }
}
#product_series article.content section .type.horizontal .box {
  max-width: 1755px;
}
#product_series article.content section .type.horizontal .box a {
  width: 80%;
}
@media (max-width: 1200px) {
  #product_series article.content section .type.horizontal .box a {
    width: 73%;
  }
}
@media (max-width: 800px) {
  #product_series article.content section .type.horizontal .box ._img {
    margin: 0 auto 0 0;
    position: relative;
    z-index: 1;
  }
}
#product_series article.content section .type.horizontal .box ._text {
  width: 30%;
  top: 90px;
  left: 200px;
}
@media (max-width: 1755px) {
  #product_series article.content section .type.horizontal .box ._text {
    top: 9.6%;
    left: 15%;
  }
}
@media (max-width: 1200px) {
  #product_series article.content section .type.horizontal .box ._text {
    top: auto;
    bottom: -30px;
    right: 40px;
    left: auto;
    width: 30%;
  }
}
@media (max-width: 800px) {
  #product_series article.content section .type.horizontal .box ._text {
    margin: -3.75vw 0 0 auto;
  }
}
#product_series article.content section .type.horizontal.right .box {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 800px) {
  #product_series article.content section .type.horizontal.right .box ._img {
    margin: 0 0 0 auto;
  }
}
#product_series article.content section .type.horizontal.right .box ._text {
  right: 200px;
  left: auto;
}
@media (max-width: 1755px) {
  #product_series article.content section .type.horizontal.right .box ._text {
    right: 11vw;
  }
}
@media (max-width: 1200px) {
  #product_series article.content section .type.horizontal.right .box ._text {
    right: auto;
    left: 40px;
  }
}
@media (max-width: 800px) {
  #product_series article.content section .type.horizontal.right .box ._text {
    margin: -3.75vw auto 0 0;
  }
}
#product_series article.content section .type.vertical {
  padding: 90px 0;
}
@media (max-width: 700px) {
  #product_series article.content section .type.vertical {
    padding: 30px 0;
  }
}
#product_series article.content section .type.vertical .box {
  max-width: 1560px;
}
#product_series article.content section .type.vertical .box a {
  width: 50%;
}
@media (max-width: 1200px) {
  #product_series article.content section .type.vertical .box a {
    width: 60%;
  }
}
@media (max-width: 800px) {
  #product_series article.content section .type.vertical .box ._img {
    margin: 0 auto 0 0;
  }
}
#product_series article.content section .type.vertical .box ._text {
  width: 54%;
  top: 50%;
  left: calc(100% + 120px);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 1560px) {
  #product_series article.content section .type.vertical .box ._text {
    left: calc(100% + 7.5vw);
  }
}
@media (max-width: 1200px) {
  #product_series article.content section .type.vertical .box ._text {
    width: 30%;
    left: auto;
    right: 50px;
  }
}
@media (max-width: 800px) {
  #product_series article.content section .type.vertical .box ._text {
    margin: -3.75vw 0 0 auto;
  }
}
#product_series article.content section .type.vertical.right .box {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 800px) {
  #product_series article.content section .type.vertical.right .box ._img {
    margin: 0 0 0 auto;
  }
}
#product_series article.content section .type.vertical.right .box ._text {
  left: auto;
  right: calc(100% + 120px);
}
@media (max-width: 1560px) {
  #product_series article.content section .type.vertical.right .box ._text {
    right: calc(100% + 7.5vw);
  }
}
@media (max-width: 1200px) {
  #product_series article.content section .type.vertical.right .box ._text {
    right: auto;
    left: 50px;
  }
}
@media (max-width: 800px) {
  #product_series article.content section .type.vertical.right .box ._text {
    margin: -3.75vw auto 0 0;
  }
}
@media (min-width: 1201px) {
  #product_series article.content section .type.vertical.center .box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (min-width: 1201px) and (max-width: 1560px) {
  #product_series article.content section .type.vertical.center .box a {
    position: static;
  }
}
@media (min-width: 1201px) {
  #product_series article.content section .type.vertical.center .box ._text {
    right: calc(100% + 100px);
    left: auto;
  }
}
@media (min-width: 1201px) and (max-width: 1560px) {
  #product_series article.content section .type.vertical.center .box ._text {
    width: 25%;
    right: auto;
    left: 50px;
  }
}
@media (min-width: 1201px) {
  #product_series article.content section .type.vertical.center .box ._text.right {
    right: auto;
    left: calc(100% + 100px);
  }
}
@media (min-width: 1201px) and (max-width: 1560px) {
  #product_series article.content section .type.vertical.center .box ._text.right {
    left: auto;
    right: 50px;
  }
}
#product_series article.content section .type:first-child {
  padding-top: 0;
}
#product_series article.content section .type:first-child .bg {
  height: calc(100% - 80px);
}
@media (max-width: 1024px) {
  #product_series article.content section .type:first-child .bg {
    height: calc(100% - 8vw);
  }
}
@media (max-width: 700px) {
  #product_series article.content section .type:first-child .bg {
    height: calc(100% - 80px);
  }
}
#product_series article.content section .type:last-child {
  padding-bottom: 225px;
}
@media (max-width: 1024px) {
  #product_series article.content section .type:last-child {
    padding-bottom: 180px;
  }
}
@media (max-width: 700px) {
  #product_series article.content section .type:last-child {
    padding-bottom: 120px;
  }
}
#product_series article.content section .type:last-child .bg {
  height: 100%;
}
#product_series article.content section .type:nth-child(4n + 1) .bg {
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#c3d7d7), to(#bfd4d8));
  background: -webkit-linear-gradient(top, #c3d7d7 0%, #bfd4d8 100%);
  background: -o-linear-gradient(top, #c3d7d7 0%, #bfd4d8 100%);
  background: linear-gradient(to bottom, #c3d7d7 0%, #bfd4d8 100%);
}
#product_series article.content section .type:nth-child(4n + 2) .bg {
  top: 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#bfd4d8),
    color-stop(50%, #aec7d6),
    to(#bac9de)
  );
  background: -webkit-linear-gradient(top, #bfd4d8 0%, #aec7d6 50%, #bac9de 100%);
  background: -o-linear-gradient(top, #bfd4d8 0%, #aec7d6 50%, #bac9de 100%);
  background: linear-gradient(to bottom, #bfd4d8 0%, #aec7d6 50%, #bac9de 100%);
}
#product_series article.content section .type .bg {
  position: absolute;
  width: 100%;
  height: calc(100% - 160px);
  left: 0;
}
@media (max-width: 1024px) {
  #product_series article.content section .type .bg {
    height: calc(100% - 15vw);
  }
}
@media (max-width: 700px) {
  #product_series article.content section .type .bg {
    height: calc(100% - 90px);
  }
}
#product_series article.content section .type .box {
  position: relative;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  padding: 0 50px;
}
@media (max-width: 1024px) {
  #product_series article.content section .type .box {
    padding: 0 5vw;
  }
}
@media (max-width: 575px) {
  #product_series article.content section .type .box {
    padding: 0;
  }
}
#product_series article.content section .type .box a {
  position: relative;
}
@media (max-width: 1200px) {
  #product_series article.content section .type .box a {
    position: static;
  }
}
@media (max-width: 800px) {
  #product_series article.content section .type .box a {
    width: 100% !important;
  }
}
@media (max-width: 800px) {
  #product_series article.content section .type .box ._img {
    width: 90% !important;
  }
}
#product_series article.content section .type .box ._text {
  position: absolute;
  max-width: 400px;
  padding: 60px 0 30px;
}
@media (max-width: 1800px) {
  #product_series article.content section .type .box ._text {
    padding: 3vw 0 1.5vw;
  }
}
@media (max-width: 1440px) {
  #product_series article.content section .type .box ._text {
    padding: 2vw 0;
  }
}
@media (max-width: 1200px) {
  #product_series article.content section .type .box ._text {
    padding: 30px 0 25px;
  }
}
@media (max-width: 800px) {
  #product_series article.content section .type .box ._text {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    width: 90% !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
  }
}
#product_series article.content section .type .box ._text ._title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#product_series article.content section .type .box ._text ._title span {
  height: 4px;
  display: block;
}
#product_series article.content section .type .box ._text ._title span.lineLeft {
  width: 45px;
}
@media (max-width: 1200px) {
  #product_series article.content section .type .box ._text ._title span.lineLeft {
    width: 35px;
  }
}
#product_series article.content section .type .box ._text ._title span.lineRight {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  margin-right: 0;
  margin-left: auto;
}
#product_series article.content section .type .box ._text ._title p {
  font-weight: bold;
  white-space: nowrap;
  margin: 0 5px;
  font-size: 1.75rem;
  font-family: 'mplus-thin', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
@media (max-width: 1200px) {
  #product_series article.content section .type .box ._text ._title p {
    font-size: 1.5rem;
  }
}
#product_series article.content section .type .box ._text .words {
  margin-top: 25px;
  padding: 0 40px 0 50px;
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 1rem;
}
@media (max-width: 1800px) {
  #product_series article.content section .type .box ._text .words {
    margin-top: 1vw;
    padding: 0 2vw 0 50px;
  }
}
@media (max-width: 1200px) {
  #product_series article.content section .type .box ._text .words {
    padding: 0 10px 0 40px;
  }
}
#product_series article.content section .type .box ._text .words p {
  max-height: 50px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#product_series article.content section .type .box ._text .words .learnMore {
  font-weight: bold;
}
@media (min-width: 1025px) {
  #product_series article.content section .type .box ._text .words .learnMore {
    display: none;
  }
}
#product_series article.content section .type .box ._text .words .learnMore:before {
  font-family: 'icomoon';
  content: '\e90b';
  font-size: 0.9375rem;
  margin-right: 10px;
}

[data-page='product_function'] .banner.banner-normal {
  margin-left: 0 !important;
  margin-right: 0 !important;
  min-height: auto;
}
@media (max-width: 1459px) {
  [data-page='product_function'] .banner.banner-normal {
    padding-top: 200px;
  }
}
@media (max-width: 1199px) {
  [data-page='product_function'] .banner.banner-normal {
    padding-top: 180px;
  }
}
@media (max-width: 991px) {
  [data-page='product_function'] .banner.banner-normal {
    padding-top: 150px;
  }
}
[data-page='product_function'] .banner.banner-normal .row {
  padding-bottom: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
[data-page='product_function'] .banner.banner-normal .dec-container .left,
[data-page='product_function'] .banner.banner-normal .dec-container .right {
  position: absolute;
  top: 0;
}
[data-page='product_function'] .banner.banner-normal .dec-container .left {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
[data-page='product_function'] .banner.banner-normal .dec-container .left .dec {
  width: 35vw;
  height: 37vw;
  margin-left: 0%;
  margin-top: -17%;
  border-radius: 60% 41% 45% 55% / 53% 28% 72% 47% !important;
  border-color: rgba(97, 156, 162, 0.3);
}
[data-page='product_function'] .banner.banner-normal .dec-container .right {
  right: 0;
}
[data-page='product_function'] .banner.banner-normal .dec-container .right .dec img {
  position: absolute;
  top: 30%;
  right: 30%;
}
@media (max-width: 1459px) {
  [data-page='product_function'] .banner.banner-normal .dec-container .right .dec img {
    top: 25%;
  }
}
@media (max-width: 991px) {
  [data-page='product_function'] .banner.banner-normal .dec-container .right .dec img {
    top: auto;
    bottom: 35%;
  }
}
@media (max-width: 767px) {
  [data-page='product_function'] .banner.banner-normal .dec-container .right .dec img {
    bottom: 30%;
    -webkit-transform: scale(0.65);
    -ms-transform: scale(0.65);
    transform: scale(0.65);
  }
}
@media (max-width: 479px) {
  [data-page='product_function'] .banner.banner-normal .dec-container .right .dec img {
    right: 25%;
    bottom: 35%;
  }
}
[data-page='product_function'] .banner.banner-normal .banner-container {
  max-width: 800px !important;
}
[data-page='product_function'] .banner.banner-normal .banner-container .banner-container_inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 0;
}
[data-page='product_function'] .banner.banner-normal .banner-container .group {
  position: relative;
}
@media (min-width: 992px) {
  [data-page='product_function'] .banner.banner-normal .banner-container .group {
    padding-left: 180px;
    padding-right: 180px;
  }
}
@media (max-width: 991px) {
  [data-page='product_function'] .banner.banner-normal .banner-container .group {
    max-width: 100%;
  }
}
[data-page='product_function'] .banner.banner-normal .banner-container .group .text {
  line-height: 1.5;
  width: 100%;
  display: block;
  text-align: center;
}
[data-page='product_function'] .banner.banner-normal .banner-container .group .more {
  position: absolute;
  left: auto;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  [data-page='product_function'] .banner.banner-normal .banner-container .group .more {
    position: relative;
  }
}
[data-page='product_function'] .banner.banner-normal .overview {
  width: 100%;
}
[data-page='product_function'] .banner.banner-normal .article-container {
  max-width: 850px;
  padding-left: 0;
  width: 100%;
  margin: auto;
  position: relative;
}
@media (max-width: 479px) {
  [data-page='product_function'] .banner.banner-normal .article-container {
    width: 100%;
    max-width: 350px;
  }
}
[data-page='product_function'] .banner.banner-normal .article-container .article-title-container {
  display: inline-block;
}
@media (max-width: 479px) {
  [data-page='product_function'] .banner.banner-normal .article-container .article-title-container {
    width: 100%;
    text-align: center;
  }
}
[data-page='product_function']
  .banner.banner-normal
  .article-container
  .article-title-container
  .heading2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
[data-page='product_function']
  .banner.banner-normal
  .article-container
  .article-title-container
  .heading2:after {
  display: block;
  content: '';
  width: 65px;
  height: 2px;
  background-color: #93a8c0;
  margin-left: 10px;
}
[data-page='product_function'] .banner.banner-normal .article-container .main-nav-tabs-area {
  width: auto;
}

[data-page='product_function'] .content .tab-content {
  margin-top: -50px;
}
@media (min-width: 1530px) {
  [data-page='product_function'] .content .tab-content .container {
    max-width: 1500px;
    width: 100%;
    margin: auto;
  }
}

[data-page='product_function'] .productContent {
  padding: 0 0 45px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  [data-page='product_function'] .productContent {
    padding: 0;
  }
}
[data-page='product_function'] .productContent .boxs {
  margin: auto;
  max-width: 1620px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 50px;
  -webkit-transform: translateY(-65px);
  -ms-transform: translateY(-65px);
  transform: translateY(-65px);
}
@media (max-width: 1024px) {
  [data-page='product_function'] .productContent .boxs {
    padding: 0 5vw;
  }
}
[data-page='product_function'] .productContent .boxs .box {
  padding: 0 30px;
  margin-bottom: 90px;
  width: 33.33%;
}
@media (max-width: 1620px) {
  [data-page='product_function'] .productContent .boxs .box {
    padding: 0 1.8vw;
  }
}
@media (max-width: 900px) {
  [data-page='product_function'] .productContent .boxs .box {
    width: 50%;
    padding: 0 20px;
  }
}
@media (max-width: 600px) {
  [data-page='product_function'] .productContent .boxs .box {
    width: 100%;
    padding: 0;
    margin-bottom: 60px;
  }
}
[data-page='product_function'] .productContent .boxs .box a:hover ._img .hoverBox {
  opacity: 1;
}
[data-page='product_function'] .productContent .boxs .box ._img {
  position: relative;
}
[data-page='product_function'] .productContent .boxs .box ._img .hoverBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  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;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
[data-page='product_function'] .productContent .boxs .box ._img .hoverBox span {
  width: 50px;
  height: 50px;
  background: url('../../upload/f2e/icon/frame_collection_hover.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  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;
}
[data-page='product_function'] .productContent .boxs .box ._img .hoverBox span:before {
  font-weight: bold;
  font-family: 'icomoon';
  content: '\e90c';
  color: #635c47;
}
[data-page='product_function'] .productContent .boxs .box ._text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 30px 40px;
}
@media (max-width: 1620px) {
  [data-page='product_function'] .productContent .boxs .box ._text {
    padding: 1.8vw 2.4vw;
  }
}
@media (max-width: 600px) {
  [data-page='product_function'] .productContent .boxs .box ._text {
    padding: 10px 5px;
  }
}
[data-page='product_function'] .productContent .boxs .box ._text figure {
  margin-right: 30px;
  max-width: 35px;
  margin-left: 0;
}
[data-page='product_function'] .productContent .boxs .box ._text p {
  max-width: calc(100% - 70px);
  font-weight: bold;
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  line-height: 1;
}

@media (min-height: 1065px) {
  [data-page='search'] main {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

[data-page='search'] main .banner.banner-normal {
  margin-left: 0;
  margin-right: 0;
  padding-top: 160px;
  padding-bottom: 170px;
  max-height: 65vh;
  min-height: 645px;
}
@media (min-height: 1065px) {
  [data-page='search'] main .banner.banner-normal {
    min-height: calc(100vh - 350px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
[data-page='search'] main .banner.banner-normal .banner-container {
  position: relative;
  z-index: 10;
}
[data-page='search'] main .banner.banner-normal .banner-container_bg {
  height: 100%;
}
[data-page='search'] main .banner.banner-normal .banner-container_bg .img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 1;
}
[data-page='search'] main .banner.banner-normal .banner-container_inner .text {
  padding-top: 20px;
  padding-bottom: 80px;
}
@media (max-width: 479px) {
  [data-page='search'] main .banner.banner-normal {
    padding: 90px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100vh;
    min-height: 0;
    max-height: none;
  }
  [data-page='search'] main .banner.banner-normal .banner-container_inner .text {
    text-align: center;
  }
}
@media (max-width: 375px) {
  [data-page='search'] main .banner.banner-normal .banner-container_inner .text {
    padding-bottom: 60px;
  }
}

[data-page='search'] .banner .form {
  width: 475px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  -ms-input-placeholder-color: #a6a6a6;
}
[data-page='search'] .banner .form .input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  border-radius: 30px;
  -webkit-box-shadow: 0px -5px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0px -5px 5px rgba(0, 0, 0, 0.05);
  background-color: #ebebeb;
  -webkit-transition: -webkit-box-shadow 0.5s ease;
  transition: -webkit-box-shadow 0.5s ease;
  -o-transition: box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease, -webkit-box-shadow 0.5s ease;
}
[data-page='search'] .banner .form .input-group input {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
  width: 1%;
  border: 0;
  padding: 18px 30px;
  background-color: transparent;
}
[data-page='search'] .banner .form .input-group .input-group-prepend {
  border: 0;
  cursor: pointer;
  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-color: transparent;
  width: 65px;
  max-width: 65px;
  position: relative;
}
[data-page='search'] .banner .form .input-group .input-group-prepend::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #bcbcbc;
  width: 1px;
  height: 30px;
}
[data-page='search'] .banner .form .input-group .input-group-prepend [class*='icon-'] {
  font-size: 18px;
}
[data-page='search'] .banner .form ::-webkit-input-placeholder {
  color: #a6a6a6;
}
[data-page='search'] .banner .form :-ms-input-placeholder {
  color: #a6a6a6;
}
[data-page='search'] .banner .form ::-ms-input-placeholder {
  color: #a6a6a6;
}
[data-page='search'] .banner .form ::placeholder {
  color: #a6a6a6;
}
[data-page='search'] .banner .form ::-ms-input-placeholder {
  color: #a6a6a6;
}

[data-page='search'] .banner-fill_bg {
  min-height: 420px;
  max-height: calc(35vh + 70px);
  position: relative;
  margin-top: -70px;
  z-index: 20;
}
[data-page='search'] .banner-fill_bg .decorate-line-container {
  width: 100%;
}
[data-page='search'] .banner-fill_bg .decorate-line-container .decorate-line {
  width: 100%;
  max-width: 100%;
  top: 0;
  -webkit-transform: translate(-50%, -30%);
  -ms-transform: translate(-50%, -30%);
  transform: translate(-50%, -30%);
}
[data-page='search'] .banner-fill_bg .pic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 90% 25% 0% 0% / 17% 3% 0% 0%;
  overflow: hidden;
}
@media (max-width: 479px) {
  [data-page='search'] .banner-fill_bg {
    display: none;
  }
}

[data-page='results'] main .banner.banner-normal {
  margin-left: 0;
  margin-right: 0;
}
[data-page='results'] main .banner.banner-normal .banner-container_inner .text {
  text-align: center;
  width: 100%;
  padding-top: 75px;
}
[data-page='results'] main .banner.banner-normal .banner-container {
  width: 100%;
  max-width: 700px;
}

@media (max-width: 1199px) {
  [data-page='results'] [data-page-classify='product'] .sub-navbar-main {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  [data-page='results'] [data-page-classify='product'] .sub-navbar-main p.title {
    padding-bottom: 5px;
  }
}

[data-page='results'] .sub-navbar-main:after {
  display: none;
}

[data-page='results'] .gotop-container {
  padding-top: 10px;
  padding-bottom: 60px;
  text-align: center;
}
[data-page='results'] .gotop-container .gotop {
  width: auto;
  display: inline-block;
  padding: 20px;
}

[data-page='product_lists'] .org_img,
[data-page='product_lists'] .small_img {
  display: none;
}

@media (min-width: 768px) {
  [data-page='product_lists'] .org_img {
    display: block;
  }
  [data-page='product_lists'] .org_img.padding_height {
    height: 0;
    padding-bottom: 40%;
  }
  body:not([data-page='about']) [data-page='product_lists'] .org_img.padding_height {
    padding-bottom: 35%;
  }
}

@media (max-width: 767px) {
  [data-page='product_lists'] .small_img {
    display: block;
  }
  [data-page='product_lists'] .small_img.padding_height {
    height: 0;
    padding-bottom: 130%;
  }
  body:not([data-page='about']) [data-page='product_lists'] .small_img.padding_height {
    padding-bottom: 125%;
  }
}

[data-page='product_lists'] main .banner.banner-normal {
  padding: 195px 50px 75px;
}
@media (max-width: 1024px) {
  [data-page='product_lists'] main .banner.banner-normal {
    padding: 195px 5vw 75px;
  }
}
@media (max-width: 767px) {
  [data-page='product_lists'] main .banner.banner-normal {
    padding: 140px 5vw 75px;
  }
}
@media (max-width: 479px) {
  [data-page='product_lists'] main .banner.banner-normal {
    padding: 140px 5vw 100px;
  }
}
[data-page='product_lists'] main .banner.banner-normal .banner-container_inner {
  position: relative;
}
[data-page='product_lists'] main .banner.banner-normal .banner-container_inner__title-container {
  position: relative;
  width: calc(100% - 60px);
}
@media (max-width: 575px) {
  [data-page='product_lists'] main .banner.banner-normal .banner-container_inner__title-container {
    width: 100%;
  }
}
[data-page='product_lists']
  main
  .banner.banner-normal
  .banner-container_inner__title-container
  .subtitle,
[data-page='product_lists']
  main
  .banner.banner-normal
  .banner-container_inner__title-container
  .title {
  display: block;
}
@media (max-width: 900px) {
  [data-page='product_lists'] main .banner.banner-normal .banner-container_inner .text {
    width: calc(100% - 60px);
  }
}
@media (max-width: 575px) {
  [data-page='product_lists'] main .banner.banner-normal .banner-container_inner .text {
    width: calc(100% - 5vw);
  }
}
[data-page='product_lists'] main .banner.banner-normal .banner-container_inner .arrows {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 0;
  left: 0;
  font-size: 2.5rem;
}
[data-page='product_lists'] main .banner.banner-normal .banner-container_inner.full .title,
[data-page='product_lists'] main .banner.banner-normal .banner-container_inner.full .subtitle {
  width: 100%;
  padding: 0 45px;
  text-align: center;
}
@media (max-width: 479px) {
  [data-page='product_lists'] main .banner.banner-normal .banner-container_inner.full .title,
  [data-page='product_lists'] main .banner.banner-normal .banner-container_inner.full .subtitle {
    padding: 0 30px;
  }
}
@media (max-width: 479px) {
  [data-page='product_lists'] main .banner.banner-normal .banner-container_inner.sub .text {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 479px) {
  [data-page='product_lists'] main .banner.banner-normal .banner-container_inner .arrows {
    font-size: 1.75rem;
  }
}
[data-page='product_lists'] main .banner.banner-normal .banner-container_inner hr {
  display: block;
  width: 40px;
  height: 5px;
  background-color: rgba(129, 158, 188, 0.6);
  border: none;
  margin: 20px 0;
}

[data-page-classify='about'] .sub-navbar,
[data-page-classify='product'] .sub-navbar {
  width: 100%;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
[data-page-classify='about'] .sub-navbar_search,
[data-page-classify='product'] .sub-navbar_search {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
  position: absolute;
  right: -125px;
  top: 132px;
  font-family: 'mplus-medium', '微軟正黑體';
}
[data-page-classify='about'] .sub-navbar_search span,
[data-page-classify='product'] .sub-navbar_search span {
  padding: 10px;
}
@media (max-width: 1199px) {
  [data-page-classify='about'] .sub-navbar_search,
  [data-page-classify='product'] .sub-navbar_search {
    right: -50px;
  }
}
@media (max-width: 991px) {
  [data-page-classify='about'] .sub-navbar_search,
  [data-page-classify='product'] .sub-navbar_search {
    position: relative;
    right: auto;
    left: 0;
    top: 0;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  [data-page-classify='about'] .sub-navbar_search,
  [data-page-classify='product'] .sub-navbar_search {
    position: relative;
  }
}
[data-page-classify='about'] .sub-navbar-main,
[data-page-classify='product'] .sub-navbar-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 60px;
  padding-bottom: 90px;
  position: relative;
}
@media (max-width: 991px) {
  [data-page-classify='about'] .sub-navbar-main,
  [data-page-classify='product'] .sub-navbar-main {
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  [data-page-classify='about'] .sub-navbar-main,
  [data-page-classify='product'] .sub-navbar-main {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 479px) {
  [data-page-classify='about'] .sub-navbar-main,
  [data-page-classify='product'] .sub-navbar-main {
    padding: 60px 20px;
  }
}
[data-page-classify='about'] .sub-navbar-main:after,
[data-page-classify='product'] .sub-navbar-main:after {
  content: '';
  width: 400px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
}
@media (max-width: 575px) {
  [data-page-classify='about'] .sub-navbar-main:after,
  [data-page-classify='product'] .sub-navbar-main:after {
    max-width: 50%;
  }
}
[data-page-classify='about'] .sub-navbar-main_inner,
[data-page-classify='product'] .sub-navbar-main_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: 'mplus-medium', '微軟正黑體';
  margin: 0 25px;
}
@media (max-width: 479px) {
  [data-page-classify='about'] .sub-navbar-main_inner,
  [data-page-classify='product'] .sub-navbar-main_inner {
    margin: 0;
    width: 100%;
  }
}
[data-page-classify='about'] .sub-navbar-main_inner .select-area,
[data-page-classify='product'] .sub-navbar-main_inner .select-area {
  padding-top: 25px;
  padding-bottom: 25px;
  width: 360px;
  max-height: 250px;
  max-width: 100%;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  background-color: #78a7d4;
  border-radius: 20px 20px 20px 20px;
  position: absolute;
  top: 0px;
  z-index: 13;
  -webkit-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}
@media (max-width: 479px) {
  [data-page-classify='about'] .sub-navbar-main_inner .select-area,
  [data-page-classify='product'] .sub-navbar-main_inner .select-area {
    width: 100%;
  }
}
[data-page-classify='about'] .sub-navbar-main_inner .select-area_scroll,
[data-page-classify='product'] .sub-navbar-main_inner .select-area_scroll {
  width: 65%;
  max-height: calc(250px - 40px);
  margin-left: auto;
  margin-right: auto;
  overflow-y: auto;
}
@media (max-width: 479px) {
  [data-page-classify='about'] .sub-navbar-main_inner .select-area_scroll,
  [data-page-classify='product'] .sub-navbar-main_inner .select-area_scroll {
    width: 80%;
  }
}
[data-page-classify='about'] .sub-navbar-main_inner .select-area.open,
[data-page-classify='product'] .sub-navbar-main_inner .select-area.open {
  pointer-events: auto;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  z-index: 99;
}
[data-page-classify='about'] .sub-navbar-main_inner .select-area span.tri,
[data-page-classify='product'] .sub-navbar-main_inner .select-area span.tri {
  width: 0;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-style: solid;
  border-width: 0 5.5px 8px 5.5px;
  border-color: transparent transparent #5287b3 transparent;
  position: absolute;
  right: 25px;
  bottom: 20px;
}
@media (max-width: 767px) {
  [data-page-classify='about'] .sub-navbar-main_inner .select-area span.tri,
  [data-page-classify='product'] .sub-navbar-main_inner .select-area span.tri {
    right: calc(9% - 4px);
  }
}
@media (max-width: 479px) {
  [data-page-classify='about'] .sub-navbar-main_inner .select-area span.tri,
  [data-page-classify='product'] .sub-navbar-main_inner .select-area span.tri {
    right: calc(5% - 3px);
  }
}
[data-page-classify='about'] .sub-navbar-main_inner ul,
[data-page-classify='product'] .sub-navbar-main_inner ul {
  padding: 0;
  list-style: none;
  background-color: transparent;
  border-radius: 20px 20px 20px 20px;
  color: #000;
}
[data-page-classify='about'] .sub-navbar-main_inner ul li,
[data-page-classify='product'] .sub-navbar-main_inner ul li {
  padding: 5px 0;
  margin-left: -20px;
}
[data-page-classify='about'] .sub-navbar-main_inner ul li a,
[data-page-classify='product'] .sub-navbar-main_inner ul li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
[data-page-classify='about'] .sub-navbar-main_inner ul li a:hover,
[data-page-classify='product'] .sub-navbar-main_inner ul li a:hover {
  color: #000;
}
[data-page-classify='about'] .sub-navbar-main_inner ul li a.active,
[data-page-classify='product'] .sub-navbar-main_inner ul li a.active {
  background-color: transparent;
  color: #000;
}
[data-page-classify='about'] .sub-navbar-main_inner p.title,
[data-page-classify='product'] .sub-navbar-main_inner p.title {
  padding: 25px;
  font-size: 1.125rem;
}
@media (max-width: 479px) {
  [data-page-classify='about'] .sub-navbar-main_inner p.title,
  [data-page-classify='product'] .sub-navbar-main_inner p.title {
    width: 100%;
  }
}
[data-page-classify='about'] .sub-navbar-main_inner__toggle,
[data-page-classify='product'] .sub-navbar-main_inner__toggle {
  border-radius: 30px;
  background-color: #bfd5df;
  color: rgba(0, 0, 0, 0.4);
  position: relative;
}
@media (max-width: 479px) {
  [data-page-classify='about'] .sub-navbar-main_inner__toggle,
  [data-page-classify='product'] .sub-navbar-main_inner__toggle {
    width: 100%;
  }
}
body[data-page='news'] [data-page-classify='about'] .sub-navbar-main_inner__toggle,
body[data-page='news'] [data-page-classify='product'] .sub-navbar-main_inner__toggle {
  border-radius: 20px;
}
[data-page-classify='about'] .sub-navbar-main_inner__toggle.preset-nav,
[data-page-classify='product'] .sub-navbar-main_inner__toggle.preset-nav {
  background-color: rgba(224, 222, 227, 0.9);
}
[data-page-classify='about'] .sub-navbar-main_inner__toggle.active,
[data-page-classify='product'] .sub-navbar-main_inner__toggle.active {
  background-color: #d2e0eb;
  border-radius: 20px;
  color: #000;
}
@media (max-width: 479px) {
  [data-page-classify='about'] .sub-navbar-main_inner__toggle .selectVal,
  [data-page-classify='about'] .sub-navbar-main_inner__toggle .select-area,
  [data-page-classify='product'] .sub-navbar-main_inner__toggle .selectVal,
  [data-page-classify='product'] .sub-navbar-main_inner__toggle .select-area {
    width: 100%;
  }
}
[data-page-classify='about'] .sub-navbar-main_inner__toggle .btn,
[data-page-classify='product'] .sub-navbar-main_inner__toggle .btn {
  width: 360px;
  height: auto;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  position: relative;
  border: none;
  z-index: 11;
  padding: 10px 25px;
}
[data-page-name='product_lists'] [data-page-classify='about'] .sub-navbar-main_inner__toggle .btn,
[data-page-name='product_lists']
  [data-page-classify='product']
  .sub-navbar-main_inner__toggle
  .btn {
  padding: 18px 25px;
}
@media (max-width: 767px) {
  [data-page-classify='about'] .sub-navbar-main_inner__toggle .btn,
  [data-page-classify='product'] .sub-navbar-main_inner__toggle .btn {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
@media (max-width: 479px) {
  [data-page-classify='about'] .sub-navbar-main_inner__toggle .btn,
  [data-page-classify='product'] .sub-navbar-main_inner__toggle .btn {
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
[data-page-classify='about'] .sub-navbar-main_inner__toggle .btn span.tri,
[data-page-classify='product'] .sub-navbar-main_inner__toggle .btn span.tri {
  width: 0;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-style: solid;
  border-width: 8px 5.5px 0 5.5px;
  border-color: #5287b3 transparent transparent transparent;
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
[data-page-classify='about'] .sub-navbar-main_inner__toggle .btn span.tri:before,
[data-page-classify='product'] .sub-navbar-main_inner__toggle .btn span.tri:before {
  content: '';
  display: block;
  width: 1.5px;
  height: 24px;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: -25px;
  -webkit-transform: translate(-50%, -20%);
  -ms-transform: translate(-50%, -20%);
  transform: translate(-50%, -20%);
}
body[data-page='news']
  [data-page-classify='about']
  .sub-navbar-main_inner__toggle
  .btn
  span.tri:before,
body[data-page='news']
  [data-page-classify='product']
  .sub-navbar-main_inner__toggle
  .btn
  span.tri:before {
  background-color: #fff;
}
@media (max-width: 479px) {
  [data-page-classify='about'] .sub-navbar-main_inner__toggle .btn span.tri,
  [data-page-classify='product'] .sub-navbar-main_inner__toggle .btn span.tri {
    right: 24px;
  }
  [data-page-classify='about'] .sub-navbar-main_inner__toggle .btn span.tri:before,
  [data-page-classify='product'] .sub-navbar-main_inner__toggle .btn span.tri:before {
    left: -25px;
  }
}

[data-page-classify='about'] .icon-bg,
[data-page-classify='product'] .icon-bg {
  position: relative;
  color: #fff;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 45px;
  height: 45px;
}
[data-page-classify='about'] .icon-bg:before,
[data-page-classify='product'] .icon-bg:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background-color: #619ca2;
}
[data-page-classify='about'] .icon-bg [class*='icon-'],
[data-page-classify='product'] .icon-bg [class*='icon-'] {
  position: relative;
}

[data-page='product_lists'] .container {
  max-width: 1720px;
  padding: 0 50px;
  width: 100%;
  margin: auto;
}
@media (max-width: 1024px) {
  [data-page='product_lists'] .container {
    padding: 0 5vw;
  }
}
[data-page='product_lists'] .container .main-title {
  text-align: center;
  margin: 75px 0;
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  [data-page='product_lists'] .container .main-title {
    margin-top: 40px;
  }
}
[data-page='product_lists'] .container .main-title_title {
  width: 370px;
  margin: auto;
  max-width: 100%;
  font-family: 'mplus-regular', '微軟正黑體';
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  letter-spacing: 0.06em;
}
[data-page='product_lists'] .container .main-title_title p {
  letter-spacing: 0.022em;
}
[data-page='product_lists'] .container .main-list-area {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-family: 'mplus-medium', '微軟正黑體';
}
@media (max-width: 991px) {
  [data-page='product_lists'] .container .main-list-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
[data-page='product_lists'] .container .list-item {
  display: inline-block;
  width: 20%;
  height: auto;
  margin: 30px 0;
  padding: 0 20px;
  position: relative;
}
@media (max-width: 1459px) {
  [data-page='product_lists'] .container .list-item {
    width: 25%;
  }
}
@media (max-width: 991px) {
  [data-page='product_lists'] .container .list-item {
    width: 33.333333333%;
  }
}
@media (max-width: 767px) {
  [data-page='product_lists'] .container .list-item {
    width: 50%;
  }
}
@media (max-width: 479px) {
  [data-page='product_lists'] .container .list-item {
    max-width: 320px;
    width: 100%;
    margin: 30px auto;
  }
}
[data-page='product_lists'] .container .list-item > a:hover .img img:nth-child(2) {
  opacity: 1;
}
[data-page='product_lists'] .container .list-item > a:hover .img img:nth-child(1) {
  opacity: 0;
}
[data-page='product_lists'] .container .list-item:hover .article div:nth-child(2) {
  opacity: 1;
}
[data-page='product_lists'] .container .list-item .label {
  position: absolute;
  top: -10px;
  left: 20px;
}
[data-page='product_lists'] .container .list-item .label_main {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  position: relative;
  font-family: 'mplus-heavy', '微軟正黑體';
  font-size: 0.9375rem;
  border-width: 3px;
  border-style: solid;
}
[data-page='product_lists'] .container .list-item .label_main.l_blue {
  background-color: #86cbf3;
  border-color: #86cbf3;
}
[data-page='product_lists'] .container .list-item .label_main.l_pink {
  background-color: #f88e8e;
  border-color: #f88e8e;
}
[data-page='product_lists'] .container .list-item .label_main.hollow {
  background-color: transparent;
}
[data-page='product_lists'] .container .list-item .label_main span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-top: 2px;
}
[data-page='product_lists'] .container .list-item .pic {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 200px;
  height: 200px;
}
[data-page='product_lists'] .container .list-item .pic[data-mask-type='3'] {
  border: 1px dotted #5f9ea4;
}
[data-page='product_lists'] .container .list-item .pic[data-mask-type='4'] {
  background-color: #a2c5db;
}
[data-page='product_lists']
  .container
  .list-item
  .pic:hover
  ~ .article
  div:nth-child(2)
  html:not(.mobile-mode)
  [data-page='product_lists']
  .container
  .list-item
  .pic {
  opacity: 1;
}
[data-page='product_lists'] .container .list-item .img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
[data-page='product_lists'] .container .list-item .img img {
  max-height: 100%;
  max-width: 100%;
  -webkit-transition: 1s all ease-in-out;
  -o-transition: 1s all ease-in-out;
  transition: 1s all ease-in-out;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
[data-page='product_lists'] .container .list-item .img img:nth-child(2) {
  opacity: 0;
}
[data-page='product_lists'] .container .list-item .article {
  display: block;
  text-align: center;
}
[data-page='product_lists'] .container .list-item .article div:nth-child(2) {
  -webkit-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
  opacity: 0;
}
.mobile-mode [data-page='product_lists'] .container .list-item .article div:nth-child(2) {
  opacity: 1;
}
[data-page='product_lists'] .container .list-item .title {
  padding-top: 15px;
  line-height: 1.5;
}
[data-page='product_lists'] .container .list-item .info {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.5);
  font-family: 'mplus-heavy', '微軟正黑體';
}

[data-area='nextMajor'] {
  position: relative;
  width: 100%;
  margin-top: 40px;
}
[data-area='nextMajor'] .decorate-line-container {
  width: 100%;
  top: -16.8%;
}
@media (max-width: 767px) {
  [data-area='nextMajor'] .decorate-line-container {
    display: block;
    top: 0;
  }
}
[data-area='nextMajor'] .banner-container_bg {
  position: relative;
}
@media (max-width: 700px) {
  [data-area='nextMajor'] .banner-container_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
[data-area='nextMajor'] .banner-container_bg.sub .img {
  position: relative;
  width: 100%;
  border-radius: 74% 26% 0% 0% / 13% 6% 59% 0%;
  height: 0;
  padding-bottom: 34%;
}
@media (max-width: 1024px) {
  [data-area='nextMajor'] .banner-container_bg.sub .img {
    padding-bottom: 50%;
  }
}
@media (max-width: 700px) {
  [data-area='nextMajor'] .banner-container_bg.sub .img {
    padding-bottom: 0;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 575px) {
  [data-area='nextMajor'] .banner-container_bg.sub .img {
    border-radius: 90% 30% 0% 0% / 20% 3% 0% 0%;
  }
}
[data-area='nextMajor'] .banner-container_inner {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 1300px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 700px) {
  [data-area='nextMajor'] .banner-container_inner {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
[data-area='nextMajor'] .banner-container_inner a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 460px;
  padding: 80px 50px 0;
}
@media (max-width: 700px) {
  [data-area='nextMajor'] .banner-container_inner a {
    padding: 100px 5vw 80px;
  }
}
[data-area='nextMajor'] .banner-container_inner .title {
  font-size: 1.8125rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-family: 'mplus-bold', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
[data-area='nextMajor'] .banner-container_inner .text {
  letter-spacing: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

[data-page='product_detail'] .informations-area .sub-navbar-main_inner .select-area_scroll {
  width: 70%;
}

[data-page='product_detail'] .informations-area .sub-navbar-main_inner .select-area span.tri {
  right: 15px;
  bottom: 15px;
}

[data-page='product_detail']
  .informations-area
  .sub-navbar-main_inner
  [data-page='product_lists']
  .sub-navbar-main_inner
  .sub-navbar-main_inner__toggle
  .btn
  span.tri {
  border-width: 0 5.5px 8px 5.5px;
  border-color: transparent transparent #2e5e8d transparent;
}
[data-page='product_detail']
  .informations-area
  .sub-navbar-main_inner
  [data-page='product_lists']
  .sub-navbar-main_inner
  .sub-navbar-main_inner__toggle
  .btn
  span.tri:before {
  top: -3px;
}

[data-page='product_detail']
  .informations-area
  .sub-navbar-main_inner
  [data-page='product_lists']
  .sub-navbar-main_inner
  .select-area {
  top: auto;
  bottom: 0;
}
[data-page='product_detail']
  .informations-area
  .sub-navbar-main_inner
  [data-page='product_lists']
  .sub-navbar-main_inner
  .select-area
  span.tri {
  border-width: 8px 5.5px 0 5.5px;
  border-color: #2e5e8d transparent transparent transparent;
}

[data-page='product_detail'] .container {
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  [data-page='product_detail'] .container {
    padding: 0 35px;
  }
}
@media (max-width: 479px) {
  [data-page='product_detail'] .container {
    padding: 0 20px;
  }
}

[data-page='product_detail'] .banner {
  overflow: visible;
  padding-top: 160px;
}
@media (max-width: 767px) {
  [data-page='product_detail'] .banner {
    padding-top: 120px;
  }
}
@media (max-width: 479px) {
  [data-page='product_detail'] .banner {
    padding-top: 100px;
  }
}
[data-page='product_detail'] .banner > .container {
  position: relative;
  background: transparent;
  z-index: 10;
  min-height: calc(940px - 100px);
  max-width: 1460px;
  width: 100%;
  margin: auto;
}
@media (max-width: 991px) {
  [data-page='product_detail'] .banner > .container {
    height: auto;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .banner > .container {
    max-width: 100%;
  }
}
[data-page='product_detail'] .banner > .bg {
  z-index: 0;
}
[data-page='product_detail'] .banner > .material {
  z-index: 1;
}
[data-page='product_detail'] .banner .share-area {
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0 0 5vw;
}
@media (min-width: 992px) {
  [data-page='product_detail'] .banner .share-area {
    position: absolute;
    left: 0;
    top: 0;
    padding: 0 0 0 50px;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .banner .share-area {
    padding: 0;
  }
}
[data-page='product_detail'] .banner .share-area p {
  margin-bottom: 0;
  margin-right: 20px;
}
[data-page='product_detail'] .banner .slider-area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  [data-page='product_detail'] .banner .slider-area {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
[data-page='product_detail'] .banner .slider-area .slider-for-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media (min-width: 992px) {
  [data-page='product_detail'] .banner .slider-area .slider-for-container {
    padding-left: 100px;
    padding-right: 100px;
  }
}
[data-page='product_detail'] .banner .slider-area .slider-nav-container {
  width: 20%;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media (min-width: 992px) {
  [data-page='product_detail'] .banner .slider-area .slider-nav-container {
    width: 100px;
    position: absolute;
    right: 0;
    bottom: 30px;
  }
}
@media (max-width: 991px) {
  [data-page='product_detail'] .banner .slider-area .slider-nav-container {
    padding-top: 50px;
  }
}
@media (max-width: 479px) {
  [data-page='product_detail'] .banner .slider-area .slider-nav-container {
    padding-top: 20px;
  }
}
[data-page='product_detail'] .banner .slider-area .slider-nav-container [id^='template_'],
[data-page='product_detail'] .banner .slider-area .slider-nav-container [id*=' template_'] {
  display: none;
}
[data-page='product_detail'] .banner .slider-area .slider-for-container,
[data-page='product_detail'] .banner .slider-area .slider-nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 991px) {
  [data-page='product_detail'] .banner .slider-area .slider-for-container,
  [data-page='product_detail'] .banner .slider-area .slider-nav-container {
    max-width: 100%;
    width: 100%;
  }
}
[data-page='product_detail'] .banner .slider-area .slider-for-container > *,
[data-page='product_detail'] .banner .slider-area .slider-nav-container > * {
  max-width: 100%;
}
[data-page='product_detail'] .banner .slider-area .slider-for .pic,
[data-page='product_detail'] .banner .slider-area .slider-nav .pic {
  position: relative;
}
[data-page='product_detail'] .banner .slider-area .slider-for .pic img,
[data-page='product_detail'] .banner .slider-area .slider-nav .pic img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
}
[data-page='product_detail'] .banner .slider-area .slider-for {
  width: 650px;
  cursor: url('../img/mouse-1.cur'), auto;
}
@media (max-width: 479px) {
  [data-page='product_detail'] .banner .slider-area .slider-for {
    max-width: 80%;
  }
}
[data-page='product_detail'] .banner .slider-area .slider-for .slick-slide .pic {
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
}
[data-page='product_detail'] .banner .slider-area .slider-for .pic {
  opacity: 0;
  position: relative;
  width: 100%;
  padding-bottom: 80%;
}
@media (max-width: 479px) {
  [data-page='product_detail'] .banner .slider-area .slider-for .pic {
    padding-bottom: 100%;
  }
}
[data-page='product_detail'] .banner .slider-area .slider-nav {
  padding: 0;
  bottom: 1px;
}
@media (min-width: 992px) {
  [data-page='product_detail'] .banner .slider-area .slider-nav {
    height: 348px;
  }
}
@media (max-width: 991px) {
  [data-page='product_detail'] .banner .slider-area .slider-nav {
    padding: 0;
    width: 100%;
    height: auto;
    bottom: 0;
  }
}
[data-page='product_detail'] .banner .slider-area .slider-nav .slick-slide {
  color: white;
  padding: 12px 0;
  font-size: 20px;
  font-family: 'Arial', 'Helvetica';
  text-align: center;
}
[data-page='product_detail'] .banner .slider-area .slider-nav .slick-slide img {
  opacity: 0.5;
  -webkit-transition: 0.6s ease-in-out;
  -o-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
[data-page='product_detail'] .banner .slider-area .slider-nav .slick-slide.slick-current img {
  opacity: 1;
}
[data-page='product_detail'] .banner .slider-area .slider-nav .slick-slide > div {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
[data-page='product_detail'] .banner .slider-area .slider-nav .slick-slide > div .list-item {
  vertical-align: middle;
}
[data-page='product_detail'] .banner .slider-area .slider-nav .list-item {
  cursor: pointer;
}
[data-page='product_detail'] .banner .slider-area .slider-nav .list-item .pic {
  width: 40px;
  height: 40px;
  display: block;
  margin: auto;
}
[data-page='product_detail'] .banner .slider-area .slider-nav .slick-arrow {
  z-index: 9;
}
[data-page='product_detail'] .banner .slider-area .slider-nav .slick-prev,
[data-page='product_detail'] .banner .slider-area .slider-nav .slick-next {
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 20px;
  height: 20px;
}
@media (max-width: 991px) {
  [data-page='product_detail'] .banner .slider-area .slider-nav .slick-prev,
  [data-page='product_detail'] .banner .slider-area .slider-nav .slick-next {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
[data-page='product_detail'] .banner .slider-area .slider-nav .slick-prev:before,
[data-page='product_detail'] .banner .slider-area .slider-nav .slick-next:before {
  color: black;
  font-size: 20px;
  font-family: 'icomoon';
}
@media (min-width: 992px) {
  [data-page='product_detail'] .banner .slider-area .slider-nav .slick-next {
    top: unset;
    bottom: -30px;
  }
}
@media (max-width: 991px) {
  [data-page='product_detail'] .banner .slider-area .slider-nav .slick-next {
    left: auto;
    right: -40px;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .banner .slider-area .slider-nav .slick-next {
    right: -30px;
  }
}
@media (min-width: 992px) {
  [data-page='product_detail'] .banner .slider-area .slider-nav .slick-next:before {
    content: '\e902';
  }
}
@media (max-width: 991px) {
  [data-page='product_detail'] .banner .slider-area .slider-nav .slick-next:before {
    content: '\e900';
  }
}
@media (min-width: 992px) {
  [data-page='product_detail'] .banner .slider-area .slider-nav .slick-prev {
    top: -30px;
    display: none !important;
  }
}
@media (max-width: 991px) {
  [data-page='product_detail'] .banner .slider-area .slider-nav .slick-prev {
    left: -40px;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .banner .slider-area .slider-nav .slick-prev {
    left: -30px;
  }
}
@media (min-width: 992px) {
  [data-page='product_detail'] .banner .slider-area .slider-nav .slick-prev:before {
    content: '\e903';
  }
}
@media (max-width: 991px) {
  [data-page='product_detail'] .banner .slider-area .slider-nav .slick-prev:before {
    content: '\e901';
  }
}
[data-page='product_detail'] .banner .product-colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  [data-page='product_detail'] .banner .product-colors {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .banner .product-colors {
    text-align: center;
    bottom: 0;
  }
}
[data-page='product_detail'] .banner .product-colors .text {
  margin-right: 30px;
}
@media (max-width: 1199px) {
  [data-page='product_detail'] .banner .product-colors .text {
    margin-bottom: 10px;
    margin-right: 0;
  }
}
[data-page='product_detail'] .banner .product-colors ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  [data-page='product_detail'] .banner .product-colors ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
[data-page='product_detail'] .banner .product-colors ul li {
  height: 20px;
  display: block;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
}
[data-page='product_detail'] .banner .product-colors ul li:hover a {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
[data-page='product_detail'] .banner .product-colors ul li a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
[data-page='product_detail'] .banner .product-colors ul li a img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
[data-page='product_detail'] .banner .title-area {
  text-align: center;
}
@media (max-width: 991px) {
  [data-page='product_detail'] .banner .title-area {
    margin-bottom: 15px;
  }
}
[data-page='product_detail'] .banner .title-area > * {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  [data-page='product_detail'] .banner .title-area + .edit {
    margin-top: 25px;
  }
}
[data-page='product_detail'] .banner .informations-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 992px) {
  [data-page='product_detail'] .banner .informations-area {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  [data-page='product_detail'] .banner .informations-area {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .banner .informations-area {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
[data-page='product_detail'] .banner .informations-area .series-area {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 25%;
}
@media (max-width: 1199px) {
  [data-page='product_detail'] .banner .informations-area .series-area {
    width: 30%;
  }
}
@media (max-width: 991px) {
  [data-page='product_detail'] .banner .informations-area .series-area {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 50%;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .banner .informations-area .series-area {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 100%;
    margin-top: 25px;
  }
}
[data-page='product_detail'] .banner .informations-area .article-area {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: 50%;
}
@media (max-width: 1199px) {
  [data-page='product_detail'] .banner .informations-area .article-area {
    width: 40%;
  }
}
@media (max-width: 991px) {
  [data-page='product_detail'] .banner .informations-area .article-area {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .banner .informations-area .article-area {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 0;
  }
}
[data-page='product_detail'] .banner .informations-area .article-area p {
  line-height: 1.75;
}
[data-page='product_detail'] .banner .informations-area .article-area .article-container {
  max-width: 440px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 1199px) {
  [data-page='product_detail'] .banner .informations-area .article-area .article-container {
    max-width: 100%;
    padding: 0;
  }
}
@media (max-width: 991px) {
  [data-page='product_detail'] .banner .informations-area .article-area .article-container {
    max-width: 500px;
    margin: auto;
  }
}
@media (max-width: 991px) {
  [data-page='product_detail'] .banner .informations-area .article-area:before {
    display: none;
  }
}
[data-page='product_detail'] .banner .informations-area > .select-area {
  width: 25%;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}
@media (max-width: 1199px) {
  [data-page='product_detail'] .banner .informations-area > .select-area {
    width: 30%;
  }
}
@media (min-width: 992px) {
  [data-page='product_detail'] .banner .informations-area > .select-area {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
@media (max-width: 991px) {
  [data-page='product_detail'] .banner .informations-area > .select-area {
    width: 50%;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .banner .informations-area > .select-area {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
  }
}
[data-page='product_detail'] .banner .informations-area > .select-area .select-box {
  position: relative;
}
[data-page='product_detail']
  .banner
  .informations-area
  > .select-area
  .select-box
  .customer-select {
  position: absolute;
  margin-top: 15px;
  top: 100%;
  left: 0;
  width: 255px;
  max-width: 100%;
  height: 40px;
}
@media (max-width: 767px) {
  [data-page='product_detail']
    .banner
    .informations-area
    > .select-area
    .select-box
    .customer-select {
    position: relative;
    top: 0%;
  }
}
[data-page='product_detail']
  .banner
  .informations-area
  > .select-area
  .select-box
  .sub-navbar-main_inner {
  margin: 0;
}
@media (max-width: 1199px) {
  [data-page='product_detail']
    .banner
    .informations-area
    > .select-area
    .select-box
    .sub-navbar-main_inner {
    margin: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='product_detail']
    .banner
    .informations-area
    > .select-area
    .select-box
    .sub-navbar-main_inner {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail']
    .banner
    .informations-area
    > .select-area
    .select-box
    .sub-navbar-main_inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
  }
}
[data-page='product_detail']
  .banner
  .informations-area
  > .select-area
  .select-box
  .sub-navbar-main_inner
  p.title {
  padding: 15px 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='product_detail']
    .banner
    .informations-area
    > .select-area
    .select-box
    .sub-navbar-main_inner
    p.title {
    padding: 10px 25px;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .banner .informations-area > .select-area .select-container,
  [data-page='product_detail']
    .banner
    .informations-area
    > .select-area
    .sub-navbar-main_inner__toggle {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .banner .informations-area > .select-area .select-container {
    text-align: center;
  }
}
[data-page='product_detail'] .banner .informations-area > .select-area > a {
  display: block;
}
@media (max-width: 767px) {
  [data-page='product_detail'] .banner .informations-area > .select-area > a {
    text-align: center;
  }
}
[data-page='product_detail'] .banner .informations-area .info-area {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 5px;
}
@media (max-width: 991px) {
  [data-page='product_detail'] .banner .informations-area .info-area {
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  [data-page='product_detail'] .banner .informations-area .info-area {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  [data-page='product_detail'] .banner .informations-area .info-area + .info-area {
    position: relative;
  }
  [data-page='product_detail'] .banner .informations-area .info-area + .info-area:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 90px;
    background-color: #9ebcd5;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .banner .informations-area .info-area {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 479px) {
  [data-page='product_detail'] .banner .informations-area .info-area {
    padding: 0;
  }
}
[data-page='product_detail'] .banner .informations-area .sub-navbar-main_inner__toggle {
  background: #7eaed6;
  color: #fff;
}
[data-page='product_detail'] .banner .informations-area .sub-navbar-main_inner__toggle .btn {
  width: 80vw;
  max-width: 255px;
  padding: 10px 30px 10px 18px;
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='product_detail'] .banner .informations-area .sub-navbar-main_inner__toggle .btn {
    max-width: 250px;
  }
}
[data-page='product_detail'] .banner .informations-area .sub-navbar-main_inner__toggle .btn .tri {
  right: 15px;
}
[data-page='product_detail']
  .banner
  .informations-area
  .sub-navbar-main_inner__toggle
  .btn
  .tri:before {
  display: none;
}
[data-page='product_detail'] .banner .scroll_down {
  width: 30px;
  margin: 70px auto 0;
}

@media (max-width: 1199px) {
  [data-page='product_detail'] .main-nav-tabs-container {
    position: absolute !important;
  }
}

@media (min-width: 1200px) and (max-width: 1365px) {
  [data-page='product_detail'] .main-nav-tabs-container .main-nav-tabs-area {
    -webkit-transition: margin 0.6s ease;
    -o-transition: margin 0.6s ease;
    transition: margin 0.6s ease;
  }
}

@media (min-width: 1200px) and (max-width: 1365px) {
  [data-page='product_detail'] .main-nav-tabs-container.position-fixed .main-nav-tabs-area {
    margin-right: 12vw;
  }
}

[data-page='product_detail'] .content {
  padding-top: 50px;
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content {
    padding-top: 0;
  }
}
[data-page='product_detail'] .content .main-nav-tabs {
  position: relative;
  padding-top: 80px;
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content .main-nav-tabs {
    padding-top: 0;
  }
}
[data-page='product_detail'] .content .main-nav-tabs .main-nav-tabs-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 28px;
  padding-bottom: 20px;
  width: 1460px;
  max-width: 90%;
  display: block;
  margin: auto;
  text-align: center;
  font-size: 0;
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content .main-nav-tabs .main-nav-tabs-container {
    position: relative !important;
    padding-bottom: 30px;
  }
}
[data-page='product_detail'] .content .main-nav-tabs .main-nav-tabs-container .main-nav-tabs-area {
  display: inline-block;
  font-size: 1rem;
  max-width: 100%;
}
@media (max-width: 767px) {
  [data-page='product_detail']
    .content
    .main-nav-tabs
    .main-nav-tabs-container
    .main-nav-tabs-area {
    display: none;
  }
}
@media (max-width: 479px) {
  [data-page='product_detail']
    .content
    .main-nav-tabs
    .main-nav-tabs-container
    .main-nav-tabs-area {
    width: 350px;
    max-width: 100%;
  }
}
[data-page='product_detail'] .content .main-nav-tabs.fixed_Wrapper .position-fixed {
  left: 0;
  right: 0;
  z-index: 99;
  width: 100%;
  background: #fff;
  max-width: 100%;
}
[data-page='product_detail'] .content .tab-content {
  padding-top: 50px;
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content .tab-content {
    padding-top: 0;
  }
}
[data-page='product_detail'] .content .article-area .article-group {
  width: 500px;
  max-width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
[data-page='product_detail'] .content .article-area .article-group .title-area {
  padding-top: 20px;
  padding-bottom: 15px;
}
[data-page='product_detail'] .content .article-area .article-group .intro-area {
  padding-top: 15px;
  padding-bottom: 20px;
}
@media (max-width: 575px) {
  [data-page='product_detail'] .content .article-area .article-group .intro-area {
    padding-top: 5px;
  }
}
[data-page='product_detail'] .content .tab-pane-content .slick-slider {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content .tab-pane-content .slick-slider {
    margin-bottom: -15px;
  }
}
[data-page='product_detail'] .content .tab-pane-content .slick-slider .list-item {
  position: relative;
}
[data-page='product_detail'] .content .tab-pane-content .slick-slider .list-item a {
  z-index: 4;
}
[data-page='product_detail'] .content .tab-pane-content .slick-slider .list-item .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  z-index: 2;
  -webkit-transition: opacity 0.6s ease;
  -o-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
[data-page='product_detail'] .content .tab-pane-content .slick-slider .list-item .pic {
  width: 100%;
  height: 0;
  padding-bottom: 60.59%;
  z-index: 1;
  overflow: hidden;
}
[data-page='product_detail'] .content .tab-pane-content .slick-slider .list-item .pic img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  -o-transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, -webkit-transform 0.6s ease;
}
[data-page='product_detail'] .content .tab-pane-content .slick-slider .list-item .article {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 3;
  color: #fff;
}
[data-page='product_detail']
  .content
  .tab-pane-content
  .slick-slider
  .list-item
  .article
  [class*='icon-'] {
  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;
  margin: auto;
}
[data-page='product_detail']
  .content
  .tab-pane-content
  .slick-slider
  .list-item.video-list-item:hover
  img {
  -webkit-transform: translate(-50%, -50%) scale(1.15);
  -ms-transform: translate(-50%, -50%) scale(1.15);
  transform: translate(-50%, -50%) scale(1.15);
}
[data-page='product_detail'] .content .tab-pane-content .slick-slider .slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}
[data-page='product_detail'] .content .tab-pane-content .slick-slider .slick-dots li button {
  padding: 15px;
  width: auto;
  height: auto;
  margin: auto;
}
[data-page='product_detail'] .content .tab-pane-content .slick-slider .slick-dots li button:before {
  content: '';
  position: relative;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #245988;
  opacity: 0.4;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
[data-page='product_detail']
  .content
  .tab-pane-content
  .slick-slider
  .slick-dots
  li.slick-active
  button:before {
  opacity: 1;
}
@media (max-width: 991px) {
  [data-page='product_detail'] .content .tab-pane-content .slick-slider.slick-slider-side {
    padding-bottom: 40px;
  }
}
[data-page='product_detail']
  .content
  .tab-pane-content
  .slick-slider.slick-slider-side
  .slick-dots {
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: auto;
}
@media (max-width: 991px) {
  [data-page='product_detail']
    .content
    .tab-pane-content
    .slick-slider.slick-slider-side
    .slick-dots {
    display: block;
    width: 100%;
    top: auto;
    left: auto !important;
    right: auto !important;
    bottom: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    text-align: center;
  }
}
[data-page='product_detail']
  .content
  .tab-pane-content
  .slick-slider.slick-slider-side
  .slick-dots
  li {
  display: block;
}
@media (max-width: 991px) {
  [data-page='product_detail']
    .content
    .tab-pane-content
    .slick-slider.slick-slider-side
    .slick-dots
    li {
    display: inline-block;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  [data-page='product_detail']
    .content
    .tab-pane-content
    .slick-slider.slick-slider-side
    .slick-dots
    li
    button {
    padding: 10px 15px;
  }
}
[data-page='product_detail'] .content [data-img-align-area='full'] {
  margin-bottom: 75px;
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content [data-img-align-area='full'] {
    margin-bottom: 0;
  }
}
[data-page='product_detail'] .content [data-img-align-area='full'] .list-item {
  position: relative;
  max-width: 80%;
  width: calc(100vw - 150px);
  margin: 0 auto;
}
@media (max-width: 991px) {
  [data-page='product_detail'] .content [data-img-align-area='full'] .list-item {
    max-width: 100%;
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content [data-img-align-area='full'] .list-item {
    padding-left: 15px;
    padding-right: 15px;
  }
}
[data-page='product_detail'] .content [data-img-align-area='full'] .list-item img {
  display: block;
  margin: auto;
  width: 100%;
}
[data-page='product_detail'] .content [data-img-align-area='full'] .article-area {
  position: absolute;
  top: 70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10;
}
@media (max-width: 991px) {
  [data-page='product_detail'] .content [data-img-align-area='full'] .article-area {
    position: relative;
    top: 10px;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content [data-img-align-area='full'] .article-area {
    top: 0;
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
[data-page='product_detail'] .content [data-img-align-area='full'] .article-area .article-group {
  width: 580px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
[data-page='product_detail']
  .content
  [data-img-align-area='full']
  .article-area
  .article-group
  .title-area {
  text-align: center;
}
@media (max-width: 991px) {
  [data-page='product_detail']
    .content
    [data-img-align-area='full']
    .article-area
    .article-group
    .title-area {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail']
    .content
    [data-img-align-area='full']
    .article-area
    .article-group
    .title-area {
    text-align: left;
  }
}
[data-page='product_detail'] .content [data-img-align-area='center'] .container {
  padding-left: 135px;
  padding-right: 135px;
}
[data-page='product_detail'] .content [data-img-align-area='center'] .title-area {
  border-top: solid 1px #000;
  display: block;
  margin: auto;
  width: 354px;
  max-width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 25px;
  padding-bottom: 55px;
}
[data-page='product_detail'] .content [data-img-align-area='center'] .title-area .edit {
  margin-top: 20px;
}
[data-page='product_detail'] .content [data-img-align-area='center'] .intro-area {
  width: 1000px;
  max-width: 100%;
  padding-left: 110px;
  padding-right: 110px;
}
[data-page='product_detail'] .content [data-img-align-area='center'] .slick-slider .slick-dots {
  right: -54px;
  left: auto;
}
[data-page='product_detail'] .content [data-img-align-area='left'] .article-area,
[data-page='product_detail'] .content [data-img-align-area='right'] .article-area {
  padding-left: 70px;
  padding-right: 70px;
}
@media (min-width: 992px) {
  [data-page='product_detail'] .content [data-img-align-area='left'] .article-area,
  [data-page='product_detail'] .content [data-img-align-area='right'] .article-area {
    -ms-flex-preferred-size: 41%;
    flex-basis: 41%;
    max-width: 41%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  [data-page='product_detail'] .content [data-img-align-area='left'] .article-area,
  [data-page='product_detail'] .content [data-img-align-area='right'] .article-area {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='product_detail'] .content [data-img-align-area='left'] .article-area,
  [data-page='product_detail'] .content [data-img-align-area='right'] .article-area {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (min-width: 992px) {
  [data-page='product_detail'] .content [data-img-align-area='left'] .pic-area,
  [data-page='product_detail'] .content [data-img-align-area='right'] .pic-area {
    -ms-flex-preferred-size: 59%;
    flex-basis: 59%;
    max-width: 59%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='product_detail'] .content [data-img-align-area='left'] .pic-area,
  [data-page='product_detail'] .content [data-img-align-area='right'] .pic-area {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  [data-page='product_detail'] .content [data-img-align-area='left'] .row,
  [data-page='product_detail'] .content [data-img-align-area='right'] .row {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content [data-img-align-area='left'] .row,
  [data-page='product_detail'] .content [data-img-align-area='right'] .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  [data-page='product_detail'] .content [data-img-align-area='left'] .row .pic-area .slider-area,
  [data-page='product_detail'] .content [data-img-align-area='left'] .row .pic-area .slick-slider,
  [data-page='product_detail'] .content [data-img-align-area='left'] .row .pic-area .slick-list,
  [data-page='product_detail'] .content [data-img-align-area='left'] .row .pic-area .slick-track,
  [data-page='product_detail'] .content [data-img-align-area='left'] .row .pic-area .slick-slide,
  [data-page='product_detail']
    .content
    [data-img-align-area='left']
    .row
    .pic-area
    .slick-slide
    > div,
  [data-page='product_detail'] .content [data-img-align-area='left'] .row .pic-area .list-item,
  [data-page='product_detail'] .content [data-img-align-area='right'] .row .pic-area .slider-area,
  [data-page='product_detail'] .content [data-img-align-area='right'] .row .pic-area .slick-slider,
  [data-page='product_detail'] .content [data-img-align-area='right'] .row .pic-area .slick-list,
  [data-page='product_detail'] .content [data-img-align-area='right'] .row .pic-area .slick-track,
  [data-page='product_detail'] .content [data-img-align-area='right'] .row .pic-area .slick-slide,
  [data-page='product_detail']
    .content
    [data-img-align-area='right']
    .row
    .pic-area
    .slick-slide
    > div,
  [data-page='product_detail'] .content [data-img-align-area='right'] .row .pic-area .list-item {
    height: 100%;
  }
}
[data-page='product_detail'] .content [data-img-align-area='left'] .pic-area {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
[data-page='product_detail'] .content [data-img-align-area='left'] .article-area {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='product_detail'] .content [data-img-align-area='left'] .article-area {
    padding-right: 20px;
    padding-left: 45px;
  }
}
[data-page='product_detail'] .content [data-img-align-area='left'] .slider-area {
  padding-right: 76px;
}
@media (max-width: 991px) {
  [data-page='product_detail'] .content [data-img-align-area='left'] .slider-area {
    padding-right: 0;
  }
}
[data-page='product_detail'] .content [data-img-align-area='left'] .slick-slider .slick-dots {
  right: -54px;
  left: auto;
}
[data-page='product_detail'] .content [data-img-align-area='right'] .pic-area {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
[data-page='product_detail'] .content [data-img-align-area='right'] .article-area {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='product_detail'] .content [data-img-align-area='right'] .article-area {
    padding-right: 45px;
    padding-left: 20px;
  }
}
[data-page='product_detail'] .content [data-img-align-area='right'] .article-area .article-group {
  margin-left: auto;
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content [data-img-align-area='right'] .article-area .article-group {
    margin-left: 0;
  }
}
[data-page='product_detail'] .content [data-img-align-area='right'] .slider-area {
  padding-left: 76px;
}
@media (max-width: 991px) {
  [data-page='product_detail'] .content [data-img-align-area='right'] .slider-area {
    padding-left: 0;
  }
}
[data-page='product_detail'] .content [data-img-align-area='right'] .slick-slider .slick-dots {
  right: auto;
  left: -54px;
}
@media (max-width: 767px) {
  [data-page='product_detail']
    .content
    [data-img-align-area='full']
    .article-area
    .article-group
    .title-area,
  [data-page='product_detail']
    .content
    [data-img-align-area='left']
    .article-area
    .article-group
    .title-area,
  [data-page='product_detail']
    .content
    [data-img-align-area='right']
    .article-area
    .article-group
    .title-area,
  [data-page='product_detail']
    .content
    [data-img-align-area='center']
    .article-area
    .article-group
    .title-area {
    margin-top: 15px;
    padding-top: 0;
    padding-bottom: 0;
    text-align: left;
  }
}
@media (max-width: 575px) {
  [data-page='product_detail']
    .content
    [data-img-align-area='full']
    .article-area
    .article-group
    .title-area,
  [data-page='product_detail']
    .content
    [data-img-align-area='left']
    .article-area
    .article-group
    .title-area,
  [data-page='product_detail']
    .content
    [data-img-align-area='right']
    .article-area
    .article-group
    .title-area,
  [data-page='product_detail']
    .content
    [data-img-align-area='center']
    .article-area
    .article-group
    .title-area {
    padding-top: 0;
    padding-bottom: 0;
    text-align: left;
  }
}
@media (max-width: 575px) {
  [data-page='product_detail']
    .content
    [data-img-align-area='full']
    .article-area
    .article-group
    .title-area
    .heading5,
  [data-page='product_detail']
    .content
    [data-img-align-area='left']
    .article-area
    .article-group
    .title-area
    .heading5,
  [data-page='product_detail']
    .content
    [data-img-align-area='right']
    .article-area
    .article-group
    .title-area
    .heading5,
  [data-page='product_detail']
    .content
    [data-img-align-area='center']
    .article-area
    .article-group
    .title-area
    .heading5 {
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  [data-page='product_detail']
    .content
    [data-img-align-area='full']
    .article-area
    .article-group
    .title-area
    .heading4,
  [data-page='product_detail']
    .content
    [data-img-align-area='left']
    .article-area
    .article-group
    .title-area
    .heading4,
  [data-page='product_detail']
    .content
    [data-img-align-area='right']
    .article-area
    .article-group
    .title-area
    .heading4,
  [data-page='product_detail']
    .content
    [data-img-align-area='center']
    .article-area
    .article-group
    .title-area
    .heading4 {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail']
    .content
    [data-img-align-area='full']
    .article-area
    .article-group
    .intro-area,
  [data-page='product_detail']
    .content
    [data-img-align-area='left']
    .article-area
    .article-group
    .intro-area,
  [data-page='product_detail']
    .content
    [data-img-align-area='right']
    .article-area
    .article-group
    .intro-area,
  [data-page='product_detail']
    .content
    [data-img-align-area='center']
    .article-area
    .article-group
    .intro-area {
    padding-top: 5px;
    padding-bottom: 0;
  }
}
[data-page='product_detail'] .content .tab-pane-content {
  position: relative;
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content .tab-pane-content .container,
  [data-page='product_detail'] .content .tab-pane-content .container-fluid {
    max-width: 90%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 575px) {
  [data-page='product_detail'] .content .tab-pane-content .container,
  [data-page='product_detail'] .content .tab-pane-content .container-fluid {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content .tab-pane-content .container .title-area,
  [data-page='product_detail'] .content .tab-pane-content .container .intro-area,
  [data-page='product_detail'] .content .tab-pane-content .container .article-area,
  [data-page='product_detail'] .content .tab-pane-content .container-fluid .title-area,
  [data-page='product_detail'] .content .tab-pane-content .container-fluid .intro-area,
  [data-page='product_detail'] .content .tab-pane-content .container-fluid .article-area {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content .tab-pane-content .container .pic-area,
  [data-page='product_detail'] .content .tab-pane-content .container-fluid .pic-area {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content .tab-pane-content .container .article-area,
  [data-page='product_detail'] .content .tab-pane-content .container-fluid .article-area {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content .tab-pane + .tab-pane {
    padding-top: 60px;
  }
}
@media (max-width: 575px) {
  [data-page='product_detail'] .content .tab-pane + .tab-pane {
    padding-top: 50px;
  }
}
[data-page='product_detail']
  .content
  .tab-pane
  [data-img-align-area='right']
  .decorate-line-container {
  width: 41%;
}
[data-page='product_detail']
  .content
  .tab-pane
  [data-img-align-area='right']
  .decorate-line-container
  .decorate-line {
  width: 80%;
  max-width: none;
  -webkit-transform: translate(-75%, -30%);
  -ms-transform: translate(-75%, -30%);
  transform: translate(-75%, -30%);
}
[data-page='product_detail'] .content .tab-pane + .tab-pane[data-area='specification'] {
  margin-top: 100px;
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content .tab-pane + .tab-pane[data-area='specification'] {
    margin-top: 0;
  }
}
[data-page='product_detail'] .content .tab-pane[data-area='specification'] .container {
  position: relative;
  width: 1044px;
  max-width: 100%;
  display: block;
  margin: auto;
}
@media (min-width: 1200px) {
  [data-page='product_detail'] .content .tab-pane[data-area='specification'] .container {
    max-width: calc(100% - 120px - 30px - 20px);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  [data-page='product_detail'] .content .tab-pane[data-area='specification'] .container {
    max-width: calc(100% - 100px - 30px - 20px);
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content .tab-pane[data-area='specification'] .container {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    .container
    .article-area {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='specification']
  .container
  .article-area
  .article-group {
  margin: auto;
}
@media (max-width: 575px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    .container
    .article-area
    .article-group {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    .container
    .table-area {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    .decorate-line-container {
    display: none;
  }
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='specification']
  .decorate-line-container
  .decorate-animal {
  right: -27.39%;
  top: 70px;
}
@media (max-width: 1365px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    .decorate-line-container
    .decorate-animal {
    right: 50px;
    top: 40px;
  }
}
@media (max-width: 1199px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    .decorate-line-container
    .decorate-animal {
    right: 50px;
    top: 0;
  }
}
@media (max-width: 991px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    .decorate-line-container
    .decorate-animal {
    right: 25px;
  }
}
[data-page='product_detail'] .content .tab-pane[data-area='specification'] table {
  table-layout: fixed;
  width: 100%;
  max-width: 100%;
  border-top: solid 3px black;
  border-bottom: solid 3px black;
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content .tab-pane[data-area='specification'] table thead,
  [data-page='product_detail'] .content .tab-pane[data-area='specification'] table tbody {
    display: block;
    width: 100%;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content .tab-pane[data-area='specification'] table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 15px;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    table
    tr[data-tr='org'] {
    padding-top: 10px;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    table
    tr[data-tr='continuation'] {
    padding-top: 0;
  }
}
[data-page='product_detail'] .content .tab-pane[data-area='specification'] table td {
  padding: 25px 15px;
  vertical-align: middle;
}
@media (max-width: 1199px) {
  [data-page='product_detail'] .content .tab-pane[data-area='specification'] table td {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 991px) {
  [data-page='product_detail'] .content .tab-pane[data-area='specification'] table td {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content .tab-pane[data-area='specification'] table td {
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
  }
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='specification']
  table
  td[data-td='title'] {
  font-weight: bolder;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.4);
}
@media (max-width: 767px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    table
    td[data-td='title'] {
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content .tab-pane[data-area='specification'] table td.empty {
    display: none;
  }
}
[data-page='product_detail'] .content .tab-pane[data-area='specification'] table td .custom-ul {
  list-style: none;
  padding-left: 0;
}
[data-page='product_detail'] .content .tab-pane[data-area='specification'] table td .custom-ul li {
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='specification']
  table
  td
  .custom-ul
  li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  display: inline-block;
  width: 10px;
  height: 3px;
  background-color: #12e2a3;
}
[data-page='product_detail'] .content .tab-pane[data-area='specification'] table td .heading5,
[data-page='product_detail'] .content .tab-pane[data-area='specification'] table td p {
  margin-bottom: 0;
  line-height: 1.5;
}
[data-page='product_detail'] .content .tab-pane[data-area='specification'] table td .heading5 span,
[data-page='product_detail'] .content .tab-pane[data-area='specification'] table td p span {
  display: inline-block;
}
@media (max-width: 575px) {
  [data-page='product_detail'] .content .tab-pane[data-area='specification'] table .empty {
    display: none;
  }
}
@media (min-width: 576px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    table
    td[data-td='separate'],
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    table
    td[data-td='separate']
    ~ .empty,
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    table
    td[data-td='separate'] {
    position: relative;
    text-align: center;
    padding: 25px 10px;
  }
}
@media (min-width: 576px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    table
    td[data-td='separate']
    + [data-td='separate']:before,
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    table
    td[data-td='separate']
    ~ .empty
    + [data-td='separate']:before,
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    table
    td[data-td='separate']
    + [data-td='separate']:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 25px;
    background-color: rgba(0, 0, 0, 0.2);
  }
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='specification']
  table
  tr:last-of-type
  td {
  border-bottom: 0;
}
@media (min-width: 1200px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    table
    tr:not([data-tr='continuation'])
    td[data-td='title'] {
    width: 330px;
    padding-left: 130px;
    padding-right: 45px;
  }
}
@media (min-width: 1200px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    table
    tr:not([data-tr='continuation'])
    td
    + td[data-td='title'] {
    width: auto;
    padding-left: 10px;
    padding-right: 45px;
  }
}
@media (min-width: 768px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    table
    [data-td='separate'] {
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 768px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    table
    tr:not([data-tr='continuation'])[data-td='separate'],
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    table
    tr:not([data-tr='org'])[data-td='separate'],
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    table
    td[rowspan='1']
    ~ td[data-td='separate'] {
    border-bottom: solid 1px #000;
  }
}
@media (min-width: 768px) {
  [data-page='product_detail'] .content .tab-pane[data-area='specification'] table td,
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    table
    [data-td='separate'][colspan],
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    table
    [data-tr='continuation']
    td,
  [data-page='product_detail'] .content .tab-pane[data-area='specification'] table td.empty {
    border-bottom: solid 1px #000;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    table
    tr:not([data-tr='continuation']),
  [data-page='product_detail']
    .content
    .tab-pane[data-area='specification']
    table
    tr
    td
    + [data-td='title'] {
    border-top: solid 1px #000;
  }
}
[data-page='product_detail'] .content .tab-pane + .tab-pane[data-area='recommend'] {
  margin-top: 175px;
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content .tab-pane + .tab-pane[data-area='recommend'] {
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  [data-page='product_detail'] .content .tab-pane + .tab-pane[data-area='recommend'] {
    margin-top: 40px;
  }
}
@media (max-width: 479px) {
  [data-page='product_detail'] .content .tab-pane + .tab-pane[data-area='recommend'] {
    margin-top: 0;
  }
}
[data-page='product_detail'] .content .tab-pane[data-area='recommend'] {
  width: 100%;
  overflow-y: visible;
}
[data-page='product_detail'] .content .tab-pane[data-area='recommend'] .container {
  max-width: 1560px;
  width: 100%;
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content .tab-pane[data-area='recommend'] .container .article-area {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content .tab-pane[data-area='recommend'] .container .slider-area {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
}
[data-page='product_detail'] .content .tab-pane[data-area='recommend'] .main-list {
  padding-bottom: 0;
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='recommend']
  .article-area
  .article-group {
  margin: auto;
}
[data-page='product_detail'] .content .tab-pane[data-area='recommend'] .tab-pane-content {
  position: relative;
  padding-top: 75px;
  padding-bottom: 90px;
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content .tab-pane[data-area='recommend'] .tab-pane-content {
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  [data-page='product_detail'] .content .tab-pane[data-area='recommend'] .tab-pane-content {
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  [data-page='product_detail'] .content .tab-pane[data-area='recommend'] .tab-pane-content .row {
    margin-left: 0;
    margin-right: 0;
  }
}
[data-page='product_detail'] .content .tab-pane[data-area='recommend'] .tab-pane-content .bg,
[data-page='product_detail']
  .content
  .tab-pane[data-area='recommend']
  .tab-pane-content
  .dashed-line,
[data-page='product_detail']
  .content
  .tab-pane[data-area='recommend']
  .tab-pane-content
  .dashed-line:before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
}
[data-page='product_detail'] .content .tab-pane[data-area='recommend'] .tab-pane-content .bg {
  background-size: cover !important;
  border-radius: 70% 60% 0% 0% / 6% 6% 0% 0%;
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='recommend']
  .tab-pane-content
  .dashed-line {
  border-radius: 60% 40% 0 0 / 45% 60% 0 0;
  border-top: dashed 1px #000;
  z-index: 10;
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='recommend']
  .tab-pane-content
  > .container {
  position: relative;
  z-index: 20;
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='recommend']
  .tab-pane-content
  .slider-area {
  padding-top: 20px;
  padding-bottom: 40px;
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='recommend']
  .tab-pane-content
  .slider-area.main-list-area {
  display: block;
}
@media (max-width: 479px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='recommend']
    .tab-pane-content
    .slider-area.main-list-area {
    padding-left: 0;
    padding-right: 0;
  }
}
[data-page='product_detail'] .content .tab-pane[data-area='recommend'] .recommend-slider {
  padding: 0 125px;
  margin-bottom: 25px;
}
@media (max-width: 1199px) {
  [data-page='product_detail'] .content .tab-pane[data-area='recommend'] .recommend-slider {
    padding: 0 60px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  [data-page='product_detail'] .content .tab-pane[data-area='recommend'] .recommend-slider {
    width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  [data-page='product_detail'] .content .tab-pane[data-area='recommend'] .recommend-slider {
    padding: 0;
  }
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='recommend']
  .recommend-slider
  .list-item {
  padding: 20px 25px;
  padding-bottom: 0;
  margin: 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  max-width: none;
}
@media (min-width: 576px) and (max-width: 991px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='recommend']
    .recommend-slider
    .list-item {
    max-width: 300px;
  }
}
@media (max-width: 479px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='recommend']
    .recommend-slider
    .list-item {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
  }
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='recommend']
  .recommend-slider
  .list-item
  .label {
  left: 0;
  top: 0;
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='recommend']
  .recommend-slider
  .list-item
  .pic {
  padding-bottom: 0;
  width: 200px;
  height: 200px;
  overflow: visible;
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='recommend']
  .recommend-slider
  .list-item
  .pic
  img {
  width: auto;
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='recommend']
  .recommend-slider
  .list-item
  .article {
  position: relative;
  display: block;
  color: #000;
}
@media (max-width: 479px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='recommend']
    .recommend-slider
    .list-item
    .article
    .info {
    margin-top: 10px;
  }
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='recommend']
  .recommend-slider
  .slick-dots {
  left: 0;
  bottom: -30px;
}
@media (max-width: 479px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='recommend']
    .recommend-slider
    .slick-dots {
    bottom: -50px;
  }
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='recommend']
  .recommend-slider
  .slick-arrow {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='recommend']
  .recommend-slider
  .slick-arrow:hover {
  -webkit-transform: translate(0, -50%) scale(1.1);
  -ms-transform: translate(0, -50%) scale(1.1);
  transform: translate(0, -50%) scale(1.1);
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='recommend']
  .recommend-slider
  .slick-arrow.slick-prev,
[data-page='product_detail']
  .content
  .tab-pane[data-area='recommend']
  .recommend-slider
  .slick-arrow.slick-next {
  width: 38px;
  height: 38px;
  background: #6f6c67;
  border-radius: 50%;
}
@media (max-width: 479px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='recommend']
    .recommend-slider
    .slick-arrow.slick-prev,
  [data-page='product_detail']
    .content
    .tab-pane[data-area='recommend']
    .recommend-slider
    .slick-arrow.slick-next {
    top: calc(100% + 33px);
  }
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='recommend']
  .recommend-slider
  .slick-arrow.slick-prev:before,
[data-page='product_detail']
  .content
  .tab-pane[data-area='recommend']
  .recommend-slider
  .slick-arrow.slick-next:before {
  opacity: 1;
  display: block;
  font-family: 'icomoon';
  font-size: 15px;
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='recommend']
  .recommend-slider
  .slick-arrow.slick-prev {
  left: 55px;
}
@media (max-width: 1199px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='recommend']
    .recommend-slider
    .slick-arrow.slick-prev {
    left: 0;
  }
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='recommend']
  .recommend-slider
  .slick-arrow.slick-prev:before {
  content: '\e901';
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='recommend']
  .recommend-slider
  .slick-arrow.slick-next {
  right: 55px;
}
@media (max-width: 1199px) {
  [data-page='product_detail']
    .content
    .tab-pane[data-area='recommend']
    .recommend-slider
    .slick-arrow.slick-next {
    right: 0;
  }
}
[data-page='product_detail']
  .content
  .tab-pane[data-area='recommend']
  .recommend-slider
  .slick-arrow.slick-next:before {
  content: '\e900';
}

[data-page-classify='about'] .line-dashed {
  width: 700px;
  height: 740px;
  border-style: dashed;
  border-width: 2px;
  border-color: rgba(97, 156, 162, 0.6);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  z-index: -1;
}
@media (max-width: 767px) {
  [data-page-classify='about'] .line-dashed {
    display: none;
  }
}
[data-page-classify='about'] .line-dashed:nth-child(1) {
  top: -15%;
  right: -50%;
  border-radius: 62% 38% 59% 58% / 54% 49% 51% 64%;
}
[data-page-classify='about'] .line-dashed:nth-child(2) {
  bottom: -2%;
  left: 10%;
  border-radius: 48% 52% 59% 41% / 24% 49% 51% 72%;
}

[data-page-classify='about']
  main
  .banner.banner-normal
  .article-container
  .article-title
  .heading2 {
  margin-bottom: 0;
}

@media (max-width: 479px) {
  [data-page-classify='about'] main .banner.banner-normal .banner-container {
    padding-bottom: 0;
  }
}

[data-page-classify='about'] main .banner.banner-normal .banner-container_inner .subtitle {
  display: block;
  font-family: 'mplus-bold', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
@media (max-width: 1439px) {
  [data-page-classify='about'] main .banner.banner-normal .banner-container_inner .subtitle {
    font-size: 1.2rem;
  }
}
@media (max-width: 991px) {
  [data-page-classify='about'] main .banner.banner-normal .banner-container_inner .subtitle {
    font-size: 1.125rem;
  }
}
@media (max-width: 479px) {
  [data-page-classify='about'] main .banner.banner-normal .banner-container_inner .subtitle {
    font-size: 1.125rem;
  }
}

[data-page-classify='about'] main .banner.banner-normal .banner-container_inner .title {
  display: block;
  margin-top: 0;
  line-height: 1.5;
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 3.4375rem;
}
@media (max-width: 1199px) {
  [data-page-classify='about'] main .banner.banner-normal .banner-container_inner .title {
    font-size: 2.4rem;
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  [data-page-classify='about'] main .banner.banner-normal .banner-container_inner .title {
    font-size: 2.5rem;
  }
}
@media (max-width: 575px) {
  [data-page-classify='about'] main .banner.banner-normal .banner-container_inner .title {
    font-size: 2.8125rem;
  }
}
@media (max-width: 479px) {
  [data-page-classify='about'] main .banner.banner-normal .banner-container_inner .title {
    font-size: 2rem;
  }
}

[data-page-classify='about'] main .banner.banner-normal .banner-container_inner .group .text {
  display: block;
  font-size: 0.9375rem;
  line-height: 25px;
  letter-spacing: 0.01em;
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  color: rgba(255, 255, 255, 0.75);
  padding: 15px 0px;
  max-width: 500px;
  text-align: left;
}
@media (max-width: 991px) {
  [data-page-classify='about'] main .banner.banner-normal .banner-container_inner .group .text {
    font-size: 0.875rem;
    padding: 0;
  }
}
@media (max-width: 479px) {
  [data-page-classify='about'] main .banner.banner-normal .banner-container_inner .group .text {
    padding-left: 0;
    padding-right: 0;
  }
}

[data-page-classify='about'] main .banner.banner-normal .article-container {
  padding-top: 25px;
}

[data-page-classify='about'] main .banner.banner-normal .main-nav-tabs-area {
  padding-top: 10px;
  z-index: 99;
}
@media (max-width: 767px) {
  [data-page-classify='about'] main .banner.banner-normal .main-nav-tabs-area .nav-tabs {
    width: 100%;
  }
}
@media (max-width: 991px) {
  [data-page-classify='about'] main .banner.banner-normal .main-nav-tabs-area .nav-tabs .nav-item {
    margin-left: 0;
  }
}
[data-page-classify='about']
  main
  .banner.banner-normal
  .main-nav-tabs-area
  .nav-tabs
  .nav-item:after {
  background-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 991px) {
  [data-page-classify='about']
    main
    .banner.banner-normal
    .main-nav-tabs-area
    .nav-tabs
    .nav-item:after {
    right: -1px;
  }
}
[data-page-classify='about']
  main
  .banner.banner-normal
  .main-nav-tabs-area
  .nav-tabs
  .nav-item:nth-child(1) {
  margin-left: 0;
}
[data-page-classify='about']
  main
  .banner.banner-normal
  .main-nav-tabs-area
  .nav-tabs
  .nav-item:nth-child(4) {
  margin-left: 0;
}
[data-page-classify='about']
  main
  .banner.banner-normal
  .main-nav-tabs-area
  .nav-tabs
  .nav-item
  .nav-link {
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  color: rgba(255, 255, 255, 0.3);
  padding: 0 15px;
}
[data-page-classify='about']
  main
  .banner.banner-normal
  .main-nav-tabs-area
  .nav-tabs
  .nav-item
  .nav-link:after {
  background-color: #255885;
}
[data-page-classify='about']
  main
  .banner.banner-normal
  .main-nav-tabs-area
  .nav-tabs
  .nav-item
  .nav-link.active {
  color: #fff;
}
[data-page-classify='about']
  main
  .banner.banner-normal
  .main-nav-tabs-area
  .nav-tabs
  .nav-item
  .nav-link:hover {
  color: #fff;
}

[data-page-classify='about']
  .main-nav-tabs-area
  .nav-tabs.has-divider
  .nav-item:not(:last-child):after {
  right: 0;
}

[data-page-classify='about'] .main-nav-tabs-area .nav-item {
  margin-bottom: 20px;
}
[data-page-classify='about'] .main-nav-tabs-area .nav-item:after {
  right: 0;
}
[data-page-classify='about'] .main-nav-tabs-area .nav-item + .nav-item {
  margin-left: 0;
}
[data-page-classify='about'] .main-nav-tabs-area .nav-item:not(:first-child) .nav-link {
  margin-left: 7px;
}
[data-page-classify='about'] .main-nav-tabs-area .nav-item .nav-link {
  margin-right: 7px;
}

[data-page-classify='about'] .org_img,
[data-page-classify='about'] .small_img {
  display: none;
}

@media (min-width: 1025px), (max-width: 1024px) and (min-aspect-ratio: 1 / 1) {
  [data-page-classify='about'] .org_img {
    display: block;
  }
  [data-page-classify='about'] .org_img.padding_height {
    height: 0;
    padding-bottom: 40%;
  }
}
@media (min-width: 1025px) and (max-width: 1279px),
  (max-width: 1024px) and (min-aspect-ratio: 1 / 1) and (max-width: 1279px) {
  [data-page-classify='about'] .org_img.padding_height {
    padding-bottom: 50%;
  }
}

@media (max-width: 1024px) and (max-aspect-ratio: 1 / 1) {
  [data-page-classify='about'] .small_img {
    display: block;
  }
  [data-page-classify='about'] .small_img.padding_height {
    height: 0;
    padding-bottom: 125%;
  }
}

[data-page-classify='about'] main .banner.banner-normal {
  position: relative;
  padding: 0;
  z-index: 4;
}
[data-page-classify='about'] main .banner.banner-normal > .container {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  max-width: 50%;
  padding: 0 50px;
  width: 630px;
}
@media (max-width: 1500px) {
  [data-page-classify='about'] main .banner.banner-normal > .container {
    top: 60%;
  }
}
@media (max-width: 1400px) {
  [data-page-classify='about'] main .banner.banner-normal > .container {
    padding: 0 7vw;
    width: 100%;
  }
}
@media (max-width: 1024px) and (max-aspect-ratio: 1 / 1) {
  [data-page-classify='about'] main .banner.banner-normal > .container {
    padding: 0 5vw;
    top: 20%;
    right: auto;
    left: 5vw;
    max-width: 100%;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }
}
@media (max-width: 1024px) and (min-aspect-ratio: 1 / 1) {
  [data-page-classify='about'] main .banner.banner-normal > .container {
    top: 50%;
  }
}
@media (max-width: 767px) {
  [data-page-classify='about'] main .banner.banner-normal > .container {
    top: 25%;
    left: 0;
  }
}
[data-page-classify='about'] main .banner.banner-normal .banner-container {
  display: inline-block;
  position: relative;
}
[data-page-classify='about'] main .banner.banner-normal .banner-container_bg {
  position: relative;
}
[data-page-classify='about'] main .banner.banner-normal .banner-container_bg .img {
  background-size: cover;
}
[data-page-classify='about'] main .banner.banner-normal .banner-container_inner {
  margin-bottom: 50px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 1199px) {
  [data-page-classify='about'] main .banner.banner-normal .banner-container_inner {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  [data-page-classify='about'] main .banner.banner-normal .banner-container_inner {
    margin-bottom: 0;
  }
}
[data-page-classify='about'] main .banner.banner-normal .banner-container_inner .subtitle {
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.35) !important;
  letter-spacing: -0.015em;
}
[data-page-classify='about'] main .banner.banner-normal .banner-container_inner .title {
  color: #ffffff;
}
[data-page-classify='about'] main .banner.banner-normal .banner-container_inner .group {
  padding: 0;
}
[data-page-classify='about'] main .banner.banner-normal .banner-container_inner .text {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.4);
}
[data-page-classify='about'] main .banner.banner-normal .banner-container_inner .text p {
  color: rgba(255, 255, 255, 0.4);
}
[data-page-classify='about'] main .banner.banner-normal .article-container .article-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
[data-page-classify='about']
  main
  .banner.banner-normal
  .article-container
  .article-title
  .heading2
  span {
  color: rgba(255, 255, 255, 0.8);
}
[data-page-classify='about'] main .banner.banner-normal .article-container .article-title hr {
  display: block;
  width: 64px;
  height: 2px;
  background-color: rgba(234, 202, 89, 0.7);
  border: none;
  margin-left: 20px;
}
[data-page-classify='about'] main .banner.banner-normal .dec-container .left {
  -webkit-transform: translateX(15%);
  -ms-transform: translateX(15%);
  transform: translateX(15%);
}
[data-page-classify='about'] main .banner.banner-normal .dec-container .left .dec {
  width: 30vw;
  height: 30vw;
}
[data-page-classify='about'] main .banner.banner-normal[data-banner='sub'] {
  margin-top: -110px;
  padding-top: 230px;
  height: 1000px;
  z-index: -1;
}
[data-page-classify='about']
  main
  .banner.banner-normal[data-banner='sub']
  .container
  .banner-container {
  width: 800px;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
[data-page-classify='about']
  main
  .banner.banner-normal[data-banner='sub']
  .container
  .banner-container_inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
[data-page-classify='about']
  main
  .banner.banner-normal[data-banner='sub']
  .container
  .banner-container_inner
  .subtitle {
  font-size: 1.25rem;
  color: #000000 !important;
}
[data-page-classify='about']
  main
  .banner.banner-normal[data-banner='sub']
  .container
  .banner-container_inner
  .title {
  font-size: 2.8125rem;
  color: rgba(0, 0, 0, 0.4);
}
@media (max-width: 479px) {
  [data-page-classify='about']
    main
    .banner.banner-normal[data-banner='sub']
    .container
    .banner-container_inner
    .title {
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 10px;
  }
}
[data-page-classify='about']
  main
  .banner.banner-normal[data-banner='sub']
  .container
  .banner-container_inner
  .group {
  padding: 25px 0 30px 0;
  margin-top: 35px;
}
@media (max-width: 479px) {
  [data-page-classify='about']
    main
    .banner.banner-normal[data-banner='sub']
    .container
    .banner-container_inner
    .group {
    margin-top: 10px;
  }
}
[data-page-classify='about']
  main
  .banner.banner-normal[data-banner='sub']
  .container
  .banner-container_inner
  .text {
  width: auto;
  text-align: left;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
}
[data-page-classify='about']
  main
  .banner.banner-normal[data-banner='sub']
  .container
  .banner-container_inner
  .text
  p {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
}
[data-page-classify='about']
  main
  .banner.banner-normal[data-banner='sub']
  .container
  .banner-container_inner
  hr {
  width: 61px;
  height: 2px;
  background-color: #57b7c2;
  margin-top: 10px;
}

[data-page='about'] main .banner.banner-normal {
  position: relative;
  z-index: 1;
}
@media (max-width: 479px) and (min-height: 600px) {
  [data-page='about'] main .banner.banner-normal {
    min-height: 75vh;
  }
}
@media (max-width: 767px) {
  [data-page='about'] main .banner.banner-normal .banner-container_inner {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  [data-page='about'] main .banner.banner-normal .article-container .main-nav-tabs-area {
    margin-top: 20px;
  }
}
[data-page='about'] main .banner.banner-normal .banner-container {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  [data-page='about'] main .banner.banner-normal .banner-container {
    padding-bottom: 0;
  }
}
[data-page='about'] main .banner.banner-normal .banner-container .group .text {
  text-align: left;
}
[data-page='about'] main .banner.banner-normal .main-nav-tabs-area .nav-tabs {
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='about'] main .banner.banner-normal .main-nav-tabs-area .nav-tabs {
    max-width: 100%;
    border-radius: 20px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    left: 0;
    top: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='about'] main .banner.banner-normal .main-nav-tabs-area .nav-tabs:nth-child(1) {
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='about'] main .banner.banner-normal .main-nav-tabs-area .nav-tabs:nth-child(4) {
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='about'] main .banner.banner-normal .main-nav-tabs-area .nav-tabs .nav-link {
    font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
      'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
      'Segoe UI Symbol';
    color: rgba(255, 255, 255, 0.3);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='about'] main .banner.banner-normal .main-nav-tabs-area .nav-tabs .nav-link:after {
    background-color: #255885;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='about'] main .banner.banner-normal .main-nav-tabs-area .nav-tabs .nav-link.active {
    color: #fff;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='about'] main .banner.banner-normal .main-nav-tabs-area .nav-tabs .nav-link:hover {
    color: #fff;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='about'] main .banner.banner-normal .main-nav-tabs-area .nav-tabs:after {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
@media (max-width: 767px) {
  [data-page='about'] main .banner.banner-normal .article-container {
    opacity: 0;
    pointer-events: none;
    display: none;
  }
}
[data-page='about'] main .banner.banner-normal .article-container .article-title-container {
  display: inline-block;
}

[data-page='about'] main .content .tab-content {
  margin-top: -50px;
}

[data-page='about'] main .content .container .lists {
  padding-top: 162px;
  padding-bottom: 215px;
}
@media (max-width: 1024px) and (min-aspect-ratio: 1 / 1) {
  [data-page='about'] main .content .container .lists {
    padding-top: 140px;
    padding-bottom: 180px;
  }
}
@media (max-width: 767px) {
  [data-page='about'] main .content .container .lists {
    padding-bottom: 180px;
  }
}
@media (max-width: 575px) {
  [data-page='about'] main .content .container .lists {
    padding-bottom: 120px;
  }
}
@media (max-width: 479px) {
  [data-page='about'] main .content .container .lists {
    padding-bottom: 80px;
  }
}
[data-page='about'] main .content .container .lists .list-item {
  padding: 0;
}
[data-page='about']
  main
  .content
  .container
  .lists
  .list-item:nth-child(odd)
  .pic-container
  .dec-container {
  top: -15px;
  left: -30px;
}
@media (max-width: 575px) {
  [data-page='about']
    main
    .content
    .container
    .lists
    .list-item:nth-child(odd)
    .pic-container
    .dec-container {
    top: -10px;
    left: -10px;
  }
}
[data-page='about']
  main
  .content
  .container
  .lists
  .list-item:nth-child(even)
  .pic-container
  .dec-container {
  top: 0px;
  left: 30px;
}
@media (max-width: 575px) {
  [data-page='about']
    main
    .content
    .container
    .lists
    .list-item:nth-child(even)
    .pic-container
    .dec-container {
    left: 10px;
  }
}
[data-page='about'] main .content .container .lists .list-item + .list-item {
  margin-top: 120px;
}
@media (max-width: 575px) {
  [data-page='about'] main .content .container .lists .list-item + .list-item {
    margin-top: 90px;
  }
}
@media (max-width: 479px) {
  [data-page='about'] main .content .container .lists .list-item + .list-item {
    margin-top: 70px;
  }
}
[data-page='about'] main .content .container .lists .list-item .pic-container {
  width: 53%;
}
@media (max-width: 767px) {
  [data-page='about'] main .content .container .lists .list-item .pic-container {
    width: 100%;
  }
}
[data-page='about'] main .content .container .lists .list-item .pic-container .dec-container {
  width: 100%;
  height: 105%;
  max-width: none;
  max-height: none;
}
@media (max-width: 575px) {
  [data-page='about'] main .content .container .lists .list-item .article-container {
    padding: 0;
  }
}
@media (max-width: 575px) {
  [data-page='about'] main .content .container .lists .list-item .article-container .article {
    margin-top: -40px;
  }
}
@media (max-width: 575px) {
  [data-page='about']
    main
    .content
    .container
    .lists
    .list-item
    .article-container
    .article
    h2.heading2 {
    font-size: 2rem;
    line-height: 1.3;
  }
}
[data-page='about'] main .content .container .lists .list-item .article-container .article p {
  margin-top: 15px;
  margin-bottom: 50px;
}
@media (max-width: 1279px) {
  [data-page='about'] main .content .container .lists .list-item .article-container .article p {
    margin-bottom: 30px;
    margin-top: 5px;
  }
}
@media (max-width: 575px) {
  [data-page='about'] main .content .container .lists .list-item .article-container .article p {
    margin-top: 5px;
    margin-bottom: 8px;
  }
}
[data-page='about'] main .content .container .lists .list-item .article-container .btn-area .btn {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 575px) {
  [data-page='about']
    main
    .content
    .container
    .lists
    .list-item
    .article-container
    .btn-area
    .btn.has-svg
    .icon {
    width: 40px;
    height: 37px;
  }
}
@media (max-width: 575px) {
  [data-page='about']
    main
    .content
    .container
    .lists
    .list-item
    .article-container
    .btn-area
    .btn.has-svg
    .icon:before {
    font-size: 0.8125rem;
  }
}
@media (max-width: 1024px) {
  [data-page='about']
    main
    .content
    .container
    .lists
    .list-item
    .article-container
    .btn-area
    .btn.has-svg
    .icon:after {
    opacity: 0;
  }
}
@media (max-width: 1024px) {
  [data-page='about']
    main
    .content
    .container
    .lists
    .list-item
    .article-container
    .btn-area
    .btn.has-svg:hover
    .icon:after {
    opacity: 1;
  }
}
[data-page='about']
  main
  .content
  .container
  .lists
  .list-item
  .article-container
  .btn-area
  .btn
  .icon {
  width: 48px;
  height: 45px;
}
@media (max-width: 575px) {
  [data-page='about'] main .content .container .lists .list-item .article-container .dec-container {
    max-width: 50%;
  }
}

[data-page-classify='about'][data-page='about'] .back-btn span {
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

[data-page-classify='about'][data-page='about'] .back-btn span.icon-left-arrow:before {
  color: rgba(255, 255, 255, 0.4) !important;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

[data-page-classify='about'][data-page='about'] .back-btn:hover span {
  color: #559198;
}

[data-page-classify='about'][data-page='about'] .back-btn:hover span.icon-left-arrow:before {
  color: #559198 !important;
}

[data-page-classify='about'][data-page='about'] .link-active-value {
  color: #fff;
}
@media (min-width: 768px) {
  [data-page-classify='about'][data-page='about'] .link-active-value:hover {
    color: #559198;
  }
}

[data-page-classify='about'][data-page='about'] .row {
  margin: 0;
}

[data-page-classify='about'][data-page='about'] main {
  background-color: #ececec;
}

[data-page-classify='about'][data-page='about']
  .banner.banner-normal
  .article-container
  .main-nav-tabs-area {
  width: 420px;
}
@media (max-width: 767px) {
  [data-page-classify='about'][data-page='about']
    .banner.banner-normal
    .article-container
    .main-nav-tabs-area
    .selectVal {
    margin-left: 0;
  }
}

[data-page-classify='about'][data-page='about'] .container .lists {
  padding: 115px 50px;
  width: 100%;
  max-width: 1265px;
  margin: auto;
}
@media (max-width: 1024px) {
  [data-page-classify='about'][data-page='about'] .container .lists {
    padding: 115px 5vw;
  }
}
@media (max-width: 767px) {
  [data-page-classify='about'][data-page='about'] .container .lists {
    padding: 115px 8vw;
  }
}
[data-page-classify='about'][data-page='about'] .container .lists .list-item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 50px 0;
}
@media (min-width: 768px) {
  [data-page-classify='about'][data-page='about'] .container .lists .list-item {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
[data-page-classify='about'][data-page='about'] .container .lists .list-item:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  [data-page-classify='about'][data-page='about'] .container .lists .list-item:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
[data-page-classify='about'][data-page='about']
  .container
  .lists
  .list-item:nth-child(odd)
  .article-container
  .dec-container {
  margin-left: -15px;
}
@media (max-width: 767px) {
  [data-page-classify='about'][data-page='about']
    .container
    .lists
    .list-item:nth-child(odd)
    .article-container
    .dec-container {
    margin-left: auto;
  }
}
[data-page-classify='about'][data-page='about']
  .container
  .lists
  .list-item:nth-child(odd)
  .article-container
  .dec-container[data-order='0'] {
  margin-bottom: -20px;
}
@media (max-width: 767px) {
  [data-page-classify='about'][data-page='about']
    .container
    .lists
    .list-item:nth-child(odd)
    .article-container
    .dec-container[data-order='0'] {
    margin-bottom: -70px;
  }
}
[data-page-classify='about'][data-page='about']
  .container
  .lists
  .list-item:nth-child(odd)
  .article-container
  .dec-container[data-order='1'] {
  text-align: right;
  margin-top: -20px;
}
@media (max-width: 767px) {
  [data-page-classify='about'][data-page='about']
    .container
    .lists
    .list-item:nth-child(odd)
    .article-container
    .dec-container[data-order='1'] {
    margin-top: auto;
    margin-bottom: -70px;
  }
}
@media (max-width: 767px) {
  [data-page-classify='about'][data-page='about'] .container .lists .list-item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
[data-page-classify='about'][data-page='about']
  .container
  .lists
  .list-item:nth-child(even)
  .article-container {
  margin-left: 70px;
}
@media (max-width: 1260px) {
  [data-page-classify='about'][data-page='about']
    .container
    .lists
    .list-item:nth-child(even)
    .article-container {
    margin-left: 5vw;
  }
}
[data-page-classify='about'][data-page='about']
  .container
  .lists
  .list-item:nth-child(even)
  .article-container
  .dec-container {
  text-align: right;
  margin-right: -15px;
}
@media (max-width: 767px) {
  [data-page-classify='about'][data-page='about']
    .container
    .lists
    .list-item:nth-child(even)
    .article-container
    .dec-container {
    margin-right: 0;
    text-align: left;
  }
}
@media (max-width: 767px) {
  [data-page-classify='about'][data-page='about']
    .container
    .lists
    .list-item:nth-child(even)
    .article-container
    .dec-container {
    margin-bottom: -60px;
  }
}
[data-page-classify='about'][data-page='about']
  .container
  .lists
  .list-item:nth-child(even)
  .article-container
  .dec-container[data-order='0'] {
  margin-bottom: -20px;
}
@media (min-width: 1025px) {
  [data-page-classify='about'][data-page='about']
    .container
    .lists
    .list-item
    .pic-container:hover
    ~ .article-container
    .btn-area,
  [data-page-classify='about'][data-page='about']
    .container
    .lists
    .list-item
    .article-container:hover
    .btn-area {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.4s ease 0.2s;
    -o-transition: all 0.4s ease 0.2s;
    transition: all 0.4s ease 0.2s;
  }
  [data-page-classify='about'][data-page='about']
    .container
    .lists
    .list-item
    .pic-container:hover
    ~ .article-container
    .dec-container,
  [data-page-classify='about'][data-page='about']
    .container
    .lists
    .list-item
    .article-container:hover
    .dec-container {
    -webkit-animation: bounce-top 1.5s both;
    animation: bounce-top 1.5s both;
  }
}
[data-page-classify='about'][data-page='about'] .container .lists .list-item .pic-container .pic {
  position: relative;
}
[data-page-classify='about'][data-page='about']
  .container
  .lists
  .list-item
  .pic-container
  .pic
  .img-mask {
  width: 100%;
  height: 100%;
}
[data-page-classify='about'][data-page='about']
  .container
  .lists
  .list-item
  .pic-container
  .dec-container {
  width: 600px;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 10px;
  left: -20px;
}
[data-page-classify='about'][data-page='about']
  .container
  .lists
  .list-item
  .pic-container
  .dec-container
  .dec {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border-color: rgba(97, 156, 162, 0.6);
  border-style: dashed;
  border-width: 2px;
  -webkit-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
[data-page-classify='about'][data-page='about'] .container .lists .list-item .article-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 400px;
  max-width: 100%;
  padding: 20px 50px;
}
[data-page-classify='about'][data-page='about']
  .container
  .lists
  .list-item
  .article-container
  .dec-container {
  min-height: 80px;
}
[data-page-classify='about'][data-page='about']
  .container
  .lists
  .list-item
  .article-container
  .dec-container[data-order='0'] {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}
[data-page-classify='about'][data-page='about']
  .container
  .lists
  .list-item
  .article-container
  .dec-container[data-order='1'] {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media (max-width: 575px) {
  [data-page-classify='about'][data-page='about']
    .container
    .lists
    .list-item
    .article-container
    .dec-container[data-order='1'] {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
}
[data-page-classify='about'][data-page='about']
  .container
  .lists
  .list-item
  .article-container
  .dec-container[data-order='none'] {
  display: none;
}
[data-page-classify='about'][data-page='about']
  .container
  .lists
  .list-item
  .article-container
  .dec-container[data-place='left'] {
  text-align: left !important;
}
[data-page-classify='about'][data-page='about']
  .container
  .lists
  .list-item
  .article-container
  .dec-container[data-place='right'] {
  text-align: right !important;
}
@media (max-width: 767px) {
  [data-page-classify='about'][data-page='about']
    .container
    .lists
    .list-item
    .article-container
    .dec-container[data-place='right'] {
    text-align: left !important;
  }
}
[data-page-classify='about'][data-page='about']
  .container
  .lists
  .list-item
  .article-container
  .article
  h2.heading2 {
  font-size: 2.375rem;
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
[data-page-classify='about'][data-page='about']
  .container
  .lists
  .list-item
  .article-container
  .article
  p {
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 60px;
}
[data-page-classify='about'][data-page='about']
  .container
  .lists
  .list-item
  .article-container
  .btn-area
  .btn {
  opacity: 0;
}

body[data-page='collection'] main .banner.banner-normal {
  margin-left: 0;
  margin-right: 0;
}
body[data-page='collection']
  main
  .banner.banner-normal
  .container
  .banner-container_inner
  .subtitle {
  font-size: 1.125rem;
  line-height: 1.75 !important;
}

[data-area='about_collection'] .article-container {
  padding: 60px 0;
}
@media (max-width: 479px) {
  [data-area='about_collection'] .article-container {
    padding: 30px 0;
  }
}

[data-area='about_collection'] .tab-content {
  margin-top: 0;
}

@media (min-width: 768px) {
  [data-area='about_collection'] .main-nav-tabs-area ul {
    width: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

[data-area='about_collection'] .main-nav-tabs-area ul.nav {
  width: 360px;
  border-radius: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
[data-area='about_collection'] .main-nav-tabs-area ul.nav.has-divider .nav-item:after {
  right: -20px;
}

[data-area='about_collection'] .listBox {
  margin: 240px auto 0;
  max-width: 1700px;
  width: 100%;
  padding: 0 50px 50px;
}
@media (max-width: 1700px) {
  [data-area='about_collection'] .listBox {
    margin: calc(10vw + 70px) auto 0;
  }
}
@media (max-width: 1024px) {
  [data-area='about_collection'] .listBox {
    padding: 0 5vw 5vw;
    margin: calc(10vw + 50px) auto 0;
  }
}
[data-area='about_collection'] .listBox .lists {
  max-width: 1500px;
  width: 100%;
  margin: auto;
  -webkit-transform: translateY(-170px);
  -ms-transform: translateY(-170px);
  transform: translateY(-170px);
}
@media (max-width: 1700px) {
  [data-area='about_collection'] .listBox .lists {
    -webkit-transform: translateY(-10vw);
    -ms-transform: translateY(-10vw);
    transform: translateY(-10vw);
  }
}
[data-area='about_collection'] .listBox .lists .list-item {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
[data-area='about_collection'] .listBox .lists .list-item:not(:last-child) {
  margin-bottom: 175px;
}
@media (max-width: 1459px) {
  [data-area='about_collection'] .listBox .lists .list-item:not(:last-child) {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  [data-area='about_collection'] .listBox .lists .list-item:not(:last-child) {
    margin-bottom: 70px;
  }
}
@media (max-width: 479px) {
  [data-area='about_collection'] .listBox .lists .list-item:not(:last-child) {
    margin-bottom: 15px;
  }
}
[data-area='about_collection'] .listBox .lists .list-item:nth-child(1) {
  margin-top: 0;
}
[data-area='about_collection'] .listBox .lists .list-item[data-place='top'] {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
[data-area='about_collection'] .listBox .lists .list-item[data-place='top'] .pic-container {
  max-width: calc(50% - 20px);
}
@media (max-width: 900px) {
  [data-area='about_collection'] .listBox .lists .list-item[data-place='top'] .pic-container {
    max-width: 100%;
  }
}
[data-area='about_collection']
  .listBox
  .lists
  .list-item[data-place='top']
  .pic-container:nth-child(1) {
  margin-top: 0;
}
[data-area='about_collection']
  .listBox
  .lists
  .list-item[data-place='top']
  .pic-container:nth-child(2) {
  margin-top: 100px;
}
@media (max-width: 479px) {
  [data-area='about_collection']
    .listBox
    .lists
    .list-item[data-place='top']
    .pic-container:nth-child(2) {
    margin-top: 0;
  }
}
[data-area='about_collection']
  .listBox
  .lists
  .list-item[data-place='bottom']
  .pic-container:nth-child(1) {
  margin-top: 0;
}
[data-area='about_collection']
  .listBox
  .lists
  .list-item[data-place='bottom']
  .pic-container:nth-child(2) {
  margin-top: 100px;
}
@media (max-width: 479px) {
  [data-area='about_collection']
    .listBox
    .lists
    .list-item[data-place='bottom']
    .pic-container:nth-child(2) {
    margin-top: 0;
  }
}
[data-area='about_collection'] .listBox .lists .list-item[data-amount='1'] {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
[data-area='about_collection'] .listBox .lists .list-item .pic-container {
  position: relative;
  display: block;
}
@media (max-width: 1459px) {
  [data-area='about_collection'] .listBox .lists .list-item .pic-container:nth-child(even) {
    margin-left: auto;
  }
}
html:not(.mobile-mode)
  [data-area='about_collection']
  .listBox
  .lists
  .list-item
  .pic-container:hover
  .article-container
  .btn-area {
  -webkit-animation: slide-in-bottom 0.7s ease both;
  animation: slide-in-bottom 0.7s ease both;
}
[data-area='about_collection'] .listBox .lists .list-item .pic-container .pic {
  height: 100%;
  width: 100%;
  position: relative;
}
[data-area='about_collection'] .listBox .lists .list-item .pic-container .pic img {
  max-width: 100%;
  max-height: 100%;
}
[data-area='about_collection'] .listBox .lists .list-item .article-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 100px 20px 50px 100px;
}
@media (max-width: 1600px) {
  [data-area='about_collection'] .listBox .lists .list-item .article-container {
    padding: 6.25vw 20px 50px 6.25vw;
  }
}
@media (max-width: 767px) {
  [data-area='about_collection'] .listBox .lists .list-item .article-container {
    padding: 50px;
  }
}
@media (max-width: 479px) {
  [data-area='about_collection'] .listBox .lists .list-item .article-container {
    position: relative;
    padding: 20px 5px 50px;
  }
}
[data-area='about_collection'] .listBox .lists .list-item .article-container .article {
  max-width: 320px;
}
[data-area='about_collection'] .listBox .lists .list-item .article-container .article p {
  margin-bottom: 15px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 72px;
}
[data-area='about_collection'] .listBox .lists .list-item .article-container h2 {
  font-size: 1.75rem !important;
  color: #fff;
  letter-spacing: 1px;
  margin: 0 0 15px;
  font-family: mplus-regular, 微軟正黑體;
}
@media (max-width: 479px) {
  [data-area='about_collection'] .listBox .lists .list-item .article-container h2 {
    color: black !important;
  }
}
@media (max-width: 375px) {
  [data-area='about_collection'] .listBox .lists .list-item .article-container h2 {
    margin-bottom: 15px;
  }
}
@media (max-width: 479px) {
  [data-area='about_collection'] .listBox .lists .list-item .article-container p {
    color: rgba(0, 0, 0, 0.7) !important;
    margin-bottom: 20px !important;
  }
}
@media (max-width: 375px) {
  [data-area='about_collection'] .listBox .lists .list-item .article-container p {
    margin-bottom: 10px !important;
  }
}
[data-area='about_collection'] .listBox .lists .list-item .article-container .btn-area {
  opacity: 0;
}
@media (max-width: 1300px) {
  [data-area='about_collection'] .listBox .lists .list-item .article-container .btn-area {
    z-index: 1;
  }
}
html.mobile-mode
  [data-area='about_collection']
  .listBox
  .lists
  .list-item
  .article-container
  .btn-area {
  opacity: 1;
}
@media (max-width: 479px) {
  [data-area='about_collection'] .listBox .lists .list-item .article-container .btn-area span.text {
    color: rgba(0, 0, 0, 0.8) !important;
  }
}

body:not(#home)[data-page='story'] footer {
  margin-top: -90px;
}

@media (max-width: 479px) {
  [data-page='story'] .heading .subtitle,
  [data-page='story'] .banner[data-banner='sub'] .subtitle {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

[data-page='story'] .banner[data-banner='sub'] .container {
  height: 100%;
}
[data-page='story'] .banner[data-banner='sub'] .container .row {
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  [data-page='story'] .banner.banner-normal {
    padding-top: 110px;
    padding-bottom: 50%;
    min-height: 0;
  }
}

[data-page='story'] .banner.banner-normal[data-banner='sub'] {
  height: 1088px;
}
@media (max-width: 1365px) {
  [data-page='story'] .banner.banner-normal[data-banner='sub'] {
    height: 900px;
  }
}
@media (max-width: 575px) {
  [data-page='story'] .banner.banner-normal[data-banner='sub'] {
    height: 700px;
    margin-top: 0;
    padding-top: 120px;
  }
}
@media (max-width: 479px) {
  [data-page='story'] .banner.banner-normal[data-banner='sub'] {
    height: 600px;
    padding-top: 60px;
  }
}
[data-page='story'] .banner.banner-normal[data-banner='sub'] .container .banner-container {
  width: 800px;
  max-width: 100%;
}
[data-page='story']
  .banner.banner-normal[data-banner='sub']
  .container
  .banner-container_inner
  .subtitle {
  line-height: 1.75 !important;
  color: rgba(0, 0, 0, 0.4) !important;
}
[data-page='story']
  .banner.banner-normal[data-banner='sub']
  .container
  .banner-container_inner
  .title {
  margin-top: 0;
  color: black !important;
}

[data-page='story'] .heading {
  padding-left: 100px;
}

[data-page='story'] .heading_inner .subtitle {
  font-size: 1.25rem;
  font-family: 'mplus-bold', '微軟正黑體';
  color: rgba(0, 0, 0, 0.4);
  line-height: 1.5;
}

[data-page='story'] .heading_inner .title {
  font-size: 2.8125rem;
  font-family: 'mplus-light', '微軟正黑體';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.5;
}
@media (max-width: 479px) {
  [data-page='story'] .heading_inner .title {
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 10px;
  }
}
[data-page='story'] .heading_inner .title span {
  padding-left: 30px;
}
[data-page='story'] .heading_inner .title span hr {
  display: block;
  width: 61px;
  height: 2px;
  background-color: #57b7c2;
  border: none;
}

[data-page='story'] .process {
  position: relative;
  z-index: 2;
}
[data-page='story'] .process .tab-pane {
  overflow: visible;
}
[data-page='story'] .process .container {
  max-width: 1655px;
  margin: auto;
  width: 100%;
  padding: 0 50px;
}
@media (max-width: 1024px) {
  [data-page='story'] .process .container {
    padding: 0 5vw;
  }
}
[data-page='story'] .process .container ._title {
  max-width: 1050px;
  padding: 0 50px;
  margin: auto;
}
@media (max-width: 1024px) {
  [data-page='story'] .process .container ._title {
    padding: 0 5vw;
  }
}
@media (max-width: 700px) {
  [data-page='story'] .process .container ._title {
    padding: 0 5px;
  }
}
[data-page='story'] .process .container ._title h3 {
  font-size: 1.25rem;
  font-family: 'mplus-bold', '微軟正黑體';
  color: rgba(0, 0, 0, 0.4);
  line-height: 1.5;
}
[data-page='story'] .process .container ._title h2 {
  font-size: 2.8125rem;
  font-family: 'mplus-light', '微軟正黑體';
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1024px) {
  [data-page='story'] .process .container ._title h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 700px) {
  [data-page='story'] .process .container ._title h2 {
    font-size: 2.25rem;
  }
}
@media (max-width: 450px) {
  [data-page='story'] .process .container ._title h2 {
    font-size: 2rem;
  }
}
[data-page='story'] .process .container ._title h2:after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  margin-left: 20px;
  background-color: #57b7c2;
}
[data-page='story'] .process .container .lists .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[data-page='story'] .introduction {
  position: relative;
  margin-top: -90px;
}
@media (max-width: 900px) {
  [data-page='story'] .introduction {
    margin-top: 0;
  }
}
@media (min-width: 1921px) {
  [data-page='story'] .introduction ._img {
    position: relative;
    padding-bottom: 56.25%;
  }
}
@media (max-width: 1920px) {
  [data-page='story'] .introduction ._img {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
    width: 100%;
    z-index: -1;
  }
}
@media (max-width: 900px) {
  [data-page='story'] .introduction ._img {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    height: auto;
    padding: 61.11% 0 0;
  }
}
[data-page='story'] .introduction ._img .b-lazy {
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1921px) {
  [data-page='story'] .introduction ._img .b-lazy {
    position: absolute;
  }
}
@media (max-width: 900px) {
  [data-page='story'] .introduction ._img .b-lazy {
    position: absolute;
    top: 0;
    left: 0;
  }
}
[data-page='story'] .introduction ._text {
  max-width: 900px;
  margin: auto;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}
@media (min-width: 1921px) {
  [data-page='story'] .introduction ._text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 0 50px;
  }
}
@media (max-width: 1920px) {
  [data-page='story'] .introduction ._text {
    padding: 230px 50px;
  }
}
@media (max-width: 1024px) {
  [data-page='story'] .introduction ._text {
    padding: 230px 5vw;
  }
}
@media (max-width: 900px) {
  [data-page='story'] .introduction ._text {
    padding: 70px 5vw 200px;
  }
}
@media (max-width: 767px) {
  [data-page='story'] .introduction ._text {
    padding: 30px 5vw 70px;
  }
}
[data-page='story'] .introduction ._text h3 {
  font-size: 1.25rem;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  line-height: 1.5;
  font-family: 'mplus-bold', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
@media (max-width: 900px) {
  [data-page='story'] .introduction ._text h3 {
    display: none;
  }
}
[data-page='story'] .introduction ._text h2 {
  text-align: center;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 1.5;
  font-size: 2.8125rem;
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
@media (max-width: 900px) {
  [data-page='story'] .introduction ._text h2 {
    display: none;
  }
}
[data-page='story'] .introduction ._text h2:after {
  width: 60px;
  height: 2px;
  content: '';
  display: block;
  margin: 10px 0 30px;
  background-color: #57b7c2;
}

[data-page='story'] .introduction .mobileTitle,
[data-area='about_story'] .mobileTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 0 0;
}
@media (min-width: 901px) {
  [data-page='story'] .introduction .mobileTitle,
  [data-area='about_story'] .mobileTitle {
    display: none;
  }
}
[data-page='story'] .introduction .mobileTitle h3,
[data-area='about_story'] .mobileTitle h3 {
  font-size: 1.25rem;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  line-height: 1.5;
  font-family: 'mplus-bold', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
@media (max-width: 900px) {
  [data-page='story'] .introduction .mobileTitle h3,
  [data-area='about_story'] .mobileTitle h3 {
    font-size: 1.125rem;
  }
}
@media (max-width: 575px) {
  [data-page='story'] .introduction .mobileTitle h3,
  [data-area='about_story'] .mobileTitle h3 {
    font-size: 1rem;
  }
}
[data-page='story'] .introduction .mobileTitle h2,
[data-area='about_story'] .mobileTitle h2 {
  text-align: center;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 1.5;
  font-size: 2.8125rem;
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
@media (max-width: 900px) {
  [data-page='story'] .introduction .mobileTitle h2,
  [data-area='about_story'] .mobileTitle h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 575px) {
  [data-page='story'] .introduction .mobileTitle h2,
  [data-area='about_story'] .mobileTitle h2 {
    font-size: 2.25rem;
  }
}
[data-page='story'] .introduction .mobileTitle h2:after,
[data-area='about_story'] .mobileTitle h2:after {
  width: 60px;
  height: 2px;
  content: '';
  display: block;
  margin: 10px 0 30px;
  background-color: #57b7c2;
}

[data-area='about_story'] .tab-content {
  margin-top: 0;
}

[data-area='about_story'] .main-nav-tabs-area {
  margin: 60px 0;
}
@media (max-width: 479px) {
  [data-area='about_story'] .main-nav-tabs-area {
    margin: 30px 0;
  }
}
@media (min-width: 768px) {
  [data-area='about_story'] .main-nav-tabs-area ul {
    width: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
[data-area='about_story'] .main-nav-tabs-area ul.nav {
  width: 360px;
  border-radius: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
[data-area='about_story'] .main-nav-tabs-area ul.nav.has-divider .nav-item:after {
  right: -20px;
}

[data-area='about_story'] .container {
  position: relative;
}
[data-area='about_story'] .container.wave {
  padding-top: 140px;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1024px) {
  [data-area='about_story'] .container.wave {
    padding-top: 50px;
  }
}
@media (max-width: 700px) {
  [data-area='about_story'] .container.wave {
    padding-top: 30px;
  }
}
[data-area='about_story'] .container .heading {
  padding-bottom: 62px;
}
@media (max-width: 991px) {
  [data-area='about_story'] .container .heading {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  [data-area='about_story'] .container .heading {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  [data-area='about_story'] .container .heading {
    padding-left: 0;
    padding-bottom: 10px;
  }
}
@media (max-width: 575px) {
  [data-area='about_story'] .container .heading_inner .title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
}
@media (max-width: 479px) {
  [data-area='about_story'] .container .heading_inner .title {
    font-size: 2rem;
    line-height: 1.25;
  }
}
[data-area='about_story'] .container .lists {
  max-width: 1200px;
  margin: auto;
  padding: 75px 0 180px;
}
@media (max-width: 1024px) {
  [data-area='about_story'] .container .lists {
    padding: 30px 0 180px;
  }
}
@media (max-width: 900px) {
  [data-area='about_story'] .container .lists {
    padding: 75px 0 120px;
  }
}
@media (max-width: 700px) {
  [data-area='about_story'] .container .lists {
    padding: 30px 0 50px;
  }
}
[data-area='about_story'] .container .lists .list-item {
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 900px) {
  [data-area='about_story'] .container .lists .list-item {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
}
[data-area='about_story'] .container .lists .list-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
[data-area='about_story'] .container .lists .list-item:not(:last-child) {
  margin-bottom: 80px;
}
[data-area='about_story'] .container .lists .list-item .pic-container {
  width: 45%;
  margin: 0 auto;
}
@media (max-width: 900px) {
  [data-area='about_story'] .container .lists .list-item .pic-container {
    margin-bottom: 30px;
    width: 100%;
  }
}
@media (max-width: 700px) {
  [data-area='about_story'] .container .lists .list-item .pic-container {
    margin-bottom: 20px;
  }
}
[data-area='about_story'] .container .lists .list-item .pic-container .pic {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
[data-area='about_story'] .container .lists .list-item .article-container {
  width: 55%;
}
@media (max-width: 900px) {
  [data-area='about_story'] .container .lists .list-item .article-container {
    width: 100%;
  }
}
[data-area='about_story'] .container .lists .list-item .article-container .article {
  padding: 0 50px;
}
@media (max-width: 1024px) {
  [data-area='about_story'] .container .lists .list-item .article-container .article {
    padding: 0 5vw;
  }
}
@media (max-width: 500px) {
  [data-area='about_story'] .container .lists .list-item .article-container .article {
    padding: 0 5px;
  }
}
[data-area='about_story'] .container .lists .list-item .article-container .article h2.heading2 {
  max-width: 450px;
  font-family: 'mplus-regular', '微軟正黑體';
  font-size: 1.375rem;
  line-height: 1.5;
}
@media (max-width: 900px) {
  [data-area='about_story'] .container .lists .list-item .article-container .article h2.heading2 {
    max-width: none;
  }
}
@media (max-width: 575px) {
  [data-area='about_story'] .container .lists .list-item .article-container .article h2.heading2 {
    font-size: 1.25rem;
  }
}
[data-area='about_story'] .container .lists .list-item .article-container .article p {
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
  font-family: 'mplus-regular', '微軟正黑體';
}
[data-area='about_story']
  .container
  .lists
  .list-item
  .article-container
  .article
  p:not(:first-child) {
  margin: 20px 0 0;
}
@media (max-width: 575px) {
  [data-area='about_story']
    .container
    .lists
    .list-item
    .article-container
    .article
    p:not(:first-child) {
    margin: 15px 0 0;
  }
}

[data-area='about_story'] .section-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 900px) {
  [data-area='about_story'] .section-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

[data-area='about_story'] .section_article {
  width: 50%;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
  padding: 140px 100px 230px 100px;
}
@media (max-width: 1500px) {
  [data-area='about_story'] .section_article {
    padding: 9vw 5vw 15vw 5vw;
  }
}
@media (max-width: 900px) {
  [data-area='about_story'] .section_article {
    width: 100%;
    padding: 0;
  }
}
[data-area='about_story'] .section_article__inner {
  position: relative;
  width: 100%;
  max-width: 565px;
  padding: 0 40px;
}
@media (max-width: 1500px) {
  [data-area='about_story'] .section_article__inner {
    padding: 0 2.5vw;
  }
}
@media (max-width: 900px) {
  [data-area='about_story'] .section_article__inner {
    max-width: none;
    padding: 50px 5vw 150px;
  }
}
@media (max-width: 700px) {
  [data-area='about_story'] .section_article__inner {
    padding: 30px 5vw 100px;
  }
}
[data-area='about_story'] .section_article__inner .heading {
  padding: 120px 0;
  -webkit-transform: translateX(100px);
  -ms-transform: translateX(100px);
  transform: translateX(100px);
  -webkit-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
@media (max-width: 1500px) {
  [data-area='about_story'] .section_article__inner .heading {
    padding: 9vw 0;
    -webkit-transform: translateX(4vw);
    -ms-transform: translateX(4vw);
    transform: translateX(4vw);
  }
}
@media (max-width: 900px) {
  [data-area='about_story'] .section_article__inner .heading {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    padding: 30px 0 50px;
  }
}
@media (max-width: 700px) {
  [data-area='about_story'] .section_article__inner .heading {
    padding: 0 0 50px;
  }
}
[data-area='about_story'] .section_article__inner .heading_inner {
  margin-bottom: 5vw;
  -webkit-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
@media (min-width: 1921px) {
  [data-area='about_story'] .section_article__inner .heading_inner {
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  [data-area='about_story'] .section_article__inner .heading_inner {
    margin: 0;
  }
}
@media (max-width: 900px) {
  [data-area='about_story'] .section_article__inner .heading_inner {
    display: none;
  }
}
[data-area='about_story'] .section_article__inner .heading p {
  font-family: 'mplus-regular', '微軟正黑體';
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 25px;
  max-width: 100%;
}
[data-area='about_story'] .section_article .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

[data-area='about_story'] .section_pic {
  width: 50%;
  margin: -50px auto 0;
  position: relative;
}
@media (max-width: 900px) {
  [data-area='about_story'] .section_pic {
    width: 100%;
    margin: 0 auto;
  }
}
[data-area='about_story'] .section_pic .pic {
  height: 100%;
}
@media (max-width: 767px) {
  [data-area='about_story'] .section_pic .pic {
    width: 500px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
[data-area='about_story'] .section_pic .pic img {
  max-width: none;
  max-height: 100%;
}
@media (max-width: 900px) {
  [data-area='about_story'] .section_pic .pic img {
    max-width: 100%;
    max-height: none;
  }
}

[data-page='statistics'] .slick-dotted.slick-slider {
  margin-bottom: 0;
}

[data-page='statistics'] .detail-slider {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
[data-page='statistics'] .detail-slider .slick-list,
[data-page='statistics'] .detail-slider .slick-track {
  height: 100%;
}
[data-page='statistics'] .detail-slider .img {
  width: 100%;
  height: 100%;
}
[data-page='statistics'] .detail-slider .slick-arrow {
  width: 30px;
  height: 30px;
  display: block;
  margin: auto;
  background: #cccccc;
  border-radius: 50%;
}
@media (max-width: 767px) {
  [data-page='statistics'] .detail-slider .slick-arrow {
    display: none !important;
  }
}
[data-page='statistics'] .detail-slider .slick-arrow:before {
  font-family: 'icomoon';
  color: #000;
  font-size: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
[data-page='statistics'] .detail-slider .slick-arrow.slick-prev {
  left: 60px;
}
@media (max-width: 767px) {
  [data-page='statistics'] .detail-slider .slick-arrow.slick-prev {
    left: 30px;
  }
}
@media (max-width: 575px) {
  [data-page='statistics'] .detail-slider .slick-arrow.slick-prev {
    left: 20px;
  }
}
@media (max-width: 479px) {
  [data-page='statistics'] .detail-slider .slick-arrow.slick-prev {
    left: 15px;
  }
}
[data-page='statistics'] .detail-slider .slick-arrow.slick-prev:before {
  content: '\e901';
}
[data-page='statistics'] .detail-slider .slick-arrow.slick-next {
  right: 60px;
}
@media (max-width: 767px) {
  [data-page='statistics'] .detail-slider .slick-arrow.slick-next {
    right: 30px;
  }
}
@media (max-width: 575px) {
  [data-page='statistics'] .detail-slider .slick-arrow.slick-next {
    right: 20px;
  }
}
@media (max-width: 479px) {
  [data-page='statistics'] .detail-slider .slick-arrow.slick-next {
    right: 15px;
  }
}
[data-page='statistics'] .detail-slider .slick-arrow.slick-next:before {
  content: '\e900';
}
[data-page='statistics'] .detail-slider .slick-dots {
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 20;
}
[data-page='statistics'] .detail-slider .slick-dots li button:before {
  display: none;
}
[data-page='statistics'] .detail-slider .slick-dots li {
  margin: 0;
  width: 100%;
  height: 5px;
}
[data-page='statistics'] .detail-slider .slick-dots li button {
  padding: 0;
  width: 0%;
  height: 100%;
  background-color: #eaca59;
  -webkit-transition: width 0.6s ease-in-out;
  -o-transition: width 0.6s ease-in-out;
  transition: width 0.6s ease-in-out;
}
[data-page='statistics'] .detail-slider .slick-dots li.past button {
  width: 100%;
  -webkit-transition: width 0.6s ease-in-out;
  -o-transition: width 0.6s ease-in-out;
  transition: width 0.6s ease-in-out;
}
[data-page='statistics'] .detail-slider .slick-dots li.slick-active button {
  width: 100%;
  -webkit-transition: width 0.6s ease-in-out;
  -o-transition: width 0.6s ease-in-out;
  transition: width 0.6s ease-in-out;
}

[data-page='statistics'] .detail-slider-nav .slick-list {
  overflow: visible;
}

[data-page='statistics'] .detail-slider-nav .slick-slide .group {
  opacity: 0;
}

[data-page='statistics'] .detail-slider-nav .slick-current .group {
  opacity: 1;
  -webkit-transition: opacity 0.3s 0.3s ease-in-out;
  -o-transition: opacity 0.3s 0.3s ease-in-out;
  transition: opacity 0.3s 0.3s ease-in-out;
  -webkit-animation: fade-in-right 1s cubic-bezier(0.645, 0.045, 0.355, 1) both;
  animation: fade-in-right 1s cubic-bezier(0.645, 0.045, 0.355, 1) both;
}

[data-page='statistics'] main .banner.banner-normal {
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}
[data-page='statistics'] main .banner.banner-normal .banner-container {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 860px;
  max-width: 45vw;
  opacity: 0;
}
@media (max-width: 1199px) {
  [data-page='statistics'] main .banner.banner-normal .banner-container {
    width: 50vw;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  [data-page='statistics'] main .banner.banner-normal .banner-container {
    width: 70vw;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  [data-page='statistics'] main .banner.banner-normal .banner-container {
    width: 90vw;
  }
}
@media (max-width: 767px) {
  [data-page='statistics'] main .banner.banner-normal .banner-container {
    width: 100%;
  }
}
[data-page='statistics'] main .banner.banner-normal .banner-container.slick-slider {
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
}
[data-page='statistics'] main .banner.banner-normal .banner-container_bg {
  width: 100%;
  height: 100vh;
  min-height: 500px;
}
[data-page='statistics'] main .banner.banner-normal .banner-container_bg .img {
  background-size: cover;
}
[data-page='statistics'] main .banner.banner-normal .banner-container_bg .container {
  padding: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 100%;
  width: 100%;
}
[data-page='statistics'] main .banner.banner-normal .banner-container_bg .container .row {
  height: 100%;
  width: 100%;
}
[data-page='statistics'] main .banner.banner-normal .banner-container_inner {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  [data-page='statistics'] main .banner.banner-normal .banner-container_inner {
    margin-bottom: 0 !important;
  }
}
[data-page='statistics'] main .banner.banner-normal .banner-container_inner .title {
  color: #ffffff;
  line-height: 1;
  font-family: 'mplus-thin', '微軟正黑體' !important;
  margin-left: 0;
}
[data-page='statistics'] main .banner.banner-normal .banner-container_inner .group {
  padding: 0;
  width: 660px;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 100%;
  margin-left: auto;
  margin-top: -35px;
  font-size: 22px;
}
@media (max-width: 1199px) {
  [data-page='statistics'] main .banner.banner-normal .banner-container_inner .group {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  [data-page='statistics'] main .banner.banner-normal .banner-container_inner .group {
    width: 65vw;
    margin-left: 5vw;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  [data-page='statistics'] main .banner.banner-normal .banner-container_inner .group {
    width: 85vw;
    margin-left: 5vw;
  }
}
@media (max-width: 575px) {
  [data-page='statistics'] main .banner.banner-normal .banner-container_inner .group {
    width: 100%;
    margin-left: 0;
    font-size: 16px;
  }
}
[data-page='statistics'] main .banner.banner-normal .banner-container_inner .group .text {
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol' !important;
  line-height: 1.3;
  color: white;
  max-width: 560px;
  width: 100%;
  text-align: center;
  margin: 0;
  text-align: left;
  margin-left: 90px;
  padding-bottom: 30px;
  font-size: 1em;
}
@media (max-width: 479px) {
  [data-page='statistics'] main .banner.banner-normal .banner-container_inner .group .text {
    margin-left: 10vw;
    padding-left: 20px;
    padding-right: 0;
  }
}
@media (max-width: 399px) {
  [data-page='statistics'] main .banner.banner-normal .banner-container_inner .group .text {
    margin-left: 0;
    padding-left: 0;
    padding-top: 10px;
  }
}
[data-page='statistics'] main .banner.banner-normal .banner-container_inner .group .title {
  font-size: 6.8181em;
}
@media (min-width: 992px) {
  [data-page='statistics'] main .banner.banner-normal .banner-container_inner .group .title {
    font-size: 7.8vw;
  }
}
@media (max-width: 991px) {
  [data-page='statistics'] main .banner.banner-normal .banner-container_inner .group .title {
    font-size: 12vw;
  }
}
@media (max-width: 767px) {
  [data-page='statistics'] main .banner.banner-normal .banner-container_inner .group .title {
    font-size: 15vw;
  }
}
@media (max-width: 575px) {
  [data-page='statistics'] main .banner.banner-normal .banner-container_inner .group .title {
    font-size: 4.6875rem;
  }
}
@media (max-width: 479px) {
  [data-page='statistics'] main .banner.banner-normal .banner-container_inner .group .title {
    font-size: 4.0625rem;
  }
}
@media (max-width: 375px) {
  [data-page='statistics'] main .banner.banner-normal .banner-container_inner .group .title {
    font-size: 3.75rem;
  }
}
@media (min-width: 768px) and (max-height: 699px) {
  [data-page='statistics'] main .banner.banner-normal .banner-container_inner .group .title {
    font-size: 10vw;
  }
}
@media (min-width: 992px) and (max-height: 699px) {
  [data-page='statistics'] main .banner.banner-normal .banner-container_inner .group .title {
    font-size: 7.8vw;
  }
}
[data-page='statistics'] main .banner.banner-normal .detail-slider-nav {
  bottom: 10vh;
}
@media (max-width: 1199px) {
  [data-page='statistics'] main .banner.banner-normal .detail-slider-nav {
    bottom: 5vh;
  }
}
@media (max-width: 767px) {
  [data-page='statistics'] main .banner.banner-normal .detail-slider-nav {
    bottom: 0;
  }
}
[data-page='statistics'] main .banner.banner-normal .article-container .article-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
[data-page='statistics']
  main
  .banner.banner-normal
  .article-container
  .article-title
  .heading2
  span {
  color: rgba(255, 255, 255, 0.8);
}
[data-page='statistics'] main .banner.banner-normal .article-container .article-title hr {
  display: block;
  width: 64px;
  height: 2px;
  background-color: rgba(234, 202, 89, 0.7);
  border: none;
  margin-left: 20px;
}
@media (min-width: 768px) and (max-height: 699px) {
  [data-page='statistics'] main .banner.banner-normal .banner-container_inner .group {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) and (max-height: 699px) {
  [data-page='statistics'] main .banner.banner-normal .banner-container {
    bottom: 0;
    width: 100vw;
    max-width: 100%;
  }
}

[data-page='coming'] .nav-header-links .back-btn {
  display: none !important;
}

[data-page='coming'] .nav-header-links > .group {
  display: none !important;
}

[data-page='coming'] main .content {
  position: relative;
  min-height: 100vh;
}
[data-page='coming'] main .content .bg {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  [data-page='coming'] main .content .bg {
    background-size: contain !important;
  }
}
[data-page='coming'] main .content .article-container {
  position: absolute;
  top: 50%;
  left: 40%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 690px;
  height: 665px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-height: calc(100vh - 140px);
  max-width: 100vh;
}
@media (max-width: 991px) {
  [data-page='coming'] main .content .article-container {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
    -ms-transform: translate(-50%, -50%) scale(0.7);
    transform: translate(-50%, -50%) scale(0.7);
  }
}
@media (max-width: 767px) {
  [data-page='coming'] main .content .article-container {
    left: 50%;
    width: 520px;
    height: 501px;
  }
}
@media (max-width: 375px) {
  [data-page='coming'] main .content .article-container {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
[data-page='coming'] main .content .article-container .line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 55% 45% 50% 50% / 65% 46% 54% 35%;
  border: dashed 2px #fff;
  background-color: #d7b85b;
}
@media (max-width: 575px) {
  [data-page='coming'] main .content .article-container .line {
    border: 0;
    background-color: transparent;
  }
}
[data-page='coming'] main .content .article-container .article {
  -webkit-transform: translate(30%, 25%);
  -ms-transform: translate(30%, 25%);
  transform: translate(30%, 25%);
  color: #fff;
}
@media (max-width: 767px) {
  [data-page='coming'] main .content .article-container .article {
    -webkit-transform: translate(20%, 25%);
    -ms-transform: translate(20%, 25%);
    transform: translate(20%, 25%);
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 575px) {
  [data-page='coming'] main .content .article-container .article {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
[data-page='coming'] main .content .article-container .article .heading4 {
  font-size: 1.375rem;
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  letter-spacing: 0.5px;
  opacity: 0.6;
  margin-bottom: 0;
}
@media (max-width: 375px) {
  [data-page='coming'] main .content .article-container .article .heading4 {
    font-size: 1.25rem;
  }
}
.ios-mode [data-page='coming'] main .content .article-container .article .heading4 {
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
[data-page='coming'] main .content .article-container .article .heading3 {
  font-size: 5.3125rem;
  font-family: 'mplus-thin', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
@media (max-width: 1440px) {
  [data-page='coming'] main .content .article-container .article .heading3 {
    font-size: 5rem;
  }
}
@media (max-width: 1279px) {
  [data-page='coming'] main .content .article-container .article .heading3 {
    font-size: 4.5rem;
  }
}
@media (max-width: 767px) {
  [data-page='coming'] main .content .article-container .article .heading3 {
    font-size: 4.0625rem;
  }
}
@media (max-width: 479px) {
  [data-page='coming'] main .content .article-container .article .heading3 {
    font-size: 2.8125rem;
  }
}
@media (max-width: 375px) {
  [data-page='coming'] main .content .article-container .article .heading3 {
    font-size: 2.5rem;
  }
}
.ios-mode [data-page='coming'] main .content .article-container .article .heading3 {
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
[data-page='coming'] main .content .article-container .btn-area {
  margin-top: 60px;
}
@media (max-width: 767px) {
  [data-page='coming'] main .content .article-container .btn-area {
    margin-top: 40px;
  }
}
[data-page='coming'] main .content .article-container .btn-area .btn {
  padding-left: 0;
  padding-right: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
[data-page='coming'] main .content .article-container .btn-area .btn .icon:after {
  -webkit-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
[data-page='coming'] main .content .article-container .btn-area .txt {
  font-size: 1.0625rem;
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}

@-webkit-keyframes round {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px) rotate(0deg);
    transform: translateX(50px) rotate(0deg);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(360deg);
    transform: translateX(0) rotate(360deg);
  }
}

@keyframes round {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px) rotate(0deg);
    transform: translateX(50px) rotate(0deg);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(360deg);
    transform: translateX(0) rotate(360deg);
  }
}

[data-page='faq'] .navbar .nav-header .nav-header-links .back-btn {
  display: none;
}

[data-page='faq'] .accordion {
  border-top: solid 4px #5e5e5e;
  border-bottom: solid 4px #5e5e5e;
  counter-reset: num;
}
[data-page='faq'] .accordion .ui-accordion-group.active {
  border-bottom-color: #609ca2;
}
[data-page='faq'] .accordion .ui-accordion-group.active .edit {
  border-top: 1px solid #c9c9c9;
  margin-top: 20px;
  margin-bottom: -10px;
  padding-top: 20px;
}
@media (max-width: 1279px) {
  [data-page='faq'] .accordion .ui-accordion-group.active .edit {
    margin-bottom: 0;
  }
}
[data-page='faq'] .accordion .ui-accordion-group.active .icon-down-arrow {
  background: #609ca2;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
[data-page='faq'] .accordion .ui-accordion-group.active .icon-down-arrow:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
[data-page='faq'] .accordion .accordion-header {
  position: relative;
  cursor: pointer;
}
[data-page='faq'] .accordion .accordion-header:hover .icon-down-arrow {
  background: #609ca2;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 575px) {
  [data-page='faq'] .accordion .accordion-header:hover .icon-down-arrow {
    background: #609ca2;
  }
}
[data-page='faq'] .accordion .accordion-header .title {
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 26px;
  color: rgba(0, 0, 0, 0.85);
  padding-right: 35px;
}
@media (max-width: 1279px) {
  [data-page='faq'] .accordion .accordion-header .title {
    font-size: 1.5rem;
  }
}
@media (max-width: 575px) {
  [data-page='faq'] .accordion .accordion-header .title {
    font-size: 18px;
  }
}
[data-page='faq'] .accordion .accordion-header .title::before {
  counter-increment: num;
  content: '0' counter(num) '. ';
  font-family: 'mplus-heavy', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 22px;
  color: rgba(0, 0, 0, 0.35);
}
@media (max-width: 575px) {
  [data-page='faq'] .accordion .accordion-header .title::before {
    font-size: 16px;
  }
}
[data-page='faq'] .accordion .accordion-header .icon-down-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 30px;
  height: 30px;
  color: #fff;
  background: #ababab;
  border-radius: 50%;
  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;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
[data-page='faq'] .accordion .accordion-header .icon-down-arrow:before {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
[data-page='faq'] .accordion .accrodion-body .edit {
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  display: none;
}

[data-page='faq'] [data-area='products'] .title-container {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1279px) {
  [data-page='faq'] [data-area='products'] .title-container {
    position: relative !important;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
[data-page='faq'] [data-area='products'] .title-container .article-area {
  -webkit-transform: translateX(18%);
  -ms-transform: translateX(18%);
  transform: translateX(18%);
  max-width: 450px;
}
[data-page='faq'] [data-area='products'] .title-container .article-area .info {
  margin-top: 45px;
}
@media (max-width: 1024px) {
  [data-page='faq'] [data-area='products'] .title-container .article-area .info {
    margin-top: 20px;
  }
}
@media (max-width: 1279px) {
  [data-page='faq'] [data-area='products'] .title-container .article-area {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin-left: 0;
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 575px) {
  [data-page='faq'] [data-area='products'] .title-container .article-area {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 1024px) {
  [data-page='faq'] main .content {
    padding-top: 0;
  }
}

[data-page='faq'] main .content .title-container,
[data-page='faq'] main .content .title-container-bg {
  width: 36%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 36%;
  flex: 0 0 36%;
  max-width: 36%;
}

[data-page='faq'] main .content .products-container {
  width: 64%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 64%;
  flex: 0 0 64%;
  max-width: 64%;
  min-height: 100vh;
}
[data-page='faq'] main .content .products-container > .bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
[data-page='faq'] main .content .products-container > .decorate-line {
  position: absolute;
  top: 0;
  left: 15%;
  max-width: 35vw;
}
@media (max-width: 1279px) {
  [data-page='faq'] main .content .products-container > .decorate-line {
    display: none;
  }
}

@media (max-width: 1199px) {
  [data-page='faq'] main .content .title-container,
  [data-page='faq'] main .content .title-container-bg {
    width: 45%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 45%;
  }
  [data-page='faq'] main .content .products-container {
    width: 55%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 55%;
    flex: 0 0 55%;
    max-width: 55%;
  }
}

@media (max-width: 1279px) {
  [data-page='faq'] main .content .title-container,
  [data-page='faq'] main .content .title-container-bg,
  [data-page='faq'] main .content .products-container {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  [data-page='faq'] main .content .products-container {
    min-height: 0;
  }
}

[data-page='faq'] main .content .products-container,
[data-page='faq'] main .content .title-container {
  padding-top: 290px;
  padding-bottom: 215px;
}

@media (max-height: 699px) {
  [data-page='faq'] main .content .products-container,
  [data-page='faq'] main .content .title-container {
    padding-top: 180px;
  }
}

@media (max-width: 1365px) {
  [data-page='faq'] main .content .products-container,
  [data-page='faq'] main .content .title-container {
    padding-top: 180px;
    padding-bottom: 175px;
  }
}

@media (max-width: 1199px) {
  [data-page='faq'] main .content .products-container,
  [data-page='faq'] main .content .title-container {
    padding-bottom: 150px;
  }
}

@media (max-width: 1279px) {
  [data-page='faq'] main .content .title-container {
    padding-top: 150px;
    padding-bottom: 80px;
  }
  [data-page='faq'] main .content .products-container {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  [data-page='faq'] main .content .title-container {
    margin: auto;
  }
  [data-page='faq'] main .content .title-container .article-area {
    width: 100%;
  }
  [data-page='faq'] main .content .products-container {
    padding-bottom: 50px;
  }
}

@media (max-width: 575px) {
  [data-page='faq'] main .content .products-container {
    padding-bottom: 50px;
  }
}

@media (max-height: 499px) {
  [data-page='faq'] main .content .title-container {
    position: relative !important;
    min-height: 600px;
  }
}

@media (max-width: 767px) {
  [data-page='faq'] main .content .title-container {
    padding-top: 140px;
  }
}

@media (max-width: 575px) {
  [data-page='faq'] main .content .title-container {
    padding-top: 120px;
    padding-bottom: 50px;
  }
}

[data-page='faq'] main .content.fixed_Wrapper {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

[data-page='faq'] main .content .title-container-bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  min-height: 100vh;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

[data-page='faq'] main .content .title-container {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 992px) {
  [data-page='faq'] main .content .title-container {
    background-image: none !important;
  }
}
@media (max-width: 1279px) {
  [data-page='faq'] main .content .title-container {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
[data-page='faq'] main .content .title-container.position-absolute {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

[data-page='faq'] main .content .content-container {
  padding-right: 80px;
}
[data-page='faq'] main .content .content-container .accordion-container {
  padding-left: 8.5vw;
  padding-right: 8.5vw;
}
@media (max-width: 1365px) {
  [data-page='faq'] main .content .content-container {
    padding-right: 0;
  }
  [data-page='faq'] main .content .content-container .accordion-container {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}
@media (max-width: 1279px) {
  [data-page='faq'] main .content .content-container .accordion-container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 575px) {
  [data-page='faq'] main .content .content-container .accordion-container {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 1279px) {
  [data-page='faq'] main .content.fixed_Wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  [data-page='faq'] main .content .title-container-bg,
  [data-page='faq'] main .content .title-container {
    min-height: 0;
  }
}

[data-page='faq'] main .content .ui-accordion {
  border-top: solid 4px #5e5e5e;
}
[data-page='faq'] main .content .ui-accordion-group {
  border-bottom: solid 4px #c9c9c9;
  position: relative;
  padding: 50px 40px 40px;
}
[data-page='faq'] main .content .ui-accordion-group:last-child {
  border: none;
}
[data-page='faq'] main .content .ui-accordion-group::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 4px;
  width: 0;
  background-color: #609ca2;
  -webkit-transition: width 0.6s ease-in-out;
  -o-transition: width 0.6s ease-in-out;
  transition: width 0.6s ease-in-out;
  z-index: 5;
}
[data-page='faq'] main .content .ui-accordion-group-active::after {
  width: 100%;
}
@media (max-width: 1365px) {
  [data-page='faq'] main .content .ui-accordion-group {
    padding: 20px 30px;
  }
}
@media (max-width: 1199px) {
  [data-page='faq'] main .content .ui-accordion-group {
    padding: 20px 20px;
  }
}
@media (max-width: 575px) {
  [data-page='faq'] main .content .ui-accordion-group {
    padding: 20px 0;
  }
}
[data-page='faq'] main .content .ui-accordion-header,
[data-page='faq'] main .content .ui-accordion-content {
  padding: 1em 0;
}
[data-page='faq'] main .content .ui-accordion-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
[data-page='faq'] main .content .ui-accordion-header-active .ui-accordion-header-icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  background: #84c392;
}
[data-page='faq'] main .content .ui-accordion-header-icon {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  height: 30px;
  width: 30px;
  margin-right: 30px;
  margin-left: 30px;
  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-radius: 50%;
  background: #c9c9c9;
  color: #fff;
  -webkit-transition: background 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: background 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  -o-transition: transform 0.6s ease-in-out, background 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, background 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, background 0.6s ease-in-out,
    -webkit-transform 0.6s ease-in-out;
}
[data-page='faq'] main .content .ui-accordion-header .title {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
  line-height: 30px;
  margin-bottom: 0;
}
[data-page='faq'] main .content .ui-accordion-header .title::before {
  content: attr(data-num) '.';
  padding-right: 5px;
}
@media (max-width: 1365px) {
  [data-page='faq'] main .content .ui-accordion-header-icon {
    margin-right: 0;
  }
}
[data-page='faq'] main .content .ui-accordion-content {
  border-top: solid 1px rgba(0, 0, 0, 0.15);
}

[data-page='recruit'] .navbar .nav-header .nav-header-links .back-btn {
  display: none;
}

[data-page='recruit'] main {
  position: relative;
}
[data-page='recruit'] main .img-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1366px) {
  [data-page='recruit'] main .img-cover {
    opacity: 0.3;
  }
}
@media (max-width: 497px) {
  [data-page='recruit'] main .img-cover {
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
  }
}
[data-page='recruit'] main .img-cover img {
  position: absolute;
}
[data-page='recruit'] main .img-cover .p01 {
  top: 20%;
  left: 5%;
}
[data-page='recruit'] main .img-cover .p02 {
  top: 35%;
  right: 12.5%;
}
[data-page='recruit'] main .img-cover .p03 {
  top: 43.5%;
  right: 27.5%;
}
[data-page='recruit'] main .img-cover .p04 {
  top: 64%;
  left: 13%;
}
[data-page='recruit'] main .img-cover .p05 {
  right: 0;
  bottom: 0;
}
[data-page='recruit'] main .img-cover .p06 {
  top: 80%;
  left: 18.5%;
}

[data-page='recruit'] .article-area {
  padding: 80px 0;
}
@media (max-width: 767px) {
  [data-page='recruit'] .article-area {
    padding: 50px 0;
  }
}
[data-page='recruit'] .article-area .article-title {
  margin: auto;
  width: 100%;
  max-width: 1280px;
  padding: 0 50px;
  text-align: center;
}
@media (min-width: 1921px) {
  [data-page='recruit'] .article-area .article-title {
    font-size: 4rem;
  }
}
@media (max-width: 479px) {
  [data-page='recruit'] .article-area .article-title {
    font-size: 45px;
    padding: 0 5vw;
  }
}
[data-page='recruit'] .article-area .heading2 {
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.3);
  font-family: 'mplus-bold', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
@media (min-width: 768px) and (max-width: 1439px) {
  [data-page='recruit'] .article-area .heading2 {
    font-size: 1rem;
  }
}
@media (max-width: 1366px) {
  [data-page='recruit'] .article-area .heading2 {
    padding: 0 7vw;
  }
}
@media (max-width: 1024px) {
  [data-page='recruit'] .article-area .heading2 {
    padding: 0 5vw;
  }
}
@media (max-width: 479px) {
  [data-page='recruit'] .article-area .heading2 {
    font-size: 1.125rem;
  }
}
[data-page='recruit'] .article-area .heading3 {
  color: rgba(0, 0, 0, 0.8);
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
@media (min-width: 1440px) and (max-width: 1920px) {
  [data-page='recruit'] .article-area .heading3 {
    font-size: 60px;
  }
}
@media (min-width: 992px) and (max-width: 1439px) {
  [data-page='recruit'] .article-area .heading3 {
    font-size: 2.2rem;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='recruit'] .article-area .heading3 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  [data-page='recruit'] .article-area .heading3 {
    font-size: 2.4rem;
  }
}
@media (min-width: 992px) and (max-width: 1439px) {
  [data-page='recruit'] .article-area .info {
    font-size: 0.875rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='recruit'] .article-area .info {
    font-size: 0.85rem;
  }
}

[data-page='recruit'] .forms-container {
  width: 1280px;
  margin: auto;
  padding: 0;
  background-color: rgba(60, 160, 102, 0.4);
}
[data-page='recruit'] .forms-container .form {
  max-width: 100%;
  width: 842px;
}
[data-page='recruit'] .forms-container .form .txt {
  color: #fff;
  font-size: 24px;
  max-width: 750px;
  width: 100%;
  margin: 0 auto 80px;
  padding: 80px 0;
  letter-spacing: normal;
  line-height: 1.3;
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  position: relative;
}
@media (max-width: 767px) {
  [data-page='recruit'] .forms-container .form .txt {
    margin: 0 auto 40px;
    padding: 40px 0;
  }
}
[data-page='recruit'] .forms-container .form .txt:after {
  content: '';
  display: block;
  width: 820px;
  height: 1px;
  border-bottom: 2px solid rgba(0, 53, 103, 0.2);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
[data-page='recruit'] .forms-container .form .form-row {
  max-width: 750px;
  width: 100%;
  margin: auto;
}
[data-page='recruit'] .forms-container .form .form-row .form-title {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0 50px 40px;
  font-size: 30px;
  font-family: 'mplus-regular', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
[data-page='recruit'] .forms-container .form .form-control {
  background: #f0efef;
}
[data-page='recruit'] .forms-container .form .form-group-buttons {
  padding-top: 35px;
  padding-bottom: 125px;
}
@media (max-width: 479px) {
  [data-page='recruit'] .forms-container .form .form-group-buttons {
    padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  figure {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
}

.hide_lightbox {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
}
.hide_lightbox hr.hr {
  background: #000;
  border-radius: 0;
  border: none;
  width: 100%;
  height: 1px;
}
.hide_lightbox.news_detail .detail_libox--lbx_box .detail_container {
  max-width: 1300px;
  width: 90%;
  padding: 50px 0 0;
}
@media (max-width: 1024px) {
  .hide_lightbox.news_detail .detail_libox--lbx_box .detail_container {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .hide_lightbox.news_detail .detail_libox--lbx_box .detail_container {
    padding: 10px 0 0;
  }
}
.hide_lightbox.news_detail .detail_libox--lbx_box .detail_container .lbx_content {
  max-width: 100%;
}
.hide_lightbox.news_detail .detail_libox--lbx_box .detail_container .lbx_content_inner {
  max-width: 1100px;
  width: 100%;
}

.detail_libox {
  opacity: 1;
  width: 100%;
  height: 100vh;
}
.detail_libox[data-detail='right'] .detail_libox--lbx_box .detail_container {
  margin-left: auto;
}
.detail_libox .quick_link.detail_footer_full {
  margin-bottom: 0;
}
.detail_libox .detail_container {
  position: relative;
}
.detail_libox .detail_close {
  font-family: 'mplus-heavy', '微軟正黑體';
}
.detail_libox .detail_close .liboxClose {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.detail_libox .detail_close .liboxClose:hover .icon-left-arrow {
  -webkit-animation: fade-in-right 0.6s ease-in-out both;
  animation: fade-in-right 0.6s ease-in-out both;
}
.detail_libox .detail_close .txt {
  font-size: 1.0625rem;
  letter-spacing: 1px;
  padding-left: 10px;
  margin-top: 3px;
}
.detail_libox .detail_close .icon-left-arrow {
  font-weight: 900;
  color: rgba(0, 0, 0, 0.7);
}
.detail_libox .lbx_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.detail_libox .lbx_content {
  width: 100%;
}
.detail_libox .lbx_content_inner {
  max-width: 100%;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .detail_libox .lbx_content_inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .detail_libox .lbx_content_inner {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
.detail_libox .lbx_footer.lbx_box {
  width: 100%;
  position: relative;
  padding-top: 80px;
}
@media (max-width: 575px) {
  .detail_libox .lbx_footer.lbx_box {
    padding-top: 40px;
  }
}
.detail_libox .lbx_footer.lbx_box .gotop {
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.detail_libox .lbx_footer.lbx_box .container {
  margin-bottom: 90px;
}
.detail_libox .banner hr {
  width: 40px;
  height: 5px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  background-color: #6d88aa;
  border: 0;
}
@media (max-width: 767px) {
  .detail_libox article.article + article.article {
    margin-top: 50px;
  }
}
@media (max-width: 575px) {
  .detail_libox article.article + article.article {
    margin-top: 30px;
  }
}
@media (max-width: 479px) {
  .detail_libox article.article + article.article {
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .detail_libox article.article:last-of-type {
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .detail_libox article.article:last-of-type {
    margin-bottom: 30px;
  }
}
@media (max-width: 479px) {
  .detail_libox article.article:last-of-type {
    margin-bottom: 25px;
  }
}
.detail_libox .article_inner {
  width: 900px;
  max-width: 100%;
}
.detail_libox .article_inner.full {
  width: 100%;
}
.detail_libox .article_inner.narrow {
  width: calc(100% - 60px);
  margin: auto;
}
.detail_libox .article_inner__item {
  padding: 15px 0 40px 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .detail_libox .article_inner__item {
    padding: 20px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .detail_libox .article_inner__item {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .detail_libox .article_inner__item {
    padding: 0;
  }
}
.detail_libox .article_inner__item--title,
.detail_libox .article_inner__item--text {
  font-family: 'mplus-regular', '微軟正黑體';
}
@media (max-width: 767px) {
  .detail_libox .article_inner__item--title,
  .detail_libox .article_inner__item--text {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.detail_libox .article_inner__item--title h3,
.detail_libox .article_inner__item--text h3 {
  font-size: 1.625rem;
  letter-spacing: 0.5px;
}
@media (max-width: 700px) {
  .detail_libox .article_inner__item--title h3,
  .detail_libox .article_inner__item--text h3 {
    font-size: 1.25rem;
  }
}
.detail_libox .article_inner__item--title {
  margin-bottom: 20px;
}
.detail_libox .article_inner__item--text p {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
}
@media (max-width: 700px) {
  .detail_libox .article_inner__item--text p {
    font-size: 0.875rem;
  }
}
.detail_libox .article_inner.img .article_inner__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.detail_libox .article_inner.img .article_inner__item > .article_inner__item--title {
  text-align: left;
  width: 100%;
  max-width: 100%;
}
.detail_libox .article_inner.img .article_inner__item--left,
.detail_libox .article_inner.img .article_inner__item--right {
  max-width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .detail_libox .article_inner.img .article_inner__item--left,
  .detail_libox .article_inner.img .article_inner__item--right {
    max-width: 100%;
  }
}
.detail_libox .article_inner.img .article_inner__item--left .pic p,
.detail_libox .article_inner.img .article_inner__item--left .pic figcaption,
.detail_libox .article_inner.img .article_inner__item--right .pic p,
.detail_libox .article_inner.img .article_inner__item--right .pic figcaption {
  font-family: 'mplus-medium', '微軟正黑體';
  font-size: 0.9375rem;
  padding: 10px 0;
  color: rgba(0, 0, 0, 0.4);
}
.detail_libox .article_inner.img .article_inner__item--left .pic img,
.detail_libox .article_inner.img .article_inner__item--right .pic img {
  display: block;
}
.detail_libox .article_inner.img .article_inner__item--left {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.detail_libox .article_inner.img .article_inner__item--right {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .detail_libox .article_inner.img .article_inner__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.detail_libox
  .article[class*='g-g']
  .article_inner.img
  .article_inner__item
  > .article_inner__item--title {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 991px) {
  .detail_libox
    .article[class*='g-g']
    .article_inner.img
    .article_inner__item
    > .article_inner__item--title {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 575px) {
  .detail_libox
    .article[class*='g-g']
    .article_inner.img
    .article_inner__item
    > .article_inner__item--title {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.detail_libox
  .article[class*='g-g'].graphic
  .article_inner.img
  .article_inner__item
  > .article_inner__item--title {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 575px) {
  .detail_libox
    .article[class*='g-g'].graphic
    .article_inner.img
    .article_inner__item
    > .article_inner__item--title {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.detail_libox .article:last-of-type .article_inner__item {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .detail_libox .article.g-gr .article_inner__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .detail_libox .article.g-gr .article_inner__item--left {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (max-width: 767px) {
  .detail_libox .article.g-gr .article_inner__item--left .text {
    margin: 1rem 0 1rem;
  }
}
@media (max-width: 767px) {
  .detail_libox .article.g-gr .article_inner__item--right {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .detail_libox .article.g-gl .article_inner__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .detail_libox .article.g-gl .article_inner__item--left {
    text-align: center;
  }
}
.detail_libox .detail-slider {
  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: 40px 0;
}
.detail_libox .detail-slider .pic p,
.detail_libox .detail-slider .pic figcaption {
  font-family: 'mplus-medium', '微軟正黑體';
  font-size: 0.9375rem;
  color: rgba(0, 0, 0, 0.6);
  padding-top: 10px;
}

.news_detail .detail-slider {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .news_detail .detail-slider {
    padding: 40px 0 20px 0;
  }
}
@media (max-width: 575px) {
  .news_detail .detail-slider .list-item .pic {
    padding-left: 0;
    padding-right: 0;
  }
}
.news_detail .detail-slider .list-item .pic img {
  width: 100%;
}
@media (max-width: 991px) {
  .news_detail .detail-slider .slick-dots {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    width: 100% !important;
  }
}
.news_detail .detail-slider .slick-dots li {
  display: inline-block;
}

@media (max-width: 1199px) {
  .news_detail .article .article_inner.full.img {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 991px) {
  .news_detail .article .article_inner.full.img {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 575px) {
  .news_detail .article .article_inner.full.img {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  .news_detail .article[class*='g-g'] .article_inner__item {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 575px) {
  .news_detail .article[class*='g-g'] .article_inner__item {
    padding-left: 0;
    padding-right: 0;
  }
}

.news_detail .article[class*='g-g'] .article_inner__item--left,
.news_detail .article[class*='g-g'] .article_inner__item--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 5px;
  padding-right: 5px;
}
@media (max-width: 991px) {
  .news_detail .article[class*='g-g'] .article_inner__item--left,
  .news_detail .article[class*='g-g'] .article_inner__item--right {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .news_detail .article[class*='g-g'] .article_inner__item--left,
  .news_detail .article[class*='g-g'] .article_inner__item--right {
    padding-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .news_detail .article[class*='g-g'] .article_inner__item--left,
  .news_detail .article[class*='g-g'] .article_inner__item--right {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 575px) {
  .news_detail .article[class*='g-g'] .article_inner__item--left .text {
    margin-top: 0;
  }
}

.news_detail .article[class*='g-g'].graphic {
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 991px) {
  .news_detail .article[class*='g-g'].graphic {
    margin-left: -30px;
    margin-right: -30px;
  }
}
@media (max-width: 991px) {
  .news_detail .article[class*='g-g'].graphic .article_inner__item {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.news_detail .article[class*='g-g'].graphic .article_inner__item--left,
.news_detail .article[class*='g-g'].graphic .article_inner__item--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .news_detail .article[class*='g-g'].graphic .article_inner__item--left,
  .news_detail .article[class*='g-g'].graphic .article_inner__item--right {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .news_detail .article[class*='g-g'].graphic .article_inner__item--title {
    margin-top: 15px;
  }
}

@media (max-width: 1199px) {
  .news_detail .article[class*='g-g'] .article_inner.full.img {
    padding-left: 0;
    padding-right: 0;
  }
}

.news_detail .article.multiple + .multiple {
  margin-top: -75px;
}
@media (max-width: 1199px) {
  .news_detail .article.multiple + .multiple {
    margin-top: -35px;
  }
}
@media (max-width: 991px) {
  .news_detail .article.multiple + .multiple {
    margin-top: -55px;
  }
}
@media (max-width: 767px) {
  .news_detail .article.multiple + .multiple {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .news_detail .article_inner.narrow {
    width: 100%;
    padding: 0 20px;
  }
}

@media (max-width: 575px) {
  .news_detail .article_inner.narrow {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .news_detail .detail_libox--lbx_box .lbx_footer.lbx_box {
    padding-top: 30px;
  }
}

[data-page='news'] .news_detail .detail_libox .detail_container {
  background-color: #ececec;
}

@media (max-width: 1199px) {
  [data-page='news'] .news_detail .detail_libox .article_inner.narrow {
    margin-left: auto;
  }
}

.news_detail .lbx_header {
  width: 100%;
}
.news_detail .lbx_header .detail_close {
  padding: 0 90px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-transition: top 0.5s ease;
  -o-transition: top 0.5s ease;
  transition: top 0.5s ease;
}
@media (max-width: 1024px) {
  .news_detail .lbx_header .detail_close {
    padding: 0 5vw;
  }
}
@media (max-width: 575px) {
  .news_detail .lbx_header .detail_close {
    top: 10px;
  }
}
.news_detail .lbx_header .detail_close.headerFadeIn {
  top: 0;
}
.news_detail .lbx_header .detail_close.headerFadeOut {
  top: 18px;
}
@media (max-width: 575px) {
  .news_detail .lbx_header .detail_close.headerFadeOut {
    top: 10px;
  }
}
.news_detail .lbx_header .liboxClose {
  background-color: #ececec;
  cursor: pointer;
  padding: 20px 0;
}
.news_detail .lbx_header .liboxClose .close {
  color: white;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.6em;
  text-transform: uppercase;
  letter-spacing: 2px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0;
  padding: 50px 0 0 0;
  position: absolute;
  cursor: pointer;
}
.news_detail .lbx_header .liboxClose span {
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.news_detail .lbx_header .liboxClose .leftright {
  height: 4px;
  width: 50px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.news_detail .lbx_header .liboxClose .rightleft {
  height: 4px;
  width: 50px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.news_detail .lbx_header .liboxClose:hover .close {
  opacity: 1;
}
.news_detail .lbx_header .liboxClose:hover .leftright {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.news_detail .lbx_header .liboxClose:hover .rightleft {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

[data-page='news'] .detail_libox .lbx_content {
  padding-bottom: 0;
}
[data-page='news'] .detail_libox .lbx_content .banner {
  margin: 25px 0 0;
  padding: 0 30px;
}
@media (max-width: 767px) {
  [data-page='news'] .detail_libox .lbx_content .banner {
    padding: 0 5px;
  }
}
[data-page='news'] .detail_libox .lbx_content .banner .title h2 {
  font-size: 2.25rem;
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0;
}
@media (max-width: 1024px) {
  [data-page='news'] .detail_libox .lbx_content .banner .title h2 {
    font-size: 1.875rem;
  }
}
@media (max-width: 575px) {
  [data-page='news'] .detail_libox .lbx_content .banner .title h2 {
    font-size: 1.5rem;
  }
}
[data-page='news'] .detail_libox .lbx_content .banner .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  [data-page='news'] .detail_libox .lbx_content .banner .group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
[data-page='news'] .detail_libox .lbx_content .banner .group .information {
  padding-right: 85px;
}
@media (max-width: 767px) {
  [data-page='news'] .detail_libox .lbx_content .banner .group .information {
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  [data-page='news'] .detail_libox .lbx_content .banner .group .information .infos {
    margin-bottom: 5px;
  }
}
[data-page='news'] .detail_libox .lbx_content .banner .group .information .infos .type {
  margin-left: 20px;
}
[data-page='news'] .detail_libox .lbx_content .banner .group .information .title {
  margin: 25px 0 0;
}
@media (max-width: 767px) {
  [data-page='news'] .detail_libox .lbx_content .banner .group .information .title {
    margin: 10px 0 0;
  }
}
[data-page='news'] .detail_libox .lbx_content .banner .group .share-area {
  padding: 10px 0 0;
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 767px) {
  [data-page='news'] .detail_libox .lbx_content .banner .group .share-area {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 10px;
    margin-left: auto;
  }
}
[data-page='news'] .detail_libox .lbx_content .banner .group .share-area p {
  margin-bottom: 0;
  margin-right: 20px;
}
@media (max-width: 767px) {
  [data-page='news'] .detail_libox .lbx_content .banner .group .share-area .socials {
    vertical-align: middle;
  }
}
[data-page='news'] .detail_libox .lbx_content .lbx_content_inner .hide_lightbox:not(.menuDetail) {
  padding-bottom: 40px;
}
[data-page='news'] .detail_libox .lbx_content .lbx_footer_inner {
  background-color: #f9eccc;
  padding-top: 80px;
  padding-bottom: 60px;
  margin-top: 40px;
  border-radius: 27% 69% 0% 0% / 2% 3% 0% 0%;
}
@media (max-width: 575px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .mobile-mode {
    padding-top: 60px;
    padding-bottom: 120px;
  }
}
@media (max-width: 767px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner {
    padding-top: 60px;
  }
}
[data-page='news'] .detail_libox .lbx_content .lbx_footer_inner_container {
  width: 1005px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 991px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner_container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 575px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner_container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
[data-page='news'] .detail_libox .lbx_content .lbx_footer_inner_container .need + .hr {
  margin-top: 60px;
}
@media (max-width: 575px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner_container .need + .hr {
    margin-top: 0.5em;
  }
}
[data-page='news'] .detail_libox .lbx_content .lbx_footer_inner_container .hr + .latest {
  padding-top: 50px;
}
@media (max-width: 575px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner_container .hr + .latest {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner_container .need {
    padding-bottom: 40px;
  }
}
@media (max-width: 575px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner_container .need {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner_container .latest {
    padding-top: 40px;
  }
}
@media (max-width: 575px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner_container .latest {
    padding-top: 25px;
  }
}
[data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .group {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
[data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .group .title {
  max-width: 280px;
}
@media (max-width: 991px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .group .title {
    max-width: none;
    text-align: center;
    margin-bottom: 20px;
  }
}
[data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .group .news_lists_slider {
  max-width: calc(100% - 280px);
}
@media (max-width: 991px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .group .news_lists_slider {
    max-width: 100%;
  }
}
@media (max-width: 1199px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .group .slick-dots li {
    margin-right: 0;
  }
}
[data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .group ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 1199px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .group ul {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .group ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .group ul {
    max-width: 100%;
  }
}
[data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .group ul li {
  max-width: 50%;
}
@media (max-width: 1199px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .group ul li {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .group ul li {
    max-width: 100%;
  }
}
[data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .group ul li a {
  padding-left: 25px;
  padding-right: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1199px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .group ul li a {
    padding-left: 10px;
    padding-right: 10px;
  }
}
[data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .group ul li a .icon-img {
  position: relative;
  padding: 8px;
  max-width: 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  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;
}
[data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .group ul li a .icon-img:before {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #559198;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 0;
}
[data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .group ul li a .icon-img img {
  max-width: 100%;
  max-height: 100%;
  position: relative;
  z-index: 1;
}
[data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .group ul li a .text {
  margin-left: 20px;
}
[data-page='news']
  .detail_libox
  .lbx_content
  .lbx_footer_inner
  .group
  ul
  li
  a:hover
  .icon-img:before {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
@media (max-width: 991px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .need .group .title + ul {
    margin-top: 15px;
    width: 100%;
  }
}
[data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .need .group ul {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  max-width: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .need .group ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .need .group ul {
    padding-left: 0;
    padding-right: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .need .group ul {
    width: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .need .group ul li {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .need .group ul li {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .need .group ul li {
    margin-right: 0;
  }
}
[data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .news_lists_slider {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1199px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .news_lists_slider {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
[data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .news_lists_slider .slick-slide {
  margin-left: 0;
}
[data-page='news']
  .detail_libox
  .lbx_content
  .lbx_footer_inner
  .news_lists_slider
  .slick-slide
  .list-item-group {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-in-out;
  -o-transition: opacity 0.8s ease-in-out;
  transition: opacity 0.8s ease-in-out;
}
[data-page='news']
  .detail_libox
  .lbx_content
  .lbx_footer_inner
  .news_lists_slider
  .slick-slide.slick-current
  .list-item-group {
  opacity: 1;
}
[data-page='news']
  .detail_libox
  .lbx_content
  .lbx_footer_inner
  .news_lists_slider
  .slick-slide
  + .slick-slide {
  margin-top: 0;
}
[data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .news_lists_slider .list-item {
  display: none;
}
[data-page='news']
  .detail_libox
  .lbx_content
  .lbx_footer_inner
  .news_lists_slider
  .list-item.slick-slide {
  display: block;
}
[data-page='news']
  .detail_libox
  .lbx_content
  .lbx_footer_inner
  .news_lists_slider
  .list-item
  .list-item-group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0;
  margin-right: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
@media (max-width: 991px) {
  [data-page='news']
    .detail_libox
    .lbx_content
    .lbx_footer_inner
    .news_lists_slider
    .list-item
    .list-item-group {
    width: 600px;
    margin: auto;
  }
}
@media (max-width: 767px) {
  [data-page='news']
    .detail_libox
    .lbx_content
    .lbx_footer_inner
    .news_lists_slider
    .list-item
    .list-item-group {
    width: 450px;
  }
}
@media (max-width: 575px) {
  [data-page='news']
    .detail_libox
    .lbx_content
    .lbx_footer_inner
    .news_lists_slider
    .list-item
    .list-item-group {
    width: 350px;
  }
}
[data-page='news']
  .detail_libox
  .lbx_content
  .lbx_footer_inner
  .news_lists_slider
  .list-item
  .pic-group {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media (max-width: 1199px) {
  [data-page='news']
    .detail_libox
    .lbx_content
    .lbx_footer_inner
    .news_lists_slider
    .list-item
    .pic-group {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  [data-page='news']
    .detail_libox
    .lbx_content
    .lbx_footer_inner
    .news_lists_slider
    .list-item
    .pic-group {
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  [data-page='news']
    .detail_libox
    .lbx_content
    .lbx_footer_inner
    .news_lists_slider
    .list-item
    .pic-group {
    padding-left: 15px;
    padding-right: 15px;
  }
}
[data-page='news']
  .detail_libox
  .lbx_content
  .lbx_footer_inner
  .news_lists_slider
  .list-item
  .pic-group
  .pic-area {
  width: 100%;
}
[data-page='news']
  .detail_libox
  .lbx_content
  .lbx_footer_inner
  .news_lists_slider
  .list-item
  .article-container {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
@media (min-width: 992px) and (max-width: 1199px) {
  [data-page='news']
    .detail_libox
    .lbx_content
    .lbx_footer_inner
    .news_lists_slider
    .list-item
    .article-container {
    padding-right: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  [data-page='news']
    .detail_libox
    .lbx_content
    .lbx_footer_inner
    .news_lists_slider
    .list-item
    .article-container {
    margin: auto;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  [data-page='news']
    .detail_libox
    .lbx_content
    .lbx_footer_inner
    .news_lists_slider
    .list-item
    .article-container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 10px;
  }
}
@media (max-width: 575px) {
  [data-page='news']
    .detail_libox
    .lbx_content
    .lbx_footer_inner
    .news_lists_slider
    .list-item
    .article-container {
    max-width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 479px) {
  [data-page='news']
    .detail_libox
    .lbx_content
    .lbx_footer_inner
    .news_lists_slider
    .list-item
    .article-container {
    padding-left: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  [data-page='news']
    .detail_libox
    .lbx_content
    .lbx_footer_inner
    .news_lists_slider
    .list-item
    .article-container
    .date
    + .info {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  [data-page='news']
    .detail_libox
    .lbx_content
    .lbx_footer_inner
    .news_lists_slider
    .list-item
    .article-container
    .date
    + .info {
    margin-top: 0;
  }
}
[data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .news_lists_slider .slick-dots {
  right: 0;
  bottom: auto;
  top: 50%;
  -webkit-transform: translate(100%, -50%);
  -ms-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
  width: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
  margin-top: 0;
}
@media (min-width: 768px) and (max-width: 1365px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .news_lists_slider .slick-dots {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .news_lists_slider .slick-dots {
    margin-top: -30px;
  }
}
@media (max-width: 991px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .news_lists_slider .slick-dots {
    position: relative;
    width: 100%;
    top: auto;
    bottom: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    display: block;
    right: auto;
    left: 0;
    margin: auto;
    text-align: center;
  }
}
@media (max-width: 991px) {
  [data-page='news']
    .detail_libox
    .lbx_content
    .lbx_footer_inner
    .news_lists_slider
    .slick-dots
    li {
    display: inline-block;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  [data-page='news'] .detail_libox .lbx_content .lbx_footer_inner .news_lists_slider .slick-dots {
    position: relative;
    top: auto;
    bottom: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  [data-page='news']
    .detail_libox
    .lbx_content
    .lbx_footer_inner
    .news_lists_slider
    .slick-dots
    li {
    display: inline-block;
  }
}

[data-page='catalogue'] .navbar .nav-header .nav-header-links .back-btn {
  display: none;
}

[data-page='catalogue'] .nicescroll-rails-vr {
  width: 1px !important;
}

[data-page='catalogue'] main .banner {
  padding: 210px 50px 130px;
  text-align: center;
}
@media (max-width: 1024px) {
  [data-page='catalogue'] main .banner {
    padding: 130px 50px 120px;
    background-size: 0% !important;
  }
}
@media (max-width: 767px) {
  [data-page='catalogue'] main .banner {
    padding: 130px 50px 105px;
    background-size: 0% !important;
  }
}
[data-page='catalogue'] main .banner .banner-container .heading2 {
  line-height: 22px;
  font-size: 1.375rem;
  color: rgba(0, 0, 0, 0.3) !important;
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
@media (max-width: 1024px) {
  [data-page='catalogue'] main .banner .banner-container .heading2 {
    font-size: 1.125rem;
  }
}
@media (max-width: 479px) {
  [data-page='catalogue'] main .banner .banner-container .heading2 {
    font-size: 1.25rem;
  }
}
[data-page='catalogue'] main .banner .banner-container .heading3 {
  font-weight: normal;
  letter-spacing: 0;
  font-size: 3.4375rem;
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  line-height: 1.2;
  margin-top: 10px;
}
@media (max-width: 1024px) {
  [data-page='catalogue'] main .banner .banner-container .heading3 {
    font-size: 2.5rem;
    margin-top: 0;
  }
}
@media (max-width: 479px) {
  [data-page='catalogue'] main .banner .banner-container .heading3 {
    font-size: 2.1875rem;
    margin-top: 10px;
  }
}
[data-page='catalogue'] main .banner .banner-container .text {
  font-size: 0.9375rem;
  color: rgba(0, 0, 0, 0.7);
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  max-width: 552px;
  width: 100%;
  margin: 30px auto;
}
@media (max-width: 1024px) {
  [data-page='catalogue'] main .banner .banner-container .text {
    margin: 10px auto 30px;
  }
}
[data-page='catalogue'] main .banner .sub-navbar-main_inner__toggle {
  margin: auto;
  background-color: #aec3d5;
}
[data-page='catalogue'] main .banner .sub-navbar-main_inner__toggle .btn {
  height: 50px;
}
@media (max-width: 1024px) {
  [data-page='catalogue'] main .banner .sub-navbar-main_inner__toggle .btn {
    height: 44px;
  }
}
[data-page='catalogue'] main .banner .sub-navbar-main_inner__toggle .btn span.tri {
  border-top-color: #2e5e8d;
}
[data-page='catalogue'] main .banner .sub-navbar-main_inner__toggle .btn span.tri:before {
  background-color: #fff;
}

@media (max-width: 767px) {
  [data-page='catalogue'] main .content {
    background-attachment: fixed;
  }
}

[data-page='catalogue'] main .content .list {
  max-width: 1340px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: auto;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
}
[data-page='catalogue'] main .content .list li {
  width: calc(100% / 4);
  margin: 0 0 125px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 1200px) {
  [data-page='catalogue'] main .content .list li {
    width: calc(100% / 3);
    margin: 0 0 85px;
  }
}
@media (max-width: 767px) {
  [data-page='catalogue'] main .content .list li {
    width: calc(100% / 1);
    margin: 0 0 62px;
  }
}
[data-page='catalogue'] main .content .list li .img-box {
  max-width: 254px;
  width: 100%;
  height: 360px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 479px) {
  [data-page='catalogue'] main .content .list li .img-box {
    height: 100%;
  }
}
[data-page='catalogue'] main .content .list li .img-box:hover {
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.7));
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.7));
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
[data-page='catalogue'] main .content .list li .txt {
  max-width: 254px;
  width: 100%;
}
[data-page='catalogue'] main .content .list li .txt dl {
  padding: 20px 0;
}
[data-page='catalogue'] main .content .list li .txt dl .book-name {
  font-size: 1.375rem;
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  line-height: 1.3;
  height: 28px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  [data-page='catalogue'] main .content .list li .txt dl .book-name {
    letter-spacing: 0.5px;
  }
}
[data-page='catalogue'] main .content .list li .txt dl .intro {
  padding: 10px 0 0;
  font-size: 0.9375rem;
  font-family: 'mplus-light', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  line-height: 1.3;
  height: 48px;
  overflow: hidden;
}
[data-page='catalogue'] main .content .list li .txt .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
[data-page='catalogue'] main .content .list li .txt .link a {
  display: table;
  font-size: 1.0625rem;
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  color: #666666;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
[data-page='catalogue'] main .content .list li .txt .link a:hover {
  color: #559198;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
[data-page='catalogue'] main .content .list li .txt .link a .icon-plus {
  margin-right: 5px;
  font-size: 40px;
  width: 16px;
  height: 16px;
  overflow: hidden;
  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;
  float: left;
}
[data-page='catalogue'] main .content .list li .txt .link a .icon-plus:before {
  -webkit-transform: translate(1px, 1px);
  -ms-transform: translate(1px, 1px);
  transform: translate(1px, 1px);
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

dl,
menu,
ol,
ul {
  margin: 0;
}

ul {
  list-style: none;
  list-style-image: none;
}

#dm {
  background-color: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100%;
  padding: 0 !important;
  overflow: hidden;
  /* = Book-------------------------------------------------------------- */
  /* = Menu-------------------------------------------------------------- */
  /* = Footer-------------------------------------------------------------- */
}
#dm #page {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  display: none;
  width: 1100px;
  height: 715px;
}
@media (max-width: 1081px) and (min-width: 1079px) and (max-aspect-ratio: 1 / 1) {
  #dm #page {
    top: 40% !important;
  }
}
#dm #page.mobile {
  width: 550px;
  height: 358px;
}
#dm #page.grab {
  cursor: -webkit-grab;
  cursor: grab;
}
#dm #page.grab.draggable {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
#dm .cursor-grab {
  cursor: -webkit-grab;
  cursor: -moz-grab;
}
#dm .overlay {
  position: absolute;
  left: -10000px;
  top: 0;
  z-index: 20;
  /**old wrb*/
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100%;
  padding: 100px 0;
  overflow-y: auto;
}
@media (max-width: 1081px) and (min-width: 1079px) and (max-aspect-ratio: 1 / 1) {
  #dm .overlay {
    padding: 25vh 0;
  }
}
#dm .overlay.active {
  left: 0;
}
@media (max-width: 1081px) and (min-width: 1079px) and (max-aspect-ratio: 1 / 1) {
  #dm .overlay.active .btn-close {
    position: fixed;
    top: 50%;
  }
}
#dm .btn-close {
  position: absolute;
  right: 30px;
  top: 0;
  z-index: 2;
  width: 95px;
  height: 95px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.5);
  padding-right: 20px;
  opacity: 1;
}
#dm .btn-close span {
  display: block;
}
#dm .btn-close .icon-back {
  width: 30px;
}
#dm .btn-close .txt {
  text-transform: capitalize;
  font-weight: bold;
  color: #fff;
  font-size: 18px;
  font-family: 'mplus-heavy', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
}
#dm #menu_holder {
  max-width: 1600px;
  margin: auto;
  width: 100%;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1600px) {
  #dm #menu_holder {
    max-width: 100%;
  }
}
#dm #menu_holder #slider {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#dm #menu_holder #slider li {
  text-align: center;
  margin: 0 10px;
  cursor: pointer;
}
@media screen and (max-width: 1600px) {
  #dm #menu_holder #slider li {
    width: 300px;
  }
}
@media (max-width: 480px) {
  #dm #menu_holder #slider li {
    width: auto;
  }
}
#dm #menu_holder #slider li:hover {
  opacity: 0.5;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#dm #menu_holder #slider li figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 300px;
}
#dm #menu_holder #slider li img {
  display: inline-block;
  width: 50%;
}
#dm #menu_holder #slider p {
  font-size: 16px;
  color: #fff;
  width: 100%;
  margin: 5px auto;
  font-family: 'mplus-regular', '微軟正黑體';
  letter-spacing: 1px;
}
#dm #book {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#dm #book .turn-page {
  background-color: white;
  background-size: 100% 100%;
  position: relative;
}
#dm #book div a {
  position: absolute;
  opacity: 0;
  display: block;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1024px),
  (max-width: 1081px) and (min-width: 1079px) and (max-aspect-ratio: 1 / 1) {
  #dm #book div a {
    display: none;
  }
}
#dm #book div a:hover {
  opacity: 0.5;
  background-color: blue;
}
#dm .double {
  background-size: 200% 100% !important;
}
#dm .double.first {
  background-position: 0% 0%;
}
#dm .double.second {
  background-position: -100% 0%;
}
#dm .nav_arrow {
  position: absolute;
  top: 50%;
  z-index: 15;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 1081px) and (min-width: 1079px) and (max-aspect-ratio: 1 / 1) {
  #dm .nav_arrow {
    top: 40%;
  }
}
#dm .nav_arrow i {
  color: #fff;
  font-size: 50px;
  cursor: pointer;
}
#dm .nav_arrow i img {
  height: 50px;
}
#dm .nav_arrow.prev {
  left: 0;
}
#dm .nav_arrow.next {
  right: 0;
}
#dm nav {
  text-align: center;
  padding: 10px 0;
}
#dm nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#dm nav li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin: 0 10px;
}
@media screen and (max-width: 1024px) {
  #dm nav li:nth-last-child(3),
  #dm nav li:nth-last-child(4),
  #dm nav li:nth-last-child(5) {
    display: none;
  }
}
#dm nav li a {
  display: block;
  width: 30px;
  height: 40px;
  font-size: 18px;
  color: gray;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  #dm nav li a {
    width: 50px;
    height: 50px;
  }
}
#dm nav li a:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  color: #c8c8c8;
}
@media screen and (max-width: 1024px) {
  #dm nav li a:hover {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 0.5;
  }
}
#dm nav li a img {
  height: 18px;
  -webkit-filter: contrast(0.1);
  filter: contrast(0.1);
}
@media screen and (max-width: 1024px) {
  #dm nav li a img {
    height: 25px;
  }
}
#dm nav li .download {
  background-position: 0 0;
}
#dm nav li .download:hover {
  background-position: 0 -90px;
}
#dm nav li .home {
  background-position: 0 -175px;
}
#dm nav li .home:hover {
  background-position: 0 -265px;
}
#dm nav li .contact {
  background-position: 0 -355px;
}
#dm nav li .contact:hover {
  background-position: 0 -445px;
}
#dm nav li .show_all {
  background-position: 0 -535px;
}
#dm nav li .show_all:hover {
  background-position: 0 -625px;
}
#dm nav li .zoom_auto {
  background-position: 0 -715px;
}
#dm nav li .zoom_auto:hover {
  background-position: 0 -805px;
}
#dm nav li .zoom_out {
  background-position: 0 -1255px;
}
#dm nav li .zoom_out:hover {
  background-position: 0 -1345px;
}
#dm footer {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 15;
  width: 100%;
  min-height: 60px;
  margin: 0;
  padding: 0;
}
@media (max-width: 1081px) and (min-width: 1079px) and (max-aspect-ratio: 1 / 1) {
  #dm footer {
    bottom: auto;
    top: calc(40% + 70vw - 140px);
  }
}

section.magnifier {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
section.magnifier.show {
  opacity: 1;
}
section.magnifier .bg-cover {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
section.magnifier .magnifier-inner {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 85%;
  max-width: 1340px;
  height: 90vh;
  max-height: 845px;
  background-color: #eee;
}
@media only screen and (max-width: 900px) {
  section.magnifier .magnifier-inner {
    max-height: 700px;
  }
}
@media only screen and (max-width: 600px) {
  section.magnifier .magnifier-inner {
    width: 100%;
    height: 100vh;
    max-height: none;
  }
}
section.magnifier .magnifier-inner .close-btn {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
  width: 50px;
  height: 50px;
  background-color: #609ca2;
  cursor: pointer;
}
@media only screen and (max-width: 600px) {
  section.magnifier .magnifier-inner .close-btn {
    display: block;
  }
}
section.magnifier .magnifier-inner .close-btn span {
  position: absolute;
  content: '';
  display: block;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 1px;
  background-color: #fff;
}
section.magnifier .magnifier-inner .close-btn span:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
section.magnifier .magnifier-inner .close-btn span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
section.magnifier .magnifier-inner .magnifier-box {
  position: relative;
  width: 100%;
  height: 100%;
}
section.magnifier .magnifier-inner .magnifier-box .swiper-container {
  width: 100%;
  height: 100%;
}
section.magnifier
  .magnifier-inner
  .magnifier-box
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .slide-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
section.magnifier
  .magnifier-inner
  .magnifier-box
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .slide-inner
  .photo {
  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;
  min-width: 100%;
  min-height: 100%;
  background-size: cover;
  cursor: url('../img/mouse-3.cur'), auto !important;
}
@media only screen and (max-width: 1024px) {
  section.magnifier
    .magnifier-inner
    .magnifier-box
    .swiper-container
    .swiper-wrapper
    .swiper-slide
    .slide-inner
    .photo {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
section.magnifier
  .magnifier-inner
  .magnifier-box
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .slide-inner
  .photo
  img {
  width: 100%;
}
section.magnifier .magnifier-inner .magnifier-box .magnifier-prev-btn,
section.magnifier .magnifier-inner .magnifier-box .magnifier-next-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
@media only screen and (max-width: 600px) {
  section.magnifier .magnifier-inner .magnifier-box .magnifier-prev-btn,
  section.magnifier .magnifier-inner .magnifier-box .magnifier-next-btn {
    display: none;
  }
}
section.magnifier .magnifier-inner .magnifier-box .magnifier-prev-btn span,
section.magnifier .magnifier-inner .magnifier-box .magnifier-next-btn span {
  font-size: 40px;
  color: #fff;
}
section.magnifier .magnifier-inner .magnifier-box .magnifier-prev-btn {
  left: -7%;
}
section.magnifier .magnifier-inner .magnifier-box .magnifier-next-btn {
  right: -7%;
}
section.magnifier .magnifier-inner .magnifier-box .hint-text {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 15px 50px;
  border-radius: 25px;
  background-color: #609ca2;
}
section.magnifier .magnifier-inner .magnifier-box .hint-text span {
  font-family: 'mplus-medium', Microsoft JhengHei, 微軟正黑體, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 20px;
  color: #fff;
}
