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

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* 用法範例
    @include maxWidth-xxl {
        margin: 20px;
    }
*/
body {
  padding: 0px;
  margin: 0px;
  font-family: Arial, "Noto Sans TC", sans-serif;
  color: #3a3a3a;
  font-size: 18px;
  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: #c20f2f;
  color: #fff;
}
::selection {
  background: #c20f2f;
  color: #fff;
}

a {
  text-decoration: none;
}

img {
  outline: none;
  border: none;
}

p {
  margin: 15px 0px;
}

ul,
ol {
  margin: 15px 0px;
  padding-left: 20px;
}
ul li,
ol li {
  padding-bottom: 3px;
}
ul li:last-of-type,
ol li:last-of-type {
  padding-bottom: 0px;
}
ul li ul,
ul li ol,
ol li ul,
ol li ol {
  margin: 3px 0px 0px;
}
ul.chineseNum,
ol.chineseNum {
  list-style: none;
  padding-left: 0;
}
ul.chineseNum li,
ol.chineseNum li {
  text-indent: -47px;
  padding-left: 47px;
}

.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;
}

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

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

.inputStyle, input[type=text], input[type=password], input[type=tel], input[type=search], input[type=number], input[type=email] {
  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;
  max-width: 1140px;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .container {
    margin: 0px 65px;
    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;
}

@media screen and (max-width: 991px) {
  .pcShow {
    display: none !important;
  }
  .mobileShow {
    display: initial !important;
  }
}
.fontAwesomeIcon, .slick-arrow {
  display: inline-block;
  font: normal normal normal 14px/1 "Font Awesome 6 Pro";
  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;
}

@keyframes shake {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
body {
  position: relative;
  width: 100%;
  background-color: #f1f9ff;
}
body.fixedBody {
  overflow-y: hidden;
}

::-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: #800000;
  /*border-radius: 20px;*/
}

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

.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 #800000 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
.loading.show {
  display: flex;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.header {
  width: 100%;
  height: 80px;
  top: 0;
  left: 0;
  position: fixed;
  padding: 0;
  background-color: #ffffff;
  z-index: 100;
  -webkit-box-shadow: 0px 1px 2px #cccccc;
  box-shadow: 0px 1px 2px #cccccc;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.header-area {
  width: 100%;
  height: 80px;
  margin: 0px;
  position: relative
}

nav {
  width: 100%;
  height: 80px;
  position: relative;
  color: #ecedee;
  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;
  padding: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

nav .logo {
  display: block;
  width: 320px;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  margin-left: 20px
}

nav .logo img,
nav .logo picture {
  display: block;
  width: 100%
}

nav .logo img img,
nav .logo picture img {
  display: block;
  width: 100%
}

@media screen and (max-width:840px) {
  nav .logo {
      width: 120px;
      margin-left: 10px
  }
}

#main-menu {
  position: relative;
  text-align: right;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block
}

#main-menu .toggle {
  display: none;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 30px;
  right: 20px
}

#main-menu .toggle div {
  width: 30px;
  height: 3px;
  background: #9e9e9e;
  margin: 6px 0;
  -webkit-transition: 0.3s ease all;
  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 {
  position: relative;
  list-style: none;
  text-align: right;
  letter-spacing: 0;
  font-size: 0;
  margin: 0;
  top: 0;
  right: 0
}

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

#main-menu #drop~ul li a,
#main-menu #drop~ul li span {
  font-size: 20px;
  cursor: pointer;
  display: block;
  text-align: center;
  background: #ffffff;
  color: #3C3C3C;
  padding: 0px 15px 0px 0px
}

#main-menu #drop~ul li a.act,
#main-menu #drop~ul li span.act {
  color: #005598
}

#main-menu #drop~ul li .subNav {
  position: absolute;
  width: auto;
  right: 16px;
  top: 55px;
  background-color: #ffffff;
  list-style: none;
  display: none;
  z-index: 120;
  -webkit-transform: translateY("100%");
  transform: translateY("100%");
  padding: 0px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border: 1px solid #cccccc;
  border-top: none
}

#main-menu #drop~ul li .subNav li {
  display: block;
  text-align: left;
  padding: 5px 10px;
  font-size:16px;
}

#main-menu #drop~ul li .subNav li a {
  text-align: left;
  white-space: nowrap;
}

#main-menu #drop~ul:active {
  display: block
}

@media screen and (max-width:1199px) {
  #main-menu #drop~ul {
      min-width: 120px;
      position: absolute;
      top: 80px;
      right: -200px;
      border-radius: 8px;
      border: 1px solid #cccccc;
      background: #ffffff;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      -webkit-transition: all 0.3s ease;
      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: 16px;
      text-align: center;
      color: #3C3C3C;
      padding: 20px 5px;
      border-top: 1px solid #cccccc;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      cursor: pointer
  }

  #main-menu #drop~ul li a.act,
  #main-menu #drop~ul li span.act {
      color: #005598
  }

  #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 {
      position: relative;
      width: auto;
      left: 0px;
      top: -20px;
      z-index: 1;
      -webkit-transform: translateY("0px");
      transform: translateY("0px");
      border-bottom-left-radius: 0px;
      border-bottom-right-radius: 0px;
      border: none
  }

  #main-menu #drop~ul li .subNav li {
      display: block;
      text-align: center;
      padding: 0px
  }

  #main-menu #drop~ul li .subNav li a {
      padding: 5px;
      text-align: center;
      border: none
  }

  #main-menu #drop:checked~ul {
      min-width: 180px;
      padding: 0 10px;
      top: 80px;
      right: 20px;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease
  }
}

@media screen and (max-width:1199px) and (max-width:1199px) {
  #main-menu #drop:checked~ul {
      display: 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) {
      -webkit-transform-origin: center center;
      transform-origin: center center;
      background: #ee5c45
  }

  #main-menu #drop:checked~.toggle div:first-of-type {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      top: 9px
  }

  #main-menu #drop:checked~.toggle div:nth-of-type(2) {
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg)
  }

  #main-menu #drop:checked~.toggle div:nth-of-type(3) {
      opacity: 0
  }
}

.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 {
  
}
@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;
  }
}

.btn {
  display: inline-block;
  vertical-align: top;
  padding: 8px 0px;
}
.btnArea {
  text-align: center;
  font-size: 0px;
  margin: 10px 0px;
}
.btnArea.twoBtn .btn, .btnArea.threeBtn .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: #800000;
  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 1.5em;
}
.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.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.twoBtn .btn, .btnArea.threeBtn .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: #ff725c;
  padding: 10px 9px;
  box-sizing: border-box;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  font-size: 18px;
  line-height: 20px;
  transition: 0.3s ease all;
  position: relative;
  left: 0px;
}
.fixedRightBtn a:hover {
  background: #ee5c45;
}
.fixedRightBtn a i {
  font-size: 13px;
}
.fixedRightBtn a span {
  writing-mode: vertical-lr;
}
.fixedRightBtn a.type2 {
  background: #3266a6;
}
.fixedRightBtn a.type2:hover {
  background: #295b98;
}
.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: 16px;
  }
}
@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: 90%;
    margin: 0 auto;
    padding-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
  }
  .fixedRightBtn-area.twoBtn .fixedRightBtn a:nth-of-type(1) {
    width: 50%;
    border-radius: 30px 0px 0px 30px;
  }
  .fixedRightBtn-area.twoBtn .fixedRightBtn a:nth-of-type(2) {
    width: 50%;
    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);
  }
  .fixedRightBtn a span {
    writing-mode: initial;
  }
  .fixedRightBtn:nth-of-type(2) a {
    border-left: none;
  }
}

.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;
  }
}

.chart {
  margin: 15px 0px;
}
.chart-area {
  font-size: 0px;
  text-align: center;
  margin: 15px -30px;
}
.chart-area .chart {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  width: 50%;
  padding: 0px 30px;
  margin: 0px;
}
.chart-area.threeChart .chart {
  width: 33.3333333333%;
}
.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: 800px;
  width: 100%;
  display: block;
  margin: 15px auto;
  border-radius: 20px;
  box-shadow: 0 8px 0 #cfe9ff;
}
.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: #ee5c45;
}
.chart-table table thead tr td {
  color: #fff;
  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-up, .chart-table table thead tr td .fa-sort-down {
  color: #333333;
}
.chart-table table tr {
  background: #fff;
}
.chart-table table tr td {
  text-align: center;
  color: #353535;
  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: #ff725c;
}
.chart-table table tr td.text-left {
  text-align: left;
}
.chart-table table tr td:nth-of-type(1) {
  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:nth-of-type(1) {
  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 {
  font-size: 14px;
  margin: 10px 0px;
  color: #666;
}
.chart-remark b, .chart-remark strong {
  color: #333;
}
.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: 767px) {
  .chart-area {
    margin: 15px 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-table table {
    font-size: 16px;
  }
  .chart-remark {
    font-size: 12px;
  }
  .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;
}
.item .container {
  position: relative;
}
.item.lightBlueBg {
  background: #edf7ff;
}
.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.lozenge {
  background: #e8e8e8 url(../images/bgTattoo.jpg) top left repeat;
}
.item.pinkBg {
  background: #f7efec;
}
.item.pinkBg2 {
  background: #ffe4e3;
}
@media screen and (max-width: 767px) {
  .item {
    padding: 40px 0px;
  }
  .item.gift {
    padding-bottom: 40px;
  }
}

.tit-type1 {
  margin: 15px 0;
  font-size: 40px;
  line-height: 1.3;
  text-align: center;
  color: #333333;
  position: relative;
  font-weight: 900;
}
.tit-type1 .focus {
  color: #3266a6;
}
.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: #800000;
  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 #800000;
  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-type2 {
  margin: 15px 0px;
  text-align: center;
  font-size: 30px;
  line-height: 1.4;
  color: #3c3935;
  position: relative;
}
.tit-type2-tag {
  display: inline-block;
  color: #fff;
  background: #ff725c;
  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: 15px 0px;
  font-size: 25px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .tit-type1 {
    font-size: 26px;
  }
  .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: 20px;
  }
  .tit-type2-tag {
    font-size: 20px;
  }
}

.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;
}

.text {
  margin-bottom: 15px;
  font-size: 18px;
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-red {
  color: #800000 !important;
}
.text-blue {
  color: #3266a6 !important;
}
.text-orange {
  color: #ff725c !important;
}
.text-black {
  color: #333;
}
@media screen and (max-width: 991px) {
  .text {
    font-size: 16px;
  }
}

.remark {
  font-size: 14px;
  color: #717171;
}

.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";
}

.mvBox {
  margin: 0 auto 20px;
  padding: 0;
  position: relative;
  text-align: center;
}
.mvBox-tit {
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
  display: inline-block;
  border-bottom: 2px solid #c8a973;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mvBox-tit:before {
  content: "";
  display: block;
}
.mvBox-video {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 0 auto;
}
.mvBox-video iframe, .mvBox-video object, .mvBox-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gap {
  height: 36px;
  margin: 0 auto;
  padding: 0;
  display: block;
  clear: both;
}
@media screen and (max-width: 767px) {
  .gap {
    height: 24px;
  }
}

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

.container.disinfo {
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  position: relative;
  top: 0;
  z-index: 2;
  text-align: center;
}
.container.disinfo p {
  font-size: 20px;
  line-height: 1.4;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .container.disinfo p {
    font-size: 16px;
  }
}

.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.two li {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .cardList.two li {
    width: 90%;
  }
}
.cardList.three li {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .cardList.three li {
    width: 90%;
  }
}
.cardList.four li {
  width: 24%;
}
@media screen and (max-width: 991px) {

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

  .cardList.four li {
    width: 100%;
  }
}

.videoArea {
  background-color: #cfe9ff;
}
.videoArea-bg1 {
  display: block;
  width: 400px;
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 991px) {
  .videoArea-bg1 {
    display: none;
  }
}
.videoArea-bg2 {
  display: block;
  width: 250px;
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 991px) {
  .videoArea-bg2 {
    display: none;
  }
}

.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: 16px auto 36px;
  padding: 0 20px 20px;
  background-color: #fff;
  border-radius: 16px;
  text-align: left;
  box-sizing: border-box;
}
.prodList-li {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  border-top: dashed 1px #bbb;
  padding: 5px 0;
}
.prodList-li-name {
  flex-grow: 1;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: #b49560;
  padding: 20px 0;
}
.prodList-li-name strong {
  color: #333333;
}
.prodList-li-name .intro {
  display: block;
  color: #714c0b;
  font-size: 16px;
  margin-top: 8px;
  font-weight: normal;
}
.prodList-li-name .date {
  display: block;
  color: #714c0b;
  font-size: 16px;
  margin-top: 8px;
  font-weight: normal;
}
.prodList-li-name .date:before {
  content: "最近基準日：";
}
.prodList-li .btnArea {
  width: 260px;
  text-align: right;
  white-space: nowrap;
}
.prodList-li:first-child {
  border: 0;
}
@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: #800000;
  font-weight: 900;
}
.ruleList-li .item {
  font-weight: 900;
}
.ruleList-li .item:after {
  content: "：";
}

.kycType {
  width: 90%;
  max-width: 300px;
  display: inline-block;
  margin: 16px 0px;
  padding: 6px 16px;
  font-size: 20px;
  border-radius: 40px;
  border: 5px solid #ff725c;
  cursor: pointer;
  background-color: #ffffff;
  color: #333333;
}
.kycType .fa-circle-arrow-down {
  transform: rotate(0deg);
  transition: all 0.5s ease;
}
.kycType.act {
  background-color: #ffffff;
  color: #ff725c;
}
.kycType.act .fa-circle-arrow-down {
  transform: rotate(180deg);
  transition: all 0.5s ease;
}

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

/*20240426*/
.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_tit{
  width:90%;
  margin: 0 auto;
}
.futureArea-nav {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
  letter-spacing: 0px;
  font-size: 0px;
}
.futureArea-nav > li {
  width: 50%;
  box-sizing: border-box;
  display: inline-block;
  cursor: pointer;
  font-size: 24px;
  color: #ffffff;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  border-radius: 0px;
  padding: 1em 2em !important;
  background-color: #9eacb7;
}
.futureArea-nav > li:first-child {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.futureArea-nav > li:last-child {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
.futureArea-nav > li.act {
  color: #ffffff;
  background-color: #068ce8;
}
@media screen and (max-width: 991px) {
  .futureArea-nav > li {
    font-size: 18px;
    padding: 0.8em 0.8em !important;
  }
}

@media screen and (max-width: 767px) {
  .futureArea {
    margin: 0px auto;
    padding: 15px 10px;
  }

}

.key-area {
  background-color: #01345e;
  position: relative;
  overflow: hidden;
}
.key-area > picture {
  width: 100%;
}
.key-area > picture img {
  transform: translateY(0) scale(1);
  animation-name: kvAni;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.key-area .kv2-1 {
  position: absolute;
  z-index: 1;
  left: 0px;
  top: 0px;
  width: 100%;
}
.key-area .kv-h1 {
  color: #ffffff;
  position: absolute;
  z-index: 2;
  left: 20%;
  top: 10%;
  bottom: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  transition: all 1s ease-in-out;
}
.key-area .kv-h1-slogan {
  width: 1em;
  font-size: 26px;
  font-weight: normal;
  line-height: 1.4;
  background-color: rgba(135, 113, 80, 0.7);
  padding: 1em 0.6em;
  transform-origin: top;
  transform: skewY(8deg) translateY(-100%);
  opacity: 0;
  display: inline-block;
  transition: all 1s ease-in-out;
  animation-name: text1;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}
.key-area .kv-h1-slogan strong {
  transform-origin: top;
  transform: skewY(-8deg);
  display: inline-block;
}
.key-area .kv-h1-slogan strong b {
  padding-top: 20px;
  display: inline-block;
}
.key-area .kv-h1-img {
  box-sizing: border-box;
  width: 100%;
  max-width: 130px;
  display: block;
  margin: 36px 24px;
  transition: all 1s ease-in-out;
  transform: translateY(100%);
  opacity: 0;
  animation-name: text2;
  animation-duration: 1.5s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
.key-area .kv-h1 .fa-angle-right {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  font-size: 140px;
  transform: translateX(50%);
  opacity: 0;
  animation-name: arw;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 2s;
}
.key-area .kv-h1 .arraw2 {
  animation-delay: 2.5s;
}
@media screen and (max-width: 1399px) {
  .key-area .kv-h1 {
    left: 20%;
    top: 10%;
    bottom: auto;
  }
  .key-area .kv-h1-slogan {
    font-size: 20px;
  }
  .key-area .kv-h1-img {
    max-width: 100px;
    margin: 36px 20px;
  }
}
@media screen and (max-width: 1199px) {
  .key-area .kv-h1 {
    left: 20%;
    top: 10%;
    bottom: auto;
  }
  .key-area .kv-h1-slogan {
    font-size: 20px;
  }
  .key-area .kv-h1-img {
    max-width: 84px;
    margin: 36px 20px;
  }
}
@media screen and (max-width: 991px) {
  .key-area .kv-h1 {
    left: 10%;
    top: 8%;
    bottom: auto;
  }
  .key-area .kv-h1-slogan {
    font-size: 24px;
  }
  .key-area .kv-h1-img {
    max-width: 120px;
    margin: 36px 20px;
  }
}
@media screen and (max-width: 767px) {
  .key-area .kv-h1 {
    left: 10%;
    top: 8%;
    bottom: auto;
  }
  .key-area .kv-h1-slogan {
    font-size: 20px;
  }
  .key-area .kv-h1-img {
    max-width: 90px;
    margin: 30px 15px;
  }
}
@media screen and (max-width: 480px) {
  .key-area .kv-h1 {
    left: 5%;
    top: 8%;
    bottom: auto;
  }
  .key-area .kv-h1-slogan {
    font-size: 17px;
  }
  .key-area .kv-h1-img {
    max-width: 65px;
    margin: 20px 10px;
  }
  .key-area .kv-h1 .fa-angle-right {
    font-size: 90px;
    transform: translateX(50%);
  }
}

@keyframes text1 {
  0% {
    transform: skewY(8deg) translateY(100%);
    opacity: 0;
  }
  100% {
    transform: skewY(8deg) translateY(0%);
    opacity: 1;
  }
}
@keyframes text2 {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes arw {
  0% {
    transform: translateX(50%);
    opacity: 0;
  }
  50% {
    transform: translateX(80%);
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}
@keyframes kvAni {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(10px) scale(1);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}/*# sourceMappingURL=main.css.map */