html {
    background-color: #0C0D0D;
}


.star_main {
    width: 1200px;
    margin: 0 auto;
}

.star_main ul {
    text-align: center;
    font-size: 0px;
}



.star_main ul li {
    position: relative;
    width: 386px;
    display: inline-block;
    background-color: aliceblue;
    margin-bottom: 30px;
    cursor: pointer;
}

.star_main ul li:nth-child(3n-1) {
    margin: 0px 20px;
}

.star_main ul li img {
    width: 100%;
}

.star_main ul li:hover div {
    display: block;
}

.star_main ul li div {
    display: none;
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #00000058;
}

.star_main ul li div p {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    box-sizing: border-box;
    padding-top: 500px;
}