.main_pic .slide_images {
    position: relative;
    height: 400px;
    margin: 0 auto
}
.main_pic .slide_control {
    position: absolute;
	z-index: 90;
    right: calc((100% - 960px)/ 2);
    top: 20px;
}
.main_pic .slide_button {
    float: left;
    margin-left: 10px;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 20px;
    /*cursor: pointer;*/
    border: 1px solid #e9e9e9
}
.main_pic .slide_button_current {
    background: #f0871a;
    border: none
}
.main_pic .single_slide {
    height: 100%;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center
}

.main_pic .image_button {
	width: 30px;
	height: 30px;
	background-image: url(../images/front/layout/slide_button.png);
	position: absolute;	
	z-index: 100;
	top:calc((100% - 30px)/2);
	cursor: pointer;
	/* */
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    transition: all .25s ease-out	
}

.main_pic .image_button.disabled {
	opacity: 1;
	transform: scale(0.8);
	visibility: hidden;
}

.main_pic .image_button.image_prev {
	left: 10px;	
}

.main_pic .image_button.image_next {
	right: 10px;
	transform: rotate(180deg);
}

.main_pic .image_button.image_next.disabled {
	transform:scale(0.8) rotate(180deg);
}

.main_pic #video {
	width: 100%;
	height: 100%;
}

.main_pic #video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (min-width: 320px) and (max-width: 568px) {

	.image_button {
		display: none;
	}
	
}