.section {
    padding: 133px 0 184px;
}

.section .wrap .list {
    display: flex;
    gap: 54px 70px;
    flex-wrap: wrap;
}

.section .wrap .list .item {
    width: 480px;
    cursor: pointer;
}

.section .wrap .list .item .img {
    width: 100%;
    height: 280px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section .wrap .list .item .img:after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transition: 0.6s;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.section .wrap .list .item .img .play {
    width: 60px;
    position: absolute;
    opacity: 0;
    transition: 0.6s;
    z-index: 3;
    cursor: pointer;
}

.section .wrap .list .item .img .play img {
    display: block;
    width: 100%;
    transition: 0.6s;
    filter: brightness(0) invert(1);
}

.section .wrap .list .item .img .play:hover img {
    filter: brightness(1);
}

.section .wrap .list .item .img > img {
    display: block;
    width: 100%;
    height: 100%;
    transition: 3s;
}

.section .wrap .list .item p {
    font-weight: 400;
    font-size: 16px;
    color: #1A1A1A;
    margin: 38px 0 0;
    text-align: center;
    transition: 0.6s;
}

.section .wrap .list .item:hover .img:after {
    opacity: 1;
}

.section .wrap .list .item:hover .img .play {
    opacity: 1;
}

.section .wrap .list .item:hover .img > img {
    transform: scale(1.1);
}

.section .wrap .list .item:hover p {
    font-weight: bold;
}

.section .wrap .more {
    margin: 64px auto 0;
    width: fit-content;
}

.section .wrap .more a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 0 6px;
    height: 54px;
    background: #006A52;
    border-radius: 6px;
    padding: 0 38px;
}

.section .wrap .more a p {
    font-family: 'SourceHanSansCN-Light';
    font-weight: 300;
    font-size: 15px;
    color: #FFFFFF;
}

.section .wrap .more a .iconfont {
    font-size: 10px;
    color: #FFFFFF;
}

/*# sourceMappingURL=story.css.map */
@media screen and (max-width: 1919px) {
    .section {
        padding: 6.9270833333vw 0px 9.5833333333vw;
    }

    .section .wrap .list {
        gap: 2.8125vw 3.6458333333vw;
    }

    .section .wrap .list .item {
        width: 25vw;
    }

    .section .wrap .list .item .img {
        height: 14.5833333333vw;
        border-radius: 0.3125vw;
    }

    .section .wrap .list .item .img .play {
        width: 3.125vw;
    }

    .section .wrap .list .item p {
        font-size: 0.8333333333vw;
        margin: 1.9791666667vw 0px 0px;
    }

    .section .wrap .more {
        margin: 3.3333333333vw auto 0px;
    }

    .section .wrap .more a {
        gap: 0px 0.3125vw;
        height: 2.8125vw;
        border-radius: 0.3125vw;
        padding: 0px 1.9791666667vw;
    }

    .section .wrap .more a p {
        font-size: 0.78125vw;
    }

    .section .wrap .more a .iconfont {
        font-size: 0.5208333333vw;
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    .section .wrap .list .item {
        width: 100%;
    }
    .section .wrap .list {
        gap: 30px;
    }
    .section .wrap .list .item .img {
        height: 52vw;
        border-radius: 6px;
    }
    .section .wrap .list .item p {
        font-size: 18px;
        margin: 15px 0 0;
    }
}
