.news-item {
    display: flex;
    justify-content: space-between;
    height: 120px;
    align-items: center;
    margin: 5px 15px;
    cursor: pointer;
    border-bottom: 1px solid #e6e6e6;
}

.news-date {
    width: 60px;
    position: relative;
top: 10px;
}
.news-my {
    text-align: center;
    color: #007FFF;
    font-size: 14px;
}

.news-day {
    color: #007FFF;
    text-align: center;
    font-size: 32px;
}

.news-main {
    width: 85%;
}

.news-title {
        font-size: 15px;
    color: #000;
    font-weight: bold;
    height: 20px;
    line-height: 20px;
}

.news-item:hover .news-title {
    color: #03A9F4;
    font-weight: bold;
}


.news-introduce {
        font-size: 12px;
    color: #999;
    line-height: 20px;
    margin-top: 14px;
}

.image-container{
    display: flex;
    flex-wrap: wrap;
}

.image-item-container{
    padding: 10px 0 0 0;
    background: white;
    border: 1px solid #dddddd;
    box-shadow: 2px 2px 3px rgb(50 50 50 / 40%);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin: 20px;
    height: 100%;
}

.image-item {
    width: 220px;
    margin: 0 auto;
}

.image-item-container:nth-child(6n + 1) {
    transform: rotate(-3deg);
}

.image-item-container:nth-child(6n + 2) {
    transform: rotate(3deg);
}

.image-item-container:nth-child(6n + 3) {
    transform: rotate(2deg);
}


.image-item-container:nth-child(6n + 4) {
    transform: rotate(7deg);
}

.image-item-container:nth-child(6n + 5) {
    transform: rotate(4deg);
}

.image-item-container:nth-child(6n + 6) {
    transform: rotate(-5deg);
}

.image-introduce {
    text-align: center;
    width: 220px;
    margin: 0 auto;
    padding: 10px;
    font-size: 14px;
}