* {
    margin: 0;
    padding: 0;
}

.content {
    width: 100%;
    height: 100vh;
}

.reportInfo {
    width: 520px;
    height: 378px;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 20px;
}

.reportInfo .imgs {
    cursor: pointer;
    position: relative;
}

.reportInfo .imgs img {
    width: 100%;
    height: 304px;
}

.imgs::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s ease-in-out;
}

.imgs:hover::before {
    opacity: 1;
}

.report_card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.title_info {
    width: 100%;
    line-height: 120px;
    color: white;
    font-size: 52px;
    text-align: center;
}

.reportInfo_title {
    white-space: wrap;
}

.reportInfo_title p {
    padding-left: 20px;
    transition: 1s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reportInfo_title :first-child {
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
}

.reportInfo_title :first-child:hover {
    text-decoration: underline
}