
.slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 1;
}
.slideshow .slideshow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slideshow .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slideshow .slide {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.slideshow .slide.is-active {
  display: block;
}
.slideshow .slide.is-loaded {
  opacity: 1;
}
.slideshow .slide .caption {
  padding: 0 100px;
}
.slideshow .slide .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  z-index: 1;
  background-size: cover;
  image-rendering: optimizeQuality;
}
.slideshow .slide .image-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slideshow .slide .image {
  width: 100%;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.slideshow .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #fff;
  text-shadow: 0.1em 0.1em 0.3em #000;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slideshow .slide .title {
  margin: 0 auto 15px;
  max-width: 1000px;
  font: 600 50px/1.2 "Oswald", sans-serif;
  font-family: "Noto Serif TC", Times, "Times New Roman", "儷宋 Pro", "LiSong Pro Light", "宋体", SimSun, serif;
  text-transform: uppercase;
}
.slideshow .slide .titles {
	margin: 0 auto 15px;
	max-width: 1000px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-family: "Oswald", sans-serif;
	font-size: 100%;
	line-height: 1.2;
	font-weight: 300;
}
.slideshow .slide .text {
  margin: 0 auto;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.slideshow .slide .btn {
  margin: 15px 0 0;
  border-color: #fff;
}
.slideshow .slide .btn::before {
  background: #fff;
}
.slideshow .pagination {
  position: absolute;
  bottom: 35px;
  left: 0;
  width: 100%;
  height: 12px;
  cursor: default;
  z-index: 2;
  text-align: center;
}
.slideshow .pagination .item {
  display: inline-block;
  padding: 15px 5px;
  position: relative;
  width: 46px;
  height: 32px;
  cursor: pointer;
  text-indent: -999em;
  z-index: 1;
}
.slideshow .pagination .item + .page {
  margin-left: -2px;
}
.slideshow .pagination .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 5px;
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease;
}
.slideshow .pagination .item::after {
  width: 0;
  background: #fff;
  z-index: 2;
  transition: width 0.2s ease;
}
.slideshow .pagination .item:hover::before, .slideshow .pagination .item.is-active::before {
  background-color: #fff;
}
.slideshow .arrows .arrow {
	border-radius: 99px;
	position: absolute;
	top: 50%;
	cursor: pointer;
	z-index: 3;
	margin-top: -23px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 21px;
	padding-right: 29px;
	padding-bottom: 21px;
	padding-left: 29px;
	border: 1px solid #FFF;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.slideshow .arrows .prev {
  left: 20px;
}
.slideshow .arrows .prev:hover .svg {
  left: -10px;
}
.slideshow .arrows .next {
  right: 20px;
}
.slideshow .arrows .next:hover .svg {
  left: 10px;
}
.slideshow .arrows .svg {
  position: relative;
  left: 0;
  width: 35px;
  height: 65px;
  fill: #fff;
  transition: left 0.2s ease;
  
}


@media screen and (max-width: 768px) {
.slideshow .arrows .arrow {
	border-radius: 99px;
	position: absolute;
	top: 50%;
	cursor: pointer;
	z-index: 3;
	margin-top: -23px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 11px;
	padding-right: 19px;
	padding-bottom: 11px;
	padding-left: 19px;
	border: 1px solid #FFF;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
	
.slideshow .slide .title {
  margin: 0 auto 15px;
  max-width: 1000px;
  font: 600 26px/1.2 "Oswald", sans-serif;
  font-family: "Noto Serif TC", Times, "Times New Roman", "儷宋 Pro", "LiSong Pro Light", "宋体", SimSun, serif;
  text-transform: uppercase;
}
.slideshow .slide .titles {
	margin: 0 auto 15px;
	max-width: 1000px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-family: "Oswald", sans-serif;
	font-size: 80%;
	line-height: 1.2;
	font-weight: 300;
}
.slideshow .slide .text {
  margin: 0 auto;
  max-width: 600px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
}