@charset "UTF-8";
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
tfoot,
time,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  padding: 0px;
  margin: 0px;
  font-family: "Noto Sans TC", Arial, sans-serif;
  color: #333333;
  font-size: 16px;
  line-height: 1.75;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  word-wrap: break-word;
  word-break: break-all;
}

@media screen and (max-width: 991px) {
  body {
    font-size: 16px;
  }
}
::-moz-selection {
  background: #068ce8;
  color: #fff;
}

::selection {
  background: #068ce8;
  color: #fff;
}

a {
  text-decoration: none;
}

img {
  outline: none;
  border: none;
}

p {
  margin: 16px 0px;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #333333;
}

p.xs {
  font-size: 16px;
}

p.white {
  color: #ffffff;
}

p.glow {
  text-shadow:
    2px 2px 4px rgba(255, 255, 255, 0.8),
    -2px -2px 4px rgba(255, 255, 255, 0.8),
    -2px 2px 4px rgba(255, 255, 255, 0.8),
    2px -2px 4px rgba(255, 255, 255, 0.8),
    4px 4px 6px rgba(255, 255, 255, 0.8),
    -4px -4px 6px rgba(255, 255, 255, 0.8),
    -4px 4px 6px rgba(255, 255, 255, 0.8),
    4px -4px 6px rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 991px) {
  p {
    font-size: 16px;
    margin: 8px 0px;
  }
}
ol,
ul {
  margin: 15px 0px;
  padding-left: 20px;
}

ol li,
ul li {
  padding-bottom: 3px;
}

ol li:last-of-type,
ul li:last-of-type {
  padding-bottom: 0px;
}

ol li ol,
ol li ul,
ul li ol,
ul li ul {
  margin: 3px 0px 0px;
}

ol.chineseNum,
ul.chineseNum {
  list-style: none;
  padding-left: 0;
}

ol.chineseNum li,
ul.chineseNum li {
  text-indent: -47px;
  padding-left: 47px;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-red {
  color: #cf0000 !important;
}

.text-blue {
  color: #3266a6 !important;
}

.text-orange {
  color: #ff5a00 !important;
}

.text-black {
  color: #333;
}

.text-underline {
  text-decoration: underline;
}

.text-green {
  color: #3effc2;
}

.remark {
  font-size: 16px;
  line-height: 1.2;
  color: #333333;
}

.remark .bold {
  font-weight: bold;
}

.linkText {
  color: #3266a6;
  border-bottom: solid 1px;
  transition: 0.3s ease all;
  border-bottom-color: #3266a6;
}

.linkText strong {
  color: #333;
  font-weight: 700;
}

.linkText:hover {
  border-bottom-color: transparent;
}

.code {
  background: #f2f2f2;
  padding: 0 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: monospace, "Noto Sans TC";
}

.checkbox {
  vertical-align: middle;
  display: inline-block;
}

.checkbox label {
  display: flex;
}

.checkbox input[type="checkbox"] {
  display: none;
}

.checkbox input[type="checkbox"]:checked + span {
  background: #fae103;
  border-color: #fae103;
}

.checkbox input[type="checkbox"]:checked + span i {
  color: #000;
}

.checkbox span {
  display: block;
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  border: solid 2px #ccc;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s ease all;
  position: relative;
}

.checkbox span i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #fff;
  font-size: 15px;
  transition: 0.3s ease all;
}

.radio {
  vertical-align: middle;
  display: inline-block;
  margin-right: 20px;
}

.radio label {
  display: flex;
}

.radio input[type="radio"] {
  display: none;
}

.radio input[type="radio"]:checked + .radio-fake {
  background: #fae103;
}

.radio input[type="radio"]:checked + .radio-fake i {
  color: #000;
}

.radio-fake {
  display: block;
  width: 26px;
  height: 26px;
  box-sizing: border-box;
  border: solid 2px #aaa;
  background: #fff;
  border-radius: 100%;
  transition: 0.3s ease all;
  position: relative;
}

.radio-fake i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #fff;
  font-size: 13px;
  transition: 0.3s ease all;
}

.radio-text {
  vertical-align: middle;
  font-size: 18px;
  padding-left: 8px;
}

label {
  cursor: pointer;
}

button {
  border: none;
  color: #fff;
  transition: 0.3s ease all;
  border-radius: 5px;
  cursor: pointer;
}

button i {
  margin-left: 5px;
}

button,
input {
  outline: none;
  font-family:
    Arial, "Microsoft JhengHei", "Helvetica Neue", Helvetica, sans-serif;
}

button,
input,
select {
  outline: none;
  font-family:
    Arial, "Microsoft JhengHei", "Helvetica Neue", Helvetica, sans-serif;
}

.inputStyle,
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"] {
  border-radius: 10px;
  border: solid 1px #c7c7c7;
  background: #fff;
  font-size: 17px;
  box-sizing: border-box;
  padding: 15px 10px;
  width: 100%;
}

select {
  box-sizing: border-box;
  padding: 0 24px 0 10px;
  font-size: 17px;
  line-height: 50px;
  height: 54px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url(../images/icon-dropdown.png) right center no-repeat;
  background-size: 18px;
  border-radius: 10px;
  border: solid 1px #c7c7c7;
}

select::-ms-expand {
  display: none;
}

input[type="range"] {
  width: 100%;
  height: 26px;
  -webkit-appearance: none;
  margin: 10px 0;
}

input[type="range"]:focus {
  outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 14px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #50555c;
  background: #50555c;
  border-radius: 14px;
  border: 0px solid #000000;
}

input[type="range"]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px #000000;
  border: 0px solid #000000;
  height: 20px;
  width: 40px;
  border-radius: 12px;
  background: #3266a6;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -3px;
}

input[type="range"]:focus::-webkit-slider-runnable-track {
  background: #50555c;
}

input[type="range"]::-moz-range-track {
  width: 100%;
  height: 14px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #50555c;
  background: #50555c;
  border-radius: 14px;
  border: 0px solid #000000;
}

input[type="range"]::-moz-range-thumb {
  box-shadow: 0px 0px 0px #000000;
  border: 0px solid #000000;
  height: 20px;
  width: 40px;
  border-radius: 12px;
  background: #3266a6;
  cursor: pointer;
}

input[type="range"]::-ms-track {
  width: 100%;
  height: 14px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type="range"]::-ms-fill-lower {
  background: #50555c;
  border: 0px solid #000000;
  border-radius: 28px;
  box-shadow: 1px 1px 1px #50555c;
}

input[type="range"]::-ms-fill-upper {
  background: #50555c;
  border: 0px solid #000000;
  border-radius: 28px;
  box-shadow: 1px 1px 1px #50555c;
}

input[type="range"]::-ms-thumb {
  margin-top: 1px;
  box-shadow: 0px 0px 0px #000000;
  border: 0px solid #000000;
  height: 20px;
  width: 40px;
  border-radius: 12px;
  background: #3266a6;
  cursor: pointer;
}

input[type="range"]:focus::-ms-fill-lower {
  background: #50555c;
}

input[type="range"]:focus::-ms-fill-upper {
  background: #50555c;
}

.rangeList {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  writing-mode: vertical-lr;
  width: 100%;
}

.rangeList option {
  padding: 0;
  transform: rotate(-90deg);
}

.container {
  margin: 0 auto;
  padding: 0px;
  width: 100%;
  max-width: 1000px;
  position: relative;
  box-sizing: border-box;
}

@media screen and (max-width: 1199px) {
  .container {
    margin: 0px auto;
    width: auto;
  }
}
@media screen and (max-width: 991px) {
  .container {
    margin: 0px 25px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    margin: 0px 15px;
  }
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.hide {
  display: none !important;
}

.mobileShow {
  display: none !important;
}

.br {
  display: block;
}

.unBr {
  display: inline;
}

.centerToLeft {
  text-align: center;
}

@media screen and (max-width: 991px) {
  .centerToLeft {
    text-align: left;
  }
}
@media screen and (max-width: 991px) {
  .pcShow {
    display: none !important;
  }
  .mobileShow {
    display: initial !important;
  }
  .br {
    display: inline;
  }
  .unBr {
    display: block;
  }
}
.fontAwesomeIcon,
.slick-arrow {
  display: inline-block;
  font: normal normal normal 14px/1 "Font Awesome 5 Free";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 900;
}

.animated {
  animation-fill-mode: backwards;
}

.dividingLine {
  margin: 40px 0px;
  border-bottom: dashed 1px #bbb;
  clear: both;
}

.youtube {
  width: 100%;
  max-width: 600px;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

.youtube img {
  width: 100%;
  position: relative;
  display: block;
}

.youtube-content {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.youtube-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .youtube {
    max-width: 600px;
  }
}
.slick-slider {
  padding-bottom: 25px;
}

.slick-slide {
  outline: none;
}

.slick-slide a {
  outline: none;
}

.slick-slide img {
  max-width: 100%;
}

.slick-dots {
  list-style: none;
  font-size: 0px;
  text-align: center;
  margin: 0px;
  padding-left: 0px;
  width: 100%;
  position: absolute;
  bottom: 0px;
}

.slick-dots li {
  padding: 0px 7px;
  display: inline-block;
  vertical-align: top;
}

.slick-dots li button {
  font-size: 0px;
  padding: 0px;
  border-radius: 50px;
  width: 13px;
  height: 13px;
  background: #a5a5a5;
}

.slick-dots li.slick-active button {
  background: #068ce8;
  width: 25px;
}

.slick-arrow {
  font-size: 0px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0px;
  border-radius: 100%;
  width: 36px;
  height: 36px;
  text-align: center;
  color: #aaaaaa;
  transition: 0.3s ease all;
  z-index: 1;
  background: none;
}

.slick-arrow:before {
  font-size: 36px;
  line-height: 1;
}

.slick-arrow:hover {
  color: #068ce8;
}

.slick-prev {
  left: 0px;
}

.slick-prev:before {
  content: "\f104";
}

.slick-next {
  right: 0px;
}

.slick-next:before {
  content: "\f105";
}

@media screen and (max-width: 767px) {
  .slick-arrow {
    top: 45%;
  }
  .slick-arrow:before {
    font-size: 26px;
  }
}
img {
  border: 0;
  display: block;
  width: 100%;
  margin: 0 auto;
}

::-webkit-scrollbar {
  width: 5px;
  height: 10px;
  background-color: #c8a973;
}

::-webkit-scrollbar-track {
  background-color: #cccccc;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #c8a973;
  border-radius: 20px;
}

::-webkit-scrollbar-button {
  background-color: #cf0000;
}

::-webkit-scrollbar-corner {
  background-color: #cf0000;
}

.loading {
  display: none;
  z-index: 1000;
  flex-flow: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: rgba(255, 255, 255, 0.95);
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  align-items: center;
}

.loading img {
  width: 90%;
  max-width: 300px;
}

.loading .lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}

.loading .lds-dual-ring:after {
  content: " ";
  display: block;
  width: 48px;
  height: 48px;
  margin: 24px 0px;
  border-radius: 50%;
  border: 6px solid #c8a973;
  border-color: #c8a973 transparent #cf0000 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

.loading.show {
  display: flex;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.topBtn {
  position: fixed;
  z-index: 1;
  bottom: 35px;
  right: 15px;
  transition:
    0.5s ease transform,
    0.3s ease opacity;
  opacity: 1;
  cursor: pointer;
  display: none;
}

.topBtn article {
  display: block;
  border-radius: 100%;
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  color: #fff;
  font-size: 12px;
  box-sizing: border-box;
  transition: 0.3s ease all;
  position: relative;
  top: 0px;
  padding-top: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 0px 2px #fff;
}

.topBtn article span {
  position: relative;
}

.topBtn article i {
  display: block;
  margin: 0 auto;
}

.topBtn article:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1199px) {
  .topBtn {
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .topBtn {
    bottom: 80px;
  }
  .topBtn article {
    width: 40px;
    height: 40px;
    font-size: 0px;
  }
  .topBtn article i {
    font-size: 20px;
  }
}
.footer {
  background: #3d3d3d;
  color: #fff;
  font-size: 18px;
  padding: 32px 0;
}

.footer-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px 24px;
  box-sizing: border-box;
}

.footer-copyright {
  font-weight: 700;
  border-bottom: 1px solid #717171;
  padding: 10px 0;
  position: relative;
}

.footer-copyright span {
  display: inline-block;
  padding-left: 16px;
}

.footer-copyright .socialBox {
  position: absolute;
  right: 0;
  bottom: 10px;
  letter-spacing: 4px;
  padding: 0;
  text-align: right;
}

.footer-copyright .socialBox a {
  display: inline-block;
  color: #c8a973;
}

.footer-copyright .socialBox a i {
  font-size: 30px;
}

.footer-copyright .socialBox a .footIcon {
  width: 30px;
  height: 30px;
  display: inline-block;
  vertical-align: -6px;
}

.footer-copyright .socialBox a:hover {
  color: #b49560;
}

.footer-contactInfo {
  border-bottom: 1px solid #717171;
  padding: 10px 0;
}

.footer-contactInfo span {
  display: inline-block;
  padding-left: 16px;
}

.footer-idNum {
  padding: 10px 0;
  text-align: left;
}

.footer-warning {
  text-align: left;
  color: #fff;
}

.footer-warning-slider > p {
  font-size: 16px;
  line-height: 1.4;
  color: #ffffff;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .footer-container {
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 50px;
    font-size: 16px;
    text-align: center;
  }
  .footer-copyright span {
    display: block;
    padding-left: 0;
  }
  .footer-copyright .socialBox {
    position: relative;
    right: 0;
    bottom: 0;
    padding: 16px 0;
    text-align: center;
    letter-spacing: 20px;
  }
  .footer-copyright .socialBox a i {
    font-size: 36px;
  }
  .footer-copyright .socialBox a .footIcon {
    width: 48px;
    height: 48px;
    display: inline-block;
    vertical-align: 0;
  }
  .footer-contactInfo {
    padding: 10px 0;
  }
  .footer-contactInfo span {
    display: block;
  }
}
body {
  position: relative;
  max-width: 100%;
  background-color: #f1f9ff;
}

body.fixedBody {
  overflow-y: hidden;
}

.header {
  width: 100%;
  height: 80px;
  top: 0;
  left: 0;
  position: fixed;
  padding: 0;
  background-color: #ffffff;
  z-index: 100;
  box-shadow: 0px 1px 2px rgba(165, 165, 165, 0.3);
  box-sizing: border-box;
}

.header-area {
  height: 80px;
  margin: 0px auto;
  padding: 0px;
}

nav {
  width: 100%;
  height: 80px;
  position: relative;
  color: #ecedee;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px !important;
  padding: 0px;
  box-sizing: border-box;
}

nav .logo {
  max-height: 80px;
  height: 100%;
  transition: 0.3s ease all;
  display: inline-block;
}

nav .logo > img {
  width: auto;
  max-height: 80px;
  height: 100%;
  max-width: 320px;
}

@media screen and (max-width: 767px) {
  nav {
    padding: 0px 10px !important;
  }
  nav .logo > img {
    max-width: 120px;
  }
}
#main-menu {
  position: relative;
  flex-grow: 1;
  text-align: right;
  box-sizing: border-box;
}

#main-menu .toggle {
  display: none;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 30px;
  transform: translateX(0%);
}

#main-menu .toggle div {
  width: 30px;
  height: 3px;
  background: #333333;
  margin: 6px 0;
  transition: 0.3s ease all;
  display: block;
  position: relative;
}

@media screen and (max-width: 1199px) {
  #main-menu .toggle {
    display: inline-block;
  }
}
#main-menu #drop {
  display: none;
}

#main-menu #drop ~ ul {
  width: 100%;
  position: relative;
  list-style: none;
  text-align: right;
  letter-spacing: 0;
  font-size: 0;
  padding-left: 0px;
  margin: 0;
  top: 0;
  right: 0;
  box-sizing: border-box;
  background: #ffffff;
}

#main-menu #drop ~ ul > li {
  display: inline-block;
  margin: 0;
  padding: 0px;
  position: relative;
}

#main-menu #drop ~ ul > li a,
#main-menu #drop ~ ul > li span {
  font-size: 20px;
  cursor: pointer;
  display: block;
  color: #333333;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.5em 1em;
  text-align: left;
}

#main-menu #drop ~ ul > li a.act,
#main-menu #drop ~ ul > li a:hover,
#main-menu #drop ~ ul > li span.act,
#main-menu #drop ~ ul > li span:hover {
  color: #ff5a00;
}

#main-menu #drop ~ ul > li > .subNav {
  display: none;
  position: absolute;
  left: 0px;
  top: 0px;
  padding: 8px 0px;
  background-color: #ffffff;
  transform: translateY(64px);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.3);
}

#main-menu #drop ~ ul > li > .subNav > li {
  max-width: auto;
  display: block;
  white-space: nowrap;
  text-align: left;
}

#main-menu #drop ~ ul > li > .subNav > li span,
#main-menu #drop ~ ul > li > .subNav > li > a {
  font-weight: normal;
  text-align: left;
}

@media screen and (max-width: 1199px) {
  #main-menu #drop ~ ul {
    min-width: 12em;
    width: 100%;
    position: absolute;
    top: 80px;
    right: 0px;
    transform: translateX(200%);
    border-radius: 16px;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
  }
  #main-menu #drop ~ ul > li {
    display: block;
  }
  #main-menu #drop ~ ul > li a,
  #main-menu #drop ~ ul > li span {
    font-size: 20px;
    text-align: center;
    color: #333333;
    padding: 8px 5px;
    border-top: 1px solid #ccc;
    box-sizing: border-box;
    cursor: pointer;
  }
  #main-menu #drop ~ ul > li a.act,
  #main-menu #drop ~ ul > li a:hover,
  #main-menu #drop ~ ul > li span.act,
  #main-menu #drop ~ ul > li span:hover {
    color: #ff5a00;
  }
  #main-menu #drop ~ ul > li:first-child a,
  #main-menu #drop ~ ul > li:first-child span {
    border-top: none;
  }
  #main-menu #drop ~ ul > li > .subNav {
    display: none;
    position: relative;
    padding: 8px 0px;
    background-color: #ffffff;
    transform: translateY(0px);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: none;
  }
  #main-menu #drop ~ ul > li > .subNav > li {
    max-width: auto;
    display: block;
    white-space: nowrap;
  }
  #main-menu #drop:checked ~ ul {
    padding: 0 10px;
    transform: translateX(0%);
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1199px) and (max-width: 1199px) {
  #main-menu #drop:checked ~ ul {
    display: inline-block;
  }
}
@media screen and (max-width: 1199px) {
  #main-menu #drop:checked ~ .toggle div:first-of-type,
  #main-menu #drop:checked ~ .toggle div:nth-of-type(2) {
    transform-origin: center center;
    background: #ee5c45;
  }
  #main-menu #drop:checked ~ .toggle div:first-of-type {
    transform: rotate(45deg);
    top: 9px;
  }
  #main-menu #drop:checked ~ .toggle div:nth-of-type(2) {
    transform: rotate(-45deg);
  }
  #main-menu #drop:checked ~ .toggle div:nth-of-type(3) {
    opacity: 0;
  }
}
.btn {
  display: inline-block;
  vertical-align: top;
  padding: 8px 0px;
}

.btnArea {
  text-align: center;
  font-size: 0px;
  margin: 10px 0px;
}

.btnArea.threeBtn .btn,
.btnArea.twoBtn .btn {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 50%;
}

.btnArea.threeBtn .btn {
  max-width: 33.3333333333%;
}

.btn a,
.btn button,
.btn span {
  font-size: 18px;
  display: block;
  color: #fff;
  line-height: 50px;
  border-radius: 30px;
  transition: 0.3s ease all;
  text-align: center;
  box-sizing: border-box;
  padding: 0px 42px;
  background: #cf0000;
  overflow: hidden;
  position: relative;
  box-shadow: 0 3px 0 rgba(65, 65, 65, 0.25);
}

.btn a:before,
.btn button:before,
.btn span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.1);
  width: 0px;
  height: 0px;
  transition: 0.6s ease-in-out all;
}

.btn a:hover:before,
.btn button:hover:before,
.btn span:hover:before {
  width: 800px;
  height: 800px;
}

.btn a.short,
.btn button.short,
.btn span.short {
  padding: 0px 1em;
}

.btn.twoLines a,
.btn.twoLines button,
.btn.twoLines span {
  line-height: 1.2;
  padding-top: 16px;
  padding-bottom: 16px;
}

.btn.type2 a,
.btn.type2 button,
.btn.type2 span {
  background: #3266a6;
}

.btn.type3 a,
.btn.type3 button,
.btn.type3 span {
  background: #ee5c45;
}

.btn.type4 a,
.btn.type4 button,
.btn.type4 span {
  background: #333333;
}

.btn.type5 a,
.btn.type5 button,
.btn.type5 span {
  background: #c8a973;
}

.btn.red a,
.btn.red button,
.btn.red span {
  background: #c20f2f;
  text-shadow: none !important;
}

.btn.yellow a,
.btn.yellow button,
.btn.yellow span {
  background: #ffff02;
  color: #000;
  text-shadow: none !important;
}

.btn.disable a,
.btn.disable button,
.btn.disable span {
  background: #fff;
  color: rgba(0, 0, 0, 0.21);
  box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.21);
  cursor: auto;
}

.btn.disable a:hover,
.btn.disable button:hover,
.btn.disable span:hover {
  box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.21);
}

.btn.fixedWidth {
  width: 250px;
}

.btn-remark {
  font-size: 16px;
  text-align: center;
  padding-top: 10px;
}

.btn.white a,
.btn.white button,
.btn.white span {
  background: none;
  color: #fff;
  border: solid 1px;
}

.btn.borderType a,
.btn.borderType button,
.btn.borderType span {
  color: #3266a6;
  border: solid 2px;
  background: none;
}

.btn.borderType a:hover,
.btn.borderType button:hover,
.btn.borderType span:hover {
  text-shadow: none;
  background-color: #3266a6;
  color: #ffffff;
  border-color: #3266a6;
}

.btn.borderType.whiteStyle a,
.btn.borderType.whiteStyle button,
.btn.borderType.whiteStyle span {
  color: #fff;
}

.btn.borderType.redStyle a,
.btn.borderType.redStyle button,
.btn.borderType.redStyle span {
  color: #d10031;
}

.btn.textBtn a,
.btn.textBtn button,
.btn.textBtn span {
  color: #c8a973;
  background: none;
}

.btn.textBtn a:before,
.btn.textBtn button:before,
.btn.textBtn span:before {
  background: rgba(0, 0, 0, 0.05);
}

.btn.textBtn a:hover,
.btn.textBtn button:hover,
.btn.textBtn span:hover {
  text-shadow: none;
  box-shadow: none;
}

.btn.textBtn.whiteStyle a,
.btn.textBtn.whiteStyle button,
.btn.textBtn.whiteStyle span {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .btn {
    width: 100%;
  }
  .btnArea.threeBtn .btn,
  .btnArea.twoBtn .btn {
    max-width: none;
    width: 100%;
    box-sizing: border-box;
    padding-left: 0px;
    padding-right: 0px;
  }
  .btn a,
  .btn button,
  .btn span {
    font-size: 17px;
    line-height: 45px;
    width: 100%;
    padding: 0px 20px;
  }
  .btn-remark {
    padding: 5px 0px 10px;
  }
}
.normal a,
.normal button {
  font-size: 24px;
  line-height: 55px;
  padding: 0px 25px;
  border-radius: 18px;
}

@media screen and (max-width: 767px) {
  .normal a,
  .normal button {
    font-size: 17px;
    line-height: 45px;
    padding: 0px 10px;
  }
}
.sBtn a,
.sBtn button,
.sBtn span {
  font-size: 18px;
  line-height: 38px;
  padding: 0px 25px;
}

@media screen and (max-width: 767px) {
  .sBtn a,
  .sBtn button,
  .sBtn span {
    font-size: 16px;
    line-height: 30px;
    padding: 0px 12px;
  }
}
.fixedRightBtn {
  margin-bottom: 6px;
}

.fixedRightBtn-area {
  position: fixed;
  top: 0%;
  right: 0px;
  transform: translateY(50%);
  z-index: 10;
  display: none;
}

.fixedRightBtn a {
  display: block;
  text-align: center;
  width: 43px;
  color: #ffffff;
  background: #c8a973;
  padding: 10px 9px;
  box-sizing: border-box;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  font-size: 16px;
  line-height: 20px;
  transition: 0.3s ease all;
  position: relative;
  left: 0px;
  white-space: nowrap;
  word-wrap: break-word;
  writing-mode: vertical-lr;
  letter-spacing: 1px;
}

.fixedRightBtn a:hover {
  background: #b49560;
}

.fixedRightBtn a i {
  font-size: 13px;
}

.fixedRightBtn a span {
  writing-mode: vertical-lr;
}

.fixedRightBtn a b {
  text-orientation: upright;
}

.fixedRightBtn a.type2 {
  background: #cf0000;
}

.fixedRightBtn a.type2:hover {
  background: #6c0000;
}

.fixedRightBtn a.type3 {
  background: #714c0b;
}

.fixedRightBtn a.type3:hover {
  background: #604009;
}

@media screen and (max-width: 991px) {
  .fixedRightBtn a {
    width: 36px;
    padding: 15px 6px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .fixedRightBtn {
    display: block;
    width: auto;
    vertical-align: middle;
    box-sizing: border-box;
    margin-bottom: 0px;
  }
  .fixedRightBtn-area {
    top: auto;
    bottom: 0px;
    width: 100%;
    box-sizing: border-box;
    font-size: 0px;
    transform: translateY(0);
    display: block;
  }
  .fixedRightBtn-area.twoBtn .fixedRightBtn {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
  }
  .fixedRightBtn-area.twoBtn .fixedRightBtn a:first-of-type {
    width: 40%;
    border-radius: 30px 0px 0px 30px;
  }
  .fixedRightBtn-area.twoBtn .fixedRightBtn a:nth-of-type(2) {
    width: 60%;
    border-radius: 0px 30px 30px 0px;
  }
  .fixedRightBtn-area.threeBtn .fixedRightBtn {
    display: inline-block;
    width: 33.3333333333%;
  }
  .fixedRightBtn a {
    width: auto;
    padding: 20px 0px;
    font-size: 16px;
    line-height: 1;
    box-shadow: 0 3px 0 rgba(65, 65, 65, 0.25);
    writing-mode: initial;
  }
  .fixedRightBtn:nth-of-type(2) a {
    border-left: none;
  }
}
.chart {
  margin: 15px 0px;
}

.chart-area {
  font-size: 0px;
  text-align: center;
  margin: 15px auto;
  box-sizing: border-box;
  padding: 0px 24px;
}

.chart-tit {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0px;
}

.chart-tit.type2 {
  font-size: 24px;
}

.chart-tit.type2:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: #005598;
  width: 8px;
  height: 26px;
  border-radius: 4px;
  position: relative;
  top: -3px;
}

.chart-tit-bg {
  background: #ececec;
  background: #c8a973;
  border-radius: 30px;
  display: inline-block;
  padding: 4px 18px;
  color: #fff;
}

.chart-tit-bg .focusText {
  color: #ffcc00;
}

.chart-img {
  max-width: 900px;
  width: 100%;
  display: block;
  margin: 15px auto;
  box-sizing: border-box;
}

.chart-table {
  margin: 10px 0px;
  overflow-x: auto;
}

.chart-table table {
  width: 100%;
  border-spacing: 0px;
  font-size: 17px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border-collapse: collapse;
  border: none;
}

.chart-table table thead tr {
  background: #068ce8;
}

.chart-table table thead tr td {
  color: #ffffff;
  font-weight: bold;
  border-bottom: none;
}

.chart-table table thead tr td i {
  margin-left: 4px;
  cursor: pointer;
}

.chart-table table thead tr td .fa-sort {
  color: #ffffff;
}

.chart-table table thead tr td .fa-sort-down,
.chart-table table thead tr td .fa-sort-up {
  color: #333333;
}

.chart-table table tr {
  background: #ffffff;
}

.chart-table table tr td {
  text-align: center;
  color: #333333;
  padding: 12px 5px;
  border-left: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  word-break: break-all;
}

.chart-table table tr td strong {
  color: #333333;
}

.chart-table table tr td strong.color {
  color: #ff5a00;
}

.chart-table table tr td.text-left {
  text-align: left;
}

.chart-table table tr td:first-of-type {
  border-left: none;
}

.chart-table table tr td .fundName {
  color: #714c0b;
}

.chart-table table tr td .fundName strong {
  color: #3266a6;
  font-weight: normal;
}

.chart-table table tr td i.fa-solid {
  font-size: 26px;
  vertical-align: middle;
}

.chart-table table tr:nth-of-type(2n + 0) {
  background: #f2f2f2;
}

.chart-table table tr.focusTr {
  background: #fff8e8;
}

.chart-table.type2 table {
  border-spacing: 0px;
  border-radius: 0;
}

.chart-table.type2 table tr td {
  border-left: solid 1px #cacaca;
  border-bottom: none;
}

.chart-table.type2 table tr td:first-of-type {
  border-left: none;
}

.chart-table.type2 table thead tr {
  background: #303030;
}

.chart-table.type2 table thead tr a {
  color: #fff;
  border-bottom: solid 1px;
}

.chart-table.type2 table thead tr a:hover {
  border-bottom-color: transparent;
}

.chart-table.type2 table tbody tr:nth-of-type(2n + 0) {
  background: #efefef;
}

.chart-remark {
  max-width: 900px;
  width: 100%;
  display: block;
  box-sizing: border-box;
  font-size: 16px;
  margin: 10px auto;
  color: #333333;
}

.chart-remark b {
  color: #333333;
  font-weight: 900;
}

.chart-remark.warn {
  max-width: 100%;
  font-size: 20px;
  line-height: 1.1;
  font-weight: bold;
  color: #ff5a00;
}

.chart-chartAndText {
  font-size: 0px;
}

.chart-chartAndText .chart,
.chart-chartAndText .chartText {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  width: 50%;
}

.chart-chartAndText .chart-img {
  margin-top: 0px;
}

.chart-chartAndText .chartText {
  padding-left: 12px;
  font-size: 18px;
}

@media screen and (max-width: 991px) {
  .chart-area {
    margin: 15px 0px;
    padding: 0px;
  }
  .chart-area .chart {
    display: block;
    padding: 0px;
    width: auto;
    margin: 15px 0px;
  }
  .chart-area .chart + .chart {
    margin-top: 25px;
  }
  .chart-area.threeChart .chart {
    width: auto;
  }
  .chart-tit {
    font-size: 17px;
  }
  .chart-tit.type2 {
    font-size: 17px;
  }
  .chart-tit.type2:before {
    width: 6px;
    height: 17px;
    top: -1px;
  }
  .chart-img {
    max-width: 100%;
  }
  .chart-table table {
    font-size: 16px;
  }
  .chart-remark {
    font-size: 14px;
  }
  .chart-chartAndText .chart,
  .chart-chartAndText .chartText {
    display: block;
    width: auto;
  }
  .chart-chartAndText .chartText {
    padding-left: 0px;
    font-size: 16px;
  }
}
.row {
  margin: 5px -12px;
  font-size: 0px;
  text-align: center;
}

[class*="col-"] {
  box-sizing: border-box;
  padding: 12px;
  display: inline-block;
  vertical-align: top;
  font-size: 18px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  [class*="col-"] {
    font-size: 16px;
  }
}
.col-1 {
  width: 4.1666666667%;
}

.col-2 {
  width: 8.3333333333%;
}

.col-3 {
  width: 12.5%;
}

.col-4 {
  width: 16.6666666667%;
}

.col-5 {
  width: 20.8333333333%;
}

.col-6 {
  width: 25%;
}

.col-7 {
  width: 29.1666666667%;
}

.col-8 {
  width: 33.3333333333%;
}

.col-9 {
  width: 37.5%;
}

.col-10 {
  width: 41.6666666667%;
}

.col-11 {
  width: 45.8333333333%;
}

.col-12 {
  width: 50%;
}

.col-13 {
  width: 54.1666666667%;
}

.col-14 {
  width: 58.3333333333%;
}

.col-15 {
  width: 62.5%;
}

.col-16 {
  width: 66.6666666667%;
}

.col-17 {
  width: 70.8333333333%;
}

.col-18 {
  width: 75%;
}

.col-19 {
  width: 79.1666666667%;
}

.col-20 {
  width: 83.3333333333%;
}

.col-21 {
  width: 87.5%;
}

.col-22 {
  width: 91.6666666667%;
}

.col-23 {
  width: 95.8333333333%;
}

.col-24 {
  width: 100%;
}

@media screen and (max-width: 1399px) {
  .col-xl-1 {
    width: 4.1666666667%;
  }
  .col-xl-2 {
    width: 8.3333333333%;
  }
  .col-xl-3 {
    width: 12.5%;
  }
  .col-xl-4 {
    width: 16.6666666667%;
  }
  .col-xl-5 {
    width: 20.8333333333%;
  }
  .col-xl-6 {
    width: 25%;
  }
  .col-xl-7 {
    width: 29.1666666667%;
  }
  .col-xl-8 {
    width: 33.3333333333%;
  }
  .col-xl-9 {
    width: 37.5%;
  }
  .col-xl-10 {
    width: 41.6666666667%;
  }
  .col-xl-11 {
    width: 45.8333333333%;
  }
  .col-xl-12 {
    width: 50%;
  }
  .col-xl-13 {
    width: 54.1666666667%;
  }
  .col-xl-14 {
    width: 58.3333333333%;
  }
  .col-xl-15 {
    width: 62.5%;
  }
  .col-xl-16 {
    width: 66.6666666667%;
  }
  .col-xl-17 {
    width: 70.8333333333%;
  }
  .col-xl-18 {
    width: 75%;
  }
  .col-xl-19 {
    width: 79.1666666667%;
  }
  .col-xl-20 {
    width: 83.3333333333%;
  }
  .col-xl-21 {
    width: 87.5%;
  }
  .col-xl-22 {
    width: 91.6666666667%;
  }
  .col-xl-23 {
    width: 95.8333333333%;
  }
  .col-xl-24 {
    width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .col-lg-1 {
    width: 4.1666666667%;
  }
  .col-lg-2 {
    width: 8.3333333333%;
  }
  .col-lg-3 {
    width: 12.5%;
  }
  .col-lg-4 {
    width: 16.6666666667%;
  }
  .col-lg-5 {
    width: 20.8333333333%;
  }
  .col-lg-6 {
    width: 25%;
  }
  .col-lg-7 {
    width: 29.1666666667%;
  }
  .col-lg-8 {
    width: 33.3333333333%;
  }
  .col-lg-9 {
    width: 37.5%;
  }
  .col-lg-10 {
    width: 41.6666666667%;
  }
  .col-lg-11 {
    width: 45.8333333333%;
  }
  .col-lg-12 {
    width: 50%;
  }
  .col-lg-13 {
    width: 54.1666666667%;
  }
  .col-lg-14 {
    width: 58.3333333333%;
  }
  .col-lg-15 {
    width: 62.5%;
  }
  .col-lg-16 {
    width: 66.6666666667%;
  }
  .col-lg-17 {
    width: 70.8333333333%;
  }
  .col-lg-18 {
    width: 75%;
  }
  .col-lg-19 {
    width: 79.1666666667%;
  }
  .col-lg-20 {
    width: 83.3333333333%;
  }
  .col-lg-21 {
    width: 87.5%;
  }
  .col-lg-22 {
    width: 91.6666666667%;
  }
  .col-lg-23 {
    width: 95.8333333333%;
  }
  .col-lg-24 {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .col-md-1 {
    width: 4.1666666667%;
  }
  .col-md-2 {
    width: 8.3333333333%;
  }
  .col-md-3 {
    width: 12.5%;
  }
  .col-md-4 {
    width: 16.6666666667%;
  }
  .col-md-5 {
    width: 20.8333333333%;
  }
  .col-md-6 {
    width: 25%;
  }
  .col-md-7 {
    width: 29.1666666667%;
  }
  .col-md-8 {
    width: 33.3333333333%;
  }
  .col-md-9 {
    width: 37.5%;
  }
  .col-md-10 {
    width: 41.6666666667%;
  }
  .col-md-11 {
    width: 45.8333333333%;
  }
  .col-md-12 {
    width: 50%;
  }
  .col-md-13 {
    width: 54.1666666667%;
  }
  .col-md-14 {
    width: 58.3333333333%;
  }
  .col-md-15 {
    width: 62.5%;
  }
  .col-md-16 {
    width: 66.6666666667%;
  }
  .col-md-17 {
    width: 70.8333333333%;
  }
  .col-md-18 {
    width: 75%;
  }
  .col-md-19 {
    width: 79.1666666667%;
  }
  .col-md-20 {
    width: 83.3333333333%;
  }
  .col-md-21 {
    width: 87.5%;
  }
  .col-md-22 {
    width: 91.6666666667%;
  }
  .col-md-23 {
    width: 95.8333333333%;
  }
  .col-md-24 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .col-sm-1 {
    width: 4.1666666667%;
  }
  .col-sm-2 {
    width: 8.3333333333%;
  }
  .col-sm-3 {
    width: 12.5%;
  }
  .col-sm-4 {
    width: 16.6666666667%;
  }
  .col-sm-5 {
    width: 20.8333333333%;
  }
  .col-sm-6 {
    width: 25%;
  }
  .col-sm-7 {
    width: 29.1666666667%;
  }
  .col-sm-8 {
    width: 33.3333333333%;
  }
  .col-sm-9 {
    width: 37.5%;
  }
  .col-sm-10 {
    width: 41.6666666667%;
  }
  .col-sm-11 {
    width: 45.8333333333%;
  }
  .col-sm-12 {
    width: 50%;
  }
  .col-sm-13 {
    width: 54.1666666667%;
  }
  .col-sm-14 {
    width: 58.3333333333%;
  }
  .col-sm-15 {
    width: 62.5%;
  }
  .col-sm-16 {
    width: 66.6666666667%;
  }
  .col-sm-17 {
    width: 70.8333333333%;
  }
  .col-sm-18 {
    width: 75%;
  }
  .col-sm-19 {
    width: 79.1666666667%;
  }
  .col-sm-20 {
    width: 83.3333333333%;
  }
  .col-sm-21 {
    width: 87.5%;
  }
  .col-sm-22 {
    width: 91.6666666667%;
  }
  .col-sm-23 {
    width: 95.8333333333%;
  }
  .col-sm-24 {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .col-xs-1 {
    width: 4.1666666667%;
  }
  .col-xs-2 {
    width: 8.3333333333%;
  }
  .col-xs-3 {
    width: 12.5%;
  }
  .col-xs-4 {
    width: 16.6666666667%;
  }
  .col-xs-5 {
    width: 20.8333333333%;
  }
  .col-xs-6 {
    width: 25%;
  }
  .col-xs-7 {
    width: 29.1666666667%;
  }
  .col-xs-8 {
    width: 33.3333333333%;
  }
  .col-xs-9 {
    width: 37.5%;
  }
  .col-xs-10 {
    width: 41.6666666667%;
  }
  .col-xs-11 {
    width: 45.8333333333%;
  }
  .col-xs-12 {
    width: 50%;
  }
  .col-xs-13 {
    width: 54.1666666667%;
  }
  .col-xs-14 {
    width: 58.3333333333%;
  }
  .col-xs-15 {
    width: 62.5%;
  }
  .col-xs-16 {
    width: 66.6666666667%;
  }
  .col-xs-17 {
    width: 70.8333333333%;
  }
  .col-xs-18 {
    width: 75%;
  }
  .col-xs-19 {
    width: 79.1666666667%;
  }
  .col-xs-20 {
    width: 83.3333333333%;
  }
  .col-xs-21 {
    width: 87.5%;
  }
  .col-xs-22 {
    width: 91.6666666667%;
  }
  .col-xs-23 {
    width: 95.8333333333%;
  }
  .col-xs-24 {
    width: 100%;
  }
}
.item {
  padding: 70px 0px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.item.lightBlueBg {
  padding: 60px 0 0 0;
  background: #005ddd;
}

.item.fiveSpot {
  background-color: #ffffff;
  background-image: url(../images/player-3.png), url(../images/bg2.png);
  background-position:
    75% bottom,
    center top;
  background-repeat: no-repeat, no-repeat;
  background-size:
    800px 683px,
    1920px 914px;
  transition: all 1s ease;
}

.item.blue {
  color: #fff;
  background: #3266a6;
}

.item.blue .tit-type1 {
  color: #fcd2cc;
}

.item.blue .tit-type1-content {
  background: none;
  border-color: #fcd2cc;
}

.item.blue .linkText {
  color: #fcd2cc;
}

.item.spot1 {
  background: #dee8f2 url(../images/bg9.png) center bottom no-repeat;
}

.item.spot1 > .bg3 {
  display: block;
  width: 400px;
  transition: all 1s ease;
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 2;
}

.item.spot2 {
  background: #f2eaeb;
}

.item.spot2 > .bg4 {
  display: block;
  width: 400px;
  height: auto;
  transition: all 1s ease;
  position: absolute;
  left: 0px;
  bottom: 0px;
  transform: translateX(-10%);
  z-index: 0;
  aspect-ratio: 500/961;
}

.item.spot2 > .bg4 > img {
  aspect-ratio: 500/961;
}

.item.spot3 {
  padding-bottom: 0px;
  background: #dee8f2 url(../images/bg5.png) bottom center no-repeat;
}

.item.spot3 > .container .bg6 {
  display: block;
  margin: 0px auto;
  width: 100%;
  max-width: 700px;
}

.item.spot3 > .container .bg6 > img {
  width: 100%;
}

.item.spot4 {
  background: #f2eaeb url(../images/bg9.png) center bottom no-repeat;
}

.item.spot4 > .bg7 {
  display: block;
  width: 350px;
  transition: all 1s ease;
  position: absolute;
  left: 0px;
  bottom: 0px;
  transform: translateX(-10%);
  z-index: 2;
}

.item.spot5 {
  padding-bottom: 0px;
  background: #dee8f2;
}

.item.spot5 .bg8 {
  display: block;
  margin: 0px auto;
  width: 100%;
  position: absolute;
  right: 0px;
  bottom: 0px;
  max-width: 360px;
  z-index: 2;
}

.item.spot5 .bg8 > img {
  width: 100%;
}

.item.strike {
  background: #ffffff url(../images/strike-bg.png) top center no-repeat;
  background-size: 1920px 978px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.item.strike > img.strike {
  width: 100%;
  max-width: 40%;
}

.item.strike > div {
  width: 100%;
  max-width: 60%;
}

.item.lozenge {
  background: #e8e8e8 url(../images/bgTattoo.jpg) top left repeat;
}

@media screen and (max-width: 1399px) {
  .item.spot1 > .bg3 {
    width: 350px;
  }
  .item.spot2 > .bg4 {
    width: 300px;
    transform: translate(-30%, 0%);
    z-index: 2;
    bottom: 0px;
  }
  .item.spot4 > .bg7 {
    width: 300px;
    transform: translateX(-30%);
  }
  .item.spot5 .bg8 {
    right: 0%;
    max-width: 250px;
  }
}
@media screen and (max-width: 991px) {
  .item.fiveSpot {
    background-position:
      90% bottom,
      center top;
    background-size:
      600px 512px,
      1920px 914px;
  }
  .item.spot1 > .bg3 {
    width: 300px;
    right: -5%;
  }
  .item.spot2 > .bg4 {
    display: none;
  }
  .item > .container .bg6 {
    max-width: 450px;
  }
  .item.spot4 > .bg7 {
    width: 200px;
    transform: translateX(-40%);
  }
  .item.spot5 .bg8 {
    right: 0%;
    max-width: 150px;
  }
  .item.strike {
    background-size: 1300px 662px;
  }
  .item.strike > img.strike {
    max-width: 48%;
  }
  .item.strike > div {
    max-width: 52%;
  }
}
@media screen and (max-width: 767px) {
  .item {
    padding: 40px 0px;
  }
  .item.lightBlueBg {
    padding: 24px 0px;
  }
  .item.fiveSpot {
    background-position:
      120% bottom,
      center top;
    background-size:
      400px 342px,
      1920px 914px;
  }
  .item.spot1 > .bg3 {
    width: 200px;
    right: -5%;
  }
  .item.spot1 > .bg3 img {
    display: none;
  }
  .item.spot2 > .bg4 {
    width: 200px;
    bottom: 0px;
    transform: translateY(55%);
  }
  .item.spot3 {
    padding-bottom: 0px;
  }
  .item.spot3 > .container .bg6 {
    max-width: 70%;
  }
  .item.spot4 > .bg7 {
    width: 160px;
    transform: translateX(-45%);
  }
  .item.spot4 > .bg7 img {
    display: none;
  }
  .item.spot5 .bg8 {
    right: 0%;
    max-width: 80px;
  }
  .item.gift {
    padding-bottom: 40px;
  }
  .item.strike {
    background: #ffffff url(../images/strike-bg-m.png) top center no-repeat;
    background-size: 780px 780px;
    flex-direction: column;
    justify-content: center;
  }
  .item.strike > img.strike {
    width: 100%;
    max-width: 90%;
  }
  .item.strike > div {
    width: 100%;
    max-width: 100%;
    height: 390px;
  }
}
@media screen and (max-width: 480px) {
  .item.fiveSpot {
    background-position:
      140% bottom,
      center top;
    background-size:
      300px 256px,
      1920px 914px;
  }
  .item.spot3 {
    padding-bottom: 0px;
  }
  .item.spot3 > .container .bg6 {
    max-width: 90%;
  }
  .item.strike {
    background-size: 480px 480px;
  }
  .item.strike > img.strike {
    width: 100%;
    max-width: 90%;
  }
  .item.strike > div {
    width: 100%;
    max-width: 100%;
    height: 200px;
  }
}
.tit {
  letter-spacing: 0.1em;
  font-family: "Noto Sans TC", Arial, sans-serif;
  font-weight: 900 !important;
}

.tit-type1 {
  margin: 30px 0;
  font-size: 42px;
  line-height: 1.4;
  color: #001a4f;
  position: relative;
}

.tit-type1 .focus {
  color: #ff5a00;
  font-style: normal;
}

.tit-type1 .sTit {
  font-size: 22px;
  line-height: 1.6;
  color: #444;
  font-weight: normal;
}

.tit-type1 .content {
  display: inline-block;
  border-radius: 15px;
  color: #333;
  background: #f6c35a;
  padding: 3px 20px;
}

.tit-type1-content {
  background: #fff;
  display: inline-block;
  border: solid 2px #7f9abf;
  padding: 5px 30px;
}

.tit-type1 .hasTag {
  position: relative;
  margin-top: 42px;
  display: inline-block;
}

.tit-type1 .hasTag .tag {
  position: absolute;
  top: -42px;
  left: 0;
  color: #fff;
  background: #cf0000;
  border-radius: 5px;
  font-size: 21px;
  font-weight: bold;
  padding: 3px 11px;
}

.tit-type1 .hasTag .tag:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 13px;
  border-top: solid 5px #cf0000;
  border-left: solid 6px transparent;
  border-right: solid 6px transparent;
}

.tit-type1-tag {
  display: inline-block;
  color: #fff;
  background: #ff532f;
  border-radius: 0 30px;
  padding: 10px 24px;
}

.tit-type1.hasBubble {
  margin-top: 57px;
}

.tit-type1-bubble {
  font-size: 48px;
  font-size: 40px;
  position: absolute;
  left: 0;
  top: calc(-100% - 15px);
  background: #fff;
  border-radius: 10px;
  padding: 2px 15px;
}

.tit-type1-bubble:before {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 28px;
  border-top: solid 14px #fff;
  border-left: solid 18px transparent;
  border-right: solid 18px transparent;
}

.tit-type1-bubble-outside {
  display: inline-block;
  position: relative;
}

.tit-type1.blue {
  color: #3266a6;
}

.tit-type1.white {
  color: #ffffff;
}

.tit-type1.white .focus {
  color: #ffde00;
}

.tit-type2 {
  margin: 16px 0px 8px;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
  color: #3c3935;
  position: relative;
  display: inline-block;
  border-radius: 60px;
  border: 5px solid #ff5a00;
  padding: 0.3em 1em;
}

.tit-type2-tag {
  display: inline-block;
  color: #fff;
  background: #ff5a00;
  padding: 3px 10px;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 24px;
  border-radius: 15px 0px;
  margin-right: 5px;
}

.tit-type2 .content {
  display: inline-block;
  border-radius: 15px;
  background: #7e5847;
  color: #fff;
  padding: 5px 15px;
}

.tit-type3 {
  margin: 16px 0px 16px;
  font-size: 32px;
  line-height: 1.2;
  color: #333333;
}

.tit-type3 .focus {
  color: #ff5a00;
  font-weight: 900 !important;
  font-style: normal;
}

@media screen and (max-width: 767px) {
  .tit {
    letter-spacing: 0.05em;
  }
  .tit-type1 {
    font-size: 28px;
    margin: 0.5em 0;
    letter-spacing: 0px;
  }
  .tit-type1 .sTit {
    font-size: 17px;
  }
  .tit-type1 .hasTag {
    margin-top: 36px;
  }
  .tit-type1 .hasTag .tag {
    top: -35px;
    font-size: 18px;
  }
  .tit-type1-content {
    padding: 5px 10px;
  }
  .tit-type1 .content {
    padding: 3px 15px;
  }
  .tit-type1-bubble {
    font-size: 22px;
  }
  .tit-type2 {
    font-size: 16px;
    padding: 0.3em 1em;
  }
  .tit-type2-tag {
    font-size: 20px;
  }
  .tit-type3 {
    font-size: 24px;
  }
}
.subtit-type1 {
  margin: 0 auto 15px;
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  position: relative;
  display: inline-block;
}

.subtit-type1:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #c8a973;
  position: absolute;
  left: 0;
  bottom: 0;
}

.mvBox {
  margin: 0 auto 20px;
  padding: 0;
  position: relative;
  text-align: center;
}

.mvBox-tit {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.4;
  color: #ffffff;
  display: inline-block;
  padding: 15px 0;
}

.mvBox-tit:before {
  content: "";
  display: block;
}

.mvBox-video {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 40px auto 0 auto;
}
.swiper-slide img{
   margin: 40px auto 0 auto;
}


.mvBox-video embed,
.mvBox-video iframe,
.mvBox-video object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gap {
  height: 48px;
  margin: 0 auto;
  padding: 0;
  display: block;
  clear: both;
}

@media screen and (max-width: 767px) {
  .gap {
    height: 24px;
  }

  .mvBox-tit {
    font-size: 17px;
  }
}
.item.disinfo {
  background-color: #f1f9ff;
  position: relative;
  margin: 0;
  padding: 0;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
}

.discount {
  display: inline-block;
  background-color: #ffffff;
  box-sizing: border-box;
  border-radius: 30px;
  padding: 24px;
  margin: 0;
  position: relative;
  box-shadow: 0 8px 0 #cfe9ff;
  word-break: break-all;
}

@media screen and (max-width: 991px) {
  .discount {
    margin: 0 20px;
  }
}
.cardList {
  display: flex;
  margin: 0 auto;
  padding: 0;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  list-style: none;
}

.cardList > li {
  margin: 0 auto 30px;
}

.cardList > li .card-img {
  width: 80%;
  margin: 0 auto 8px;
  padding: 0;
}

.cardList > li .card-img img {
  max-width: 100px;
}

.cardList > li .card-img.bg {
  width: auto;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 50px;
  display: inline-block;
}

.cardList > li .card-tit {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #3266a6;
}

.cardList > li .card-tit.gold {
  color: #c8a973;
}

.cardList > li .card-tit strong {
  position: relative;
}

.cardList > li .card-tit strong .tag {
  width: 150%;
  position: absolute;
  z-index: 2;
  left: 40px;
  top: calc(-100% - 8px);
  background-color: #3266a6;
  color: #ffffff;
  font-size: 14px;
  padding: 6px;
  border-radius: 6px;
  font-weight: normal;
  animation-name: shake;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.cardList > li .card-tit strong .tag:before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 10px;
  border-top: solid 8px #3266a6;
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
}

.cardList > li.padd {
  padding: 16px;
}

.cardList.two > li {
  width: 45%;
}

@media screen and (max-width: 767px) {
  .cardList.two > li {
    width: 100%;
  }
}
.cardList.three > li {
  width: 30%;
}

@media screen and (max-width: 767px) {
  .cardList.three > li {
    width: 100%;
  }
}
.cardList.four > li {
  width: 24%;
}

@media screen and (max-width: 991px) {
  .cardList.four > li {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .cardList {
    flex-direction: column;
  }
  .cardList > li {
    margin: 0 auto 16px;
  }
}
.prod {
  position: relative;
  background-color: #f1f9ff;
  background: url(../images/prodbg1.jpg) center bottom no-repeat;
  background-attachment: fixed;
}

.prod.prod2 {
  position: relative;
  background-color: #f1f9ff;
  background: url(../images/prodbg2.jpg) left bottom no-repeat;
  background-attachment: fixed;
}

@media screen and (max-width: 991px) {
  .prod {
    background: none;
  }
  .prod.prod2 {
    background: none;
  }
}
.prodList {
  list-style: none;
  display: block;
  margin: 24px auto 36px;
  padding: 0px;
  background-color: #fff;
  border-radius: 16px;
  text-align: left;
  box-sizing: border-box;
  overflow: hidden;
}

.prodList-li {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  border-top: solid 1px #ddd;
  padding: 20px;
  transition: all 1s ease;
}

.prodList-li-name {
  flex-grow: 1;
  font-size: 20px;
  line-height: 1.4;
  font-weight: bold;
  color: #3266a6;
}

.prodList-li-name a,
.prodList-li-name strong {
  color: #333333;
  font-weight: normal;
}

.prodList-li-name .intro {
  display: inline-block;
  color: #068ce8;
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: normal;
}

.prodList-li-name .intro.rr5:after {
  content: " | RR5";
}

.prodList-li-name .intro.rr4:after {
  content: " | RR4";
}

.prodList-li-name .intro.rr3:after {
  content: " | RR3";
}

.prodList-li-name .intro.rr2:after {
  content: " | RR2";
}

.prodList-li-name .intro.rr1:after {
  content: " | RR1";
}

.prodList-li-name .type {
  display: inline-block;
  color: #ffffff;
  background-color: #001a4f;
  font-size: 16px;
  padding: 0.5em 1em;
  border-radius: 8px;
  margin: 8px 8px 8px 0px;
  font-weight: normal;
}

.prodList-li-name i.fa-circle-info {
  cursor: pointer;
  color: #c8a973;
}

.prodList-li-name .doc {
  font-size: 18px;
  line-height: 1.4;
  color: #788098;
  margin: 8px 0px 0px;
  font-weight: normal;
}

.prodList-li.hide {
  display: none;
}

.prodList-li .btnArea {
  width: 260px;
  text-align: right;
  white-space: nowrap;
}

.prodList-li:first-child {
  border: 0;
}

.prodList-li:last-child {
  padding: 20px;
}

.prodList-li-warn {
  display: none;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
  margin: 0px;
  padding: 16px 16px 16px 0px;
  box-sizing: border-box;
}

.prodList-li:hover {
  box-shadow:
    0px 4px 4px rgba(0, 0, 0, 0.1),
    0px -4px 4px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
  .prodList-li {
    display: block;
  }
  .prodList-li .btnArea {
    width: 100%;
  }
}
.ruleList {
  list-style: disc;
  margin: 0 auto;
  padding: 0 20px 20px;
  text-align: left;
}

.ruleList-li {
  font-size: 18px;
  line-height: 1.6;
  color: #333333;
  margin: 0 auto;
  padding: 0 0 8px;
}

.ruleList-li .focus {
  color: #cf0000;
  font-weight: 900;
}

.ruleList-li .item {
  font-weight: 900;
}

.ruleList-li .item:after {
  content: "：";
}

#moreFilterBtn.btn span:after {
  content: "更多選項+";
}

#moreFilterBtn.btn.act span:after {
  content: "收合-";
}

.topicNav {
  list-style: none;
  box-sizing: border-box;
  margin: 0px auto;
  padding: 0px;
  display: block;
  text-align: center;
  overflow-x: auto;
  letter-spacing: 0px;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.topicNav > li {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  padding: 0.5em 1em !important;
  margin: 0px 5px 10px;
  font-size: 18px;
  line-height: 1.2;
  border-radius: 30px;
  border: 2px solid #c8a973;
  white-space: nowrap;
}

.topicNav > li.act {
  background-color: #c8a973;
  color: #ffffff;
}

.tabBox {
  width: 100%;
  overflow: hidden;
  height: 0px;
}

.tabBox.act {
  height: 100%;
}

.infoslickArea {
  width: auto;
  list-style: none;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
  margin: 0px auto 36px;
  padding: 24px 0px;
  position: relative;
}

.infoslickArea article {
  float: left;
  margin: 0px 36px;
  padding: 20px 0px;
  background-color: #ffffff;
  border-radius: 25px;
}

.infoslickArea article img {
  max-width: 100%;
  width: 100%;
  display: block;
  margin: 0px auto;
}

.infoslickArea:after {
  content: "";
  display: block;
  clear: both;
}

.docslickArea {
  width: auto;
  list-style: none;
  width: 100%;
  overflow: hidden;
  text-align: center;
  padding: 24px -36px;
  margin: 0px auto 36px;
  position: relative;
}

.docslickArea article {
  float: left;
  margin: 0px;
  padding: 0px;
}

.docslickArea article .articleCard {
  margin: 24px 36px;
  padding: 16px;
  border: 1px solid #b49560;
  border-radius: 6px;
  display: block;
  text-decoration: none;
}

.docslickArea article .articleCard-img {
  display: block;
  margin: 0px auto 16px;
  overflow: hidden;
  position: relative;
}

.docslickArea article .articleCard-img img {
  border-radius: 6px;
  max-width: 100%;
  width: 100%;
  transform: scale(1);
  transform-origin: center, center;
  transition: all 1s ease-in-out;
}

.docslickArea article .articleCard-img-tag {
  position: absolute;
  left: 0px;
  top: 0px;
  display: inline-block;
  padding: 3px 6px;
  background-color: #b49560;
  color: #ffffff;
  font-size: 14px;
  z-index: 3;
  border-bottom-right-radius: 10px;
}

.docslickArea article .articleCard-date {
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
  color: #717171;
  margin-bottom: 8px;
}

.docslickArea article .articleCard-offer {
  padding-left: 8px;
}

.docslickArea article .articleCard-tit {
  font-size: 18px;
  line-height: 1.4;
  text-align: left;
  font-weight: normal;
  color: #333333;
}

.docslickArea article .articleCard:hover-tit {
  color: #6c0000;
}

.docslickArea article:hover .articleCard-img img {
  transform: scale(1.2);
}

.docslickArea article:hover .articleCard-tit {
  color: #6c0000;
}

.docslickArea:after {
  content: "";
  display: block;
  clear: both;
}

.pushfund-nav {
  list-style: none;
  box-sizing: border-box;
  margin: 0px auto;
  padding: 0px;
  display: block;
  text-align: center;
  overflow-x: auto;
  letter-spacing: 0px;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.pushfund-nav > li {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  padding: 0.5em 1em !important;
  margin: 0px 5px 10px;
  font-size: 18px;
  line-height: 1.2;
  border-radius: 30px;
  border: 2px solid #c8a973;
  white-space: nowrap;
}

.pushfund-nav > li.act {
  background-color: #c8a973;
  color: #ffffff;
}

.pushfund-box {
  display: none;
}

.pushfund-box.box0 {
  display: block;
}

.futureArea {
  margin: 0px auto;
  padding: 24px;
}

.futureArea-nav {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
  letter-spacing: 0px;
  font-size: 0px;
  padding-left: 0px;
}

.futureArea-nav > li {
  box-sizing: border-box;
  margin: 0px 24px;
}

@media screen and (max-width: 991px) {
  .futureArea-nav {
    flex-direction: column;
  }
  .futureArea-nav > li {
    width: 100%;
    margin: 0px 0px 24px;
  }
}
.key-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 750px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-end;
  background: url(../images/bg1_pc.png) center bottom no-repeat;
  background-size: 1920px 750px;
  overflow: hidden;
  transition: all 1s ease;
}

.key-area > .player1 {
  position: relative;
  aspect-ratio: 719/685;
  display: block;
  width: auto;
  max-width: 719px;
  margin: 0px 30px;
  margin-left: -50px;
  transition: all 1s ease;
}

.key-area > .player2 {
  position: relative;
  aspect-ratio: 719/685;
  display: block;
  width: auto;
  max-width: 719px;
  margin: 0px 30px;
  transition: all 1s ease;
}

.key-area .ball {
  aspect-ratio: 1/1;
  display: block;
  max-width: 440px;
  animation-name: kvScale, shake;
  animation-duration: 1s, 2s;
  animation-iteration-count: 1, infinite;
  animation-timing-function: ease-out, cubic-bezier(0.17, 0.67, 0.83, 0.67);
  animation-delay: 0s, 1s;
  transform: scale(0);
  opacity: 0;
  animation-fill-mode: forwards;
}

.key-area .ball-area {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.key-area .ball-area > strong {
  content: "中租靈活扣";
  position: absolute;
  z-index: 0;
}

@media screen and (max-width: 1399px) {
  .key-area > .player1 {
    max-width: 600px;
    margin: 0px 30px;
    margin-left: -50px;
  }
  .key-area > .player2 {
    max-width: 600px;
    margin: 0px 30px;
  }
  .key-area .ball {
    max-width: 420px;
  }
}
@media screen and (max-width: 1199px) {
  .key-area > .player1 {
    max-width: 600px;
    margin: 0px;
    margin-left: -100px;
  }
  .key-area > .player2 {
    max-width: 600px;
    margin: 0px;
  }
  .key-area .ball {
    max-width: 380px;
  }
}
@media screen and (max-width: 991px) {
  .key-area {
    max-height: 700px;
    background: url(../images/bg1_m.png) center top no-repeat;
  }
  .key-area > .player1 {
    max-width: 400px;
    margin: 0px;
    margin-left: -100px;
  }
  .key-area > .player2 {
    max-width: 400px;
    margin: 0px;
  }
  .key-area .ball {
    max-width: 360px;
  }
}
@media screen and (max-width: 767px) {
  .key-area > .player1 {
    max-width: 50%;
    margin: 0px;
    margin-left: -100px;
  }
  .key-area > .player2 {
    max-width: 50%;
    margin-left: -100px;
  }
  .key-area .ball {
    max-width: 320px;
  }
}
@media screen and (max-width: 480px) {
  .key-area {
    max-height: 480px;
  }
  .key-area > .player1 {
    max-width: 50%;
    margin: 0px;
    margin-left: -50px;
  }
  .key-area > .player2 {
    max-width: 50%;
    margin-left: 0;
  }
  .key-area .ball {
    max-width: 260px;
  }
}
@keyframes kvScale {
  0% {
    transform: scale(0) rotate(330deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(-5deg);
    opacity: 1;
  }
}
@keyframes shake {
  0% {
    transform: translate(0px, 0px) rotate(-5deg);
  }
  10% {
    transform: translate(-10px, -10px) rotate(-5deg);
  }
  20% {
    transform: translate(0px, 0px) rotate(-5deg);
  }
  30% {
    transform: translate(10px, -10px) rotate(-5deg);
  }
  40% {
    transform: translate(0px, 0px) rotate(-5deg);
  }
  50% {
    transform: translate(-10px, 10px) rotate(-5deg);
  }
  60% {
    transform: translate(0px, 0px) rotate(-5deg);
  }
  70% {
    transform: translate(10px, -10px) rotate(-5deg);
  }
  80% {
    transform: translate(0px, 0px) rotate(-5deg);
  }
  90% {
    transform: translate(10px, -10px) rotate(-5deg);
  }
  to {
    transform: translate(0px, 0px) rotate(-5deg);
  }
}
.spotList {
  list-style: none;
  padding: 0px;
  margin: 24px 0px;
}

.spotList > li {
  display: block;
  position: relative;
  padding: 0px 0px 0px 68px;
  margin: 8px 0px 24px;
  color: #001a4f;
  box-sizing: border-box;
  line-height: 1;
}

.spotList > li:before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background: url(../images/spot-icon.svg) center center no-repeat;
  background-size: 60px 60px;
  position: absolute;
  left: 0px;
  top: 0px;
}

.spotList > li > span {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
  display: inline-block;
}

.spotList > li > b {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  color: #ffffff;
  background-color: #ff5a00;
  display: inline-block;
  padding: 4px;
  border-radius: 6px;
  margin-left: 8px;
}

.spotList > li > h4 {
  font-size: 26px;
  line-height: 1.6;
  letter-spacing: 1px;
  font-weight: 900;
  text-shadow:
    2px 2px 4px rgba(255, 255, 255, 0.8),
    -2px -2px 4px rgba(255, 255, 255, 0.8),
    -2px 2px 4px rgba(255, 255, 255, 0.8),
    2px -2px 4px rgba(255, 255, 255, 0.8),
    4px 4px 6px rgba(255, 255, 255, 0.8),
    -4px -4px 6px rgba(255, 255, 255, 0.8),
    -4px 4px 6px rgba(255, 255, 255, 0.8),
    4px -4px 6px rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 991px) {
  .spotList > li {
    padding: 0px 0px 0px 48px;
    margin: 8px 0px 24px;
  }
  .spotList > li:before {
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
  }
  .spotList > li > span {
    font-size: 16px;
  }
  .spotList > li > b {
    font-size: 14px;
  }
  .spotList > li > h4 {
    font-size: 20px;
  }
}
.subNav1 {
  display: flex;
  margin: 16px auto 0px;
  padding: 8px 0px;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}

.subNav1 > span {
  font-size: 28px;
  color: #001a4f;
  line-height: 1;
  padding: 0.5em 1.5em;
  background-color: transparent;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
}

.subNav1 > span.act {
  color: #ffffff;
  font-weight: 900;
  background-color: #001a4f;
}

@media screen and (max-width: 991px) {
  .subNav1 > span {
    font-size: 20px;
  }
}
.subNav1 > strong {
  font-size: 20px;
  color: #ffffff;
  line-height: 1;
  padding: 0.5em 1.5em;
  margin: 0px 8px;
  background-color: #9eacb7;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
}

.subNav1 > strong.act {
  color: #ffffff;
  font-weight: 900;
  background-color: #001a4f;
}

@media screen and (max-width: 991px) {
  .subNav1 > strong {
    font-size: 18px;
  }
}
.contentBox {
  display: none;
  background-color: #ffffff;
  margin: 24px auto;
  padding: 24px;
  box-sizing: border-box;
  transition: all 1s ease;
  border-radius: 16px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.contentBox.show {
  display: block;
}

.contentBox.mb {
  margin-bottom: 0px;
}

@media screen and (max-width: 991px) {
  .contentBox {
    margin: 16px auto;
    padding: 16px;
  }
}
.flink {
  display: block;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 1.6;
  font-weight: normal;
  color: #333333;
  text-align: left;
  padding: 16px;
  transition: all 1s ease;
  transform: translateY(0px);
  background-color: #ffffff;
  border-radius: 16px;
}

.flink > .icon {
  width: 100%;
  max-width: 120px;
  margin: 0 auto 8px;
}

.flink > .btnBox {
  width: auto;
  text-align: center;
  display: block;
  padding-top: 8px;
  box-sizing: border-box;
}

.flink > .btnBox > .btn {
  width: auto;
  margin: 0px auto;
  display: inline-block;
  padding: 0.3em 0.8em;
  border: 3px solid #0168b7;
  border-radius: 60px;
}

.flink:hover {
  transform: translateY(-20px);
}

@media screen and (max-width: 991px) {
  .flink {
    text-align: center;
  }
}
/*# sourceMappingURL=main.css.map */

/* --影音區------------------------------------- */

.cardList_video {
  width: 90%;

  max-width: 1400px;

  display: flex;

  margin: 0 auto;

  padding: 30px 0 0 0;

  align-items: stretch;

  justify-content: space-between;

  flex-direction: row;

  flex-wrap: nowrap;

  list-style: none;
}

.video_pc {
  display: block;
}

.video_mobile {
  display: none;
}

.cardList_video > li {
  width: 100%;

  margin: 0 auto;
}

.cardList_video.two > li {
  width: 45%;
}

.cardList_video.three > li {
  width: 30%;
}

@media screen and (max-width: 1079px) {
  .cardList_video {
    flex-direction: column;
  }

  .cardList_video.two > li {
    width: 95%;
  }

  .cardList_video.three > li {
    width: 80%;
  }
}
