.block11314 {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
}

.block11314 .wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.block11314 .tile {
    padding: 0 15px;
    width: calc(100% / 3 - 30px);
    position: relative;
    outline: none;
}

.block11314 .title {
    font-size: 16px;
    line-height: 1.8125rem;
    margin-bottom: 15px;
    color: #595d61;
}

.block11314 .imgBox {
    width: 100%;
    height: 210px;
    padding-bottom: 25px;
}

.block11314 .imgBox .backstage-componet-bd,
.block11314 .imgBox .backstage-componet {
    width: 100%;
    height: 100%;
}

.block11314 .imgBox .backstage-componet-bd {
    overflow: hidden;
}

.block11314 .imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s linear;
    transform-origin: top;
}

.block11314 .arrow {
    position: absolute;
    left: 50%;
    bottom: -25px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 25px;
    height: 50px;
    width: 50px;
    /* background-image: linear-gradient(to right, #595d61 0%, #5a5a5a 100%); */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.2s linear;
}

.block11314 .arrow i {
    font-size: 25px;
}

.block11314 .tile:hover .imgBox .backstage-componet-bd img {
    transform: scale(1.1);
}

.block11314 .tile:hover .arrow {
    opacity: 1;
}

.block11314 .slick-dots {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.block11314 .slick-dots li {
    margin: 0 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.4;
    cursor: pointer;
    transition: .3s;
    background: #595d61;
}

.block11314 .slick-dots li button {
    display: none;
}

.block11314 .slick-dots li:hover {
    opacity: 1;
}

.block11314 .slick-dots .slick-active {
    opacity: 1;
}
.block11314 .tileMask{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    outline: none;
}

@media screen and (max-width:1200px) {
    .block11314 .tile {
        padding: 0 10px;
        width: calc(100% / 3 - 20px)
    }

    .block11314 .imgBox {
        height: 182px;
    }
}

@media screen and (max-width:900px) {
    .block11314 .imgBox {
        height: 231px;
    }
}

@media screen and (max-width:600px) {
    .block11314 .tile {
        width: calc(100% - 20px);
        margin-bottom: 20px;
    }

    .block11314 .tile:last-child {
        margin-bottom: 0;
    }

    .block11314 .title {
        width: 100%;
        text-align: center;
    }

    .block11314 .imgBox {
        height: 195px;
    }
}