body {
    overscroll-behavior-y: contain;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow-x: hidden; /* 隱藏水平滾動條 */
}

html {
    //overflow-x: hidden;
}


.textCtr {
  text-align: center;
}
#carousel {
    max-width: 250vw;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    position: relative;
    box-shadow:0px 0px 1.042vw black;
	margin-top:13vw;
}  
	
.slide-indicators {
    display: flex;
    justify-content: center;
	position:absolute;
	top:45vw;
	align-items: center;
	width:100%;
}
.slide-indicator {
    height: 9.167vw;
    width: 10.417vw;
    display: flex;
    justify-items: center;
    cursor: pointer;
}
.slide-indicator:after {
    content: "";
    background-color: #FFFFFF;
    height: 2.083vw;
    margin-top: 2.083vw;
    width: 8.333vw;
	opacity: 0.5;
}
.slide-indicator.active:after,
.slide-indicator:hover:after {
    background-color: #515151;
	opacity: 0.5;
}
.slide-banner {
	opacity: 0.5;
    background-color: #515151;
    color: #ffffff;
    position: absolute;
    left: 0;
    bottom: 4.167vw;
    padding: 3.125vw;
    font-size: 2.5vw;
}
.slide-banner a {
    color: #ffffff;
}
#slide-container {
    scroll-snap-type: x mandatory;
    overflow-x: scroll;
    overflow-y: hidden;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 2.083vw;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}
#slide-container::-webkit-scrollbar {
  display: none;
}

.slide {
    scroll-snap-align: center;
    position: relative;
    min-width: 100%;
	min-height: 5vw;
    padding-top: 50%;
}
.slide img {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.arrow {
    color: #ffffff;
    height: 4.167vw;
    width: 4.167vw;
    background-color: #000000;
    position: absolute;
    padding: 2.083vw;
    opacity: .3;
    cursor: pointer;
	visibility:hidden;
}
.arrow.back {
    left: 2.083vw;
    top: 2.083vw;
}
.arrow.forward {
    right: 2.083vw;
    top: 2.083vw;
}
.arrow:hover {
    opacity: 1;
}
