@charset "utf-8";

/*
 * CSS Document
 * ==========================================================================
 * 版權所有 2019 鉅潞科技網頁設計公司，並保留所有權利。
 * 網站地址: http://www.grnet.com.tw
 * ==========================================================================
 * $Author: Rain, Buzz $
 * $Date: 2019-04 $
 * **請注意: 本樣式檔處理使用套件的客製樣式，避免因套件程式延遲載入造成樣式跑版。
*/
.slick-list {
  z-index: 1;
}

.slick-slide a {
  outline: none;
}

/*dots*/
.slick-dots {
  position: absolute;
  left: 50%;
  bottom: 50px;
  margin: 0;
  padding: 0;
  z-index: 2;
  font-size: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.slick-dots li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 6px;
  height: 12px;
}

.slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  padding: 0;
  background: transparent;
  border: none;
  position: relative;
  background: #5f0f8c;
  display: inline-block;
  vertical-align: middle;
}

.slick-dots li.slick-active button {
  width: 12px;
  height: 12px;
  border-radius: 14px;
  background: transparent;
  margin-top: -2px;
  border: 1px solid #5f0f8c;
}

@media (max-width:991px) {
  .slick-dots {
    bottom: 20px;
  }

}

/* 頁碼&左右箭頭共用 */
.slider+.page-box {
  position: relative;
  line-height: 23px;
  font-size: 1.125rem;
  text-align: center;
  font-family: 'Arial';
  letter-spacing: 2px;
}

.slider+.page-box:after {
  content: '';
  width: 17px;
  height: 1px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  margin-left: -10px;
  display: block;
  background: #666
}

.slider+.page-box span {
  display: inline-block;
  margin: 0 17px;
  vertical-align: middle;
  color: #666
}

.slider+.page-box span.current {
  color: #000
}

.slider .slick-arrow {
  position: absolute;
  outline: none;
  background-color: rgba(255, 255, 255, 0);
  text-indent: -9999px;
  z-index: 999;
  cursor: pointer;
  padding: 0;
  top: 50%;
  margin-top: -22px;
  border: 2px solid rgba(94, 13, 139, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  -moz-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  -o-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.slider .slick-arrow:before {
  content: "";
  position: absolute;
  display: block;
  left: 14px;
  width: 9px;
  height: 9px;
  border-style: solid;
  border-width: 6px 11px 6px 0;
  top: 15px;
  border-color: transparent #5e0d8b transparent transparent;
  -moz-transition: all 0.5s cubic-bezier(0.5, 0, 0.3, 0.5);
  -o-transition: all 0.5s cubic-bezier(0.5, 0, 0.3, 0.5);
  -webkit-transition: all 0.5s cubic-bezier(0.5, 0, 0.3, 0.5);
  transition: all 0.5s cubic-bezier(0.5, 0, 0.3, 0.5);
}

.slider .slick-arrow:after {
  content: "";
  position: absolute;
  left: 22px;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 13px;
  top: 15px;
  -o-transition: all 0.5s cubic-bezier(0.5, 0, 0.3, 0.5);
  -webkit-transition: all 0.5s cubic-bezier(0.5, 0, 0.3, 0.5);
  transition: all 0.5s cubic-bezier(0.5, 0, 0.3, 0.5);
  background: #fff;
  -moz-transition: all 0.5s cubic-bezier(0.5, 0, 0.3, 0.5);
}

.slider .slick-arrow.slick-prev {
  left: 0;
}

.slider .slick-arrow.slick-next {
  right: 0;
}

.slider .slick-arrow.slick-next:before {
  border-width: 6px 0 6px 11px;
  border-color: transparent transparent transparent #5e0d8b;
}

.slider .slick-arrow.slick-next:after {
  left: auto;
  right: 23px;
}

@media (min-width:992px) {
  .slider .slick-arrow:hover {
    border: 2px solid rgba(94, 13, 139, 1);
  }

}
/* PLUGIN: INFINITE */

/* scroller-status
------------------------- */
.page-load-status {
  display: none;
  padding-top: 20px;
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}

/* loader-effect
------------------------- */
.loader-eff {
  font-size: 20px;
  position: relative;
  width: 4em;
  height: 1em;
  margin: 10px auto;
}
.loader-eff > div {
  display: block;
  width: 0.6em;
  height: 0.6em;
  border-radius: 0.5em;
  background: #5f0f8c;
  opacity: 0.8;
  position: absolute;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}
.loader-eff > div:nth-child(1), .loader-eff > div:nth-child(2) {
  left: 0;
}
.loader-eff > div:nth-child(3) {
  left: 1.5em;
}
.loader-eff > div:nth-child(4) {
  left: 3em;
}
.loader-eff > div:nth-child(1) {
  animation-name: reveal;
}
.loader-eff > div:nth-child(2), .loader-eff > div:nth-child(3) {
  animation-name: slide;
}
.loader-eff > div:nth-child(4) {
  animation-name: reveal;
  animation-direction: reverse;
}
@keyframes reveal {
  from {
    transform: scale(0.001);
  }
  to {
    transform: scale(1);
  }
}
@keyframes slide {
  to {
    transform: translateX(1.5em)
  }
}

/* MagnificPopup Zoom */
.mfp-zoom .mfp-container {
  opacity: 0;
  -webkit-transition: -webkit-transform .3s ease-in-out, opacity .3s;
  -moz-transition: -moz-transform .3s ease-in-out, opacity .3s;
  -o-transition: -o-transform .3s ease-in-out, opacity .3s;
  transition: transform .3s ease-in-out, opacity .3s;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}
.mfp-zoom.mfp-ready .mfp-container {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.mfp-zoom.mfp-removing .mfp-container {
  opacity: 0;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

/* mcuscrollBar */
.mCS-catab-scroll-theme.mCSB_horizontal.mCSB_inside > .mCSB_container{
  margin-bottom: 0;
}
.mCS-catab-scroll-theme.mCSB_scrollTools.mCSB_scrollTools_horizontal{
  height: 2px;
}
.mCS-catab-scroll-theme.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail{
  margin: 0;
  height: 2px;
  background-color: transparent
}
.mCS-catab-scroll-theme.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
  margin: 0;
  height: 2px;
  background-color: #ccc
}


