* {
	padding: 0;
	margin: 0;
}

.slide_box {
	position: relative;
	overflow: hidden;
	width: 100vw;
	height: 100vh;
}

.slide_pic {
	z-index: 0;
	position: relative;
	height: 100%;
}

.slide_pic li {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #f2f2f2 center center no-repeat;
	background-size: auto 100%;
	z-index: 0;
}

.slide_pic .show {
	z-index: 5;
}

.slide_pic .next {
	z-index: 3;
}

.slide_pic li a {
	display: block;
	height: 100%;
}

.slide_pic li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slide_pic li span {
	display: none;
}

.slide_tab {
	width: auto;
	height: 5.5vh;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: center;
	align-items: center;
	justify-content: space-around;
	position: absolute;
	bottom: 5vh;
	left: 45%;
	z-index: 10;
	background: rgba(0, 0, 0, 0.4);
	border-radius: 1.5vh;
}

.slide_tab li {
	background: #272727;
	width: 2.75vh;
	height: 2.75vh;
	border-radius: 10vh;
	margin-right: 1vh;
	margin-left: 1vh;
	cursor: pointer;
	list-style: none;
}

.slide_tab .h {
	background: #f1b518;
}

.slide_nav {
	position: absolute;
	top: 23vw;
	width: 100vw;
	height: 3.5vw;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-start;
	align-content: flex-start;
	justify-content: space-between;
	transition: 0.25s;
	/*opacity: 0.6;*/
	cursor: pointer;
	z-index: 5;
}

.slide_nav li {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: center;
	align-items: center;
	justify-content: flex-start;	
	width: 10%;
	height: 100%;
	cursor: pointer;
	list-style: none;
}

.slide_nav:hover {
	opacity: 0.9;
}

.slide_nav:active {
	opacity: 0.7;
}

.slide_nav > li > .slide_prev {
	width: 100%;
	height: 100%;
	object-fit: scale-down;
}

.slide_nav > li > .slide_next {
	width: 100%;
	height: 100%;
	object-fit: scale-down;
}