.about_way_list .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
}

.about_way_list {
	margin-left: -16px;
}

.about_way_item {
    margin-left: 16px;
    text-decoration: none;
}

.about_way {
    height: 230px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border: 1px solid #dfdfdf;
    overflow: hidden;
}

.about_way img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: .35s;
}

.about_way:hover img {
    transform: scale(1.05);
    will-change: contents;
}

@media (min-width: 480px) {
	.about_way {
    	height: 145px;
    }
}

@media (min-width: 768px) {
	.about_way_list {
		margin-left: -36px;
	}

	.about_way_item {
	    margin-left: 36px;
	}

	.about_way {
    	height: 230px;
    }
}

@media (min-width: 1280px) {
	.about_way {
    	height: 200px;
    }
}

@media (min-width: 1620px) {
	.about_way {
    	height: 270px;
    }
}