@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@500;700&display=swap');

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡ { reset } ≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
h1,h2,h3,h4,h5,h6 {
  font-size: inherit;
  font-weight: normal;
}

i {
  font-style: initial;
}

img {
  max-width: 100%;
  height: auto;
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡ { animate } ≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/

@-webkit-keyframes zoomInbigger {
  from {
    opacity: 0;
    transform: scale3d(2, 2, 2);
  }

  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

@keyframes zoomInbigger {
  from {
    opacity: 0;
    transform: scale3d(2, 2, 2);
  }

  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.zoomInbigger {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: zoomInbigger;
  animation-name: zoomInbigger;
}

@-webkit-keyframes fadeInOut {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeInOut {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeInOut{
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInOut;
  animation-name: fadeInOut;
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡ { component } ≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
a,
a:hover {
  color: initial;
}

/*txt*/
.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.txt-left {
  text-align: left;
}

/*dot*/
.dot::after{
  content: '，';
  display: block;
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡ { layout } ≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/

/*body*/
body {
  font-size: 16px;
  color: #000;
  letter-spacing: 1px;
  font-family: 'Microsoft JhengHei', sans-serif;
}

#loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 999;
}

#loading .loader{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
}

#loading .loader::after{
  content: 'LOADING';
  display: block;
  font-size: 12px;
  color: #219098;
}

#loading .lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
#loading .lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #219098;
  border-radius: 50%;
  -webkit-animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #219098 transparent transparent transparent;
}
#loading .lds-ring div:nth-child(1) {
  -webkit-animation-delay: -0.45s;
          animation-delay: -0.45s;
}
#loading .lds-ring div:nth-child(2) {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}
#loading .lds-ring div:nth-child(3) {
  -webkit-animation-delay: -0.15s;
          animation-delay: -0.15s;
}

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

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


/*header*/
#header{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 5vw;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 99;
  padding: 5px 5%;
  height: 100px;
  background: #fff;
}
#header a{
  display: block;
}
#header nav{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}
#header nav a{
  margin: 0 .25em;
  width: 45px;
  height: 51px;
}

/*slidePage*/
#slidePage{
  padding-top: 100px;
  overflow: hidden;
}

#slidePage>section {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  max-width: 90%;
  background-color: #f1f1f1;
}

/*main*/
#main {
  position: relative;
  min-height: 100vh;
  line-height: 2em;
  overflow: hidden;
}

/*slick*/
.sliderBox{
  margin: 0 auto;
}
.sliderBox img{
  width: 100%;
  height: auto;
}
.slick-dots{
  text-align: center;
}
.slick-dots > li{
  display: inline-block;
  overflow: hidden;
  width: 6px;
  height: 6px;
  margin: 0 3px;
  border: 1px solid #7d7d7d;
  border-radius: 100%;
}
.slick-dots .slick-active{
  background: #7d7d7d;
}
.slick-dots > li button{
  display: block;
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡ { response } ≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
@media (max-width: 1400px) {
  #slidePage>section{
    max-width: 95%;
  }
}

@media (max-width: 1000px) {
  #header{
    padding: 4% 2.5%;
    align-items: center;
    height: 70px;
  }
  #header nav a{
    margin: 0 .1em;
    width: 39px;
    height: 45px;
  }
  #slidePage{
    padding-top: 60px;
  }
  #slidePage>section{
    max-width: none;
  }
}