div.maxSlide {width:100%; overflow:hidden; position:relative; padding:0}
div.maxSlide > .slide_back {height:100%; padding:0; position:absolute; top:0; left:0; font-size:0;}
div.maxSlide > .slide_back > div {overflow-y:hidden; display:inline-block; vertical-align:top; position:relative;}
div.maxSlide > .slide_back > div img {height:100%; width:100%; object-fit:cover;}
/* div.maxSlide > .slide_back > div img {width:100%;} */
.btn_prev {position:absolute; left: 10px; bottom:60px; width:20px; cursor:pointer; z-index:10000;}
.btn_next {position:absolute; right: 10px; bottom:60px; width:20px; cursor:pointer; z-index:10000;}
div.dots {width:100px; position:absolute; bottom:-40px; left:0; width:100%; height:30px; text-align:center;}
div.dots > div {width:90%; margin:0 auto; text-align:center;}
div.dots > div > div {width:8px; height:8px; border-radius:100px; display:inline-block; margin:0 3px; background-color:#999;}
div.dots > div > div:first-child {background-color:#2EBDBA;}
#dot1 {background-color:#2EBDBA;}
.maxSlide_txt {position: absolute; right: 5px; bottom: 5px; color: #fff; font-size: 12px; font-weight: normal; padding:2px 8px; background-color:rgba(172, 170, 170,0.6); border-radius:50px; font-family:'lato';}

.maxSlide {
    position: relative;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.maxSlide .prev,
.maxSlide .next {
    min-width: 34px;
    max-width: 34px;
    min-height: 34px;
    max-height: 34px;
    position: absolute;
    background: #fff;
    z-index: 999;
    cursor:pointer;
}

.maxSlide .prev {
    left: 16px;
    background: url(./img/arrow_left.svg) no-repeat center center/13px 26px rgba(0, 0, 0, 0.3);
}

.maxSlide .next {
    right: 16px;
    background: url(./img/arrow_right.svg) no-repeat center center/13px 26px rgba(0, 0, 0, 0.3);
}


.maxSlide_txt {
    position: absolute;
    right: 16px;
    bottom: 16px;
    color: #fff;
    font-size: 12px;
    font-weight: normal;
}


.maxSlide .image {
    width: 100vw;
    height: auto;
    border-radius:20px;
    overflow:hidden;
}

.maxSlide .image img {
    width: 100vw;
    height: auto;
}

@media screen and (max-width:500px){
	.maxSlide .image {
        border-radius:10px;
    }
}