/* responsive.css：简单做一下PC端宽屏适配，不同分辨率下看着更舒服。 */
@media screen and (max-width: 1280px) {
    .container {
        width: 1120px;
    }
    .el-carousel,
    .el-carousel-slide,
    .el-carousel-slide img {
        width: 1120px;
    }
    .el-carousel-slide {
        flex: 0 0 1120px;
    }
}

@media screen and (min-width: 1600px) {
    .container {
        width: 1280px;
    }
}

 /* Safari有时候需要加一下-webkit前缀，避免动画不动 */
.el-carousel-track {
    -webkit-transition: -webkit-transform 0.45s ease;
    transition: transform 0.45s ease;
}
