.party {
    display: flex;
    flex-direction: row;
    /*background: url("../images/icon/dj-bg.png");*/
}

.dj {
    width: 694px;
    margin-right: 50px;
}


.dj-content {
    margin-top: 20px;
}

.dj-content-item {
    display: flex;
    margin-bottom: 30px;
    transition: all .2s linear;
}

.dj-content-item:hover {
    background: #FFFFFF;
    box-shadow: 0px 3px 10px 4px rgba(173, 173, 173, 0.25);
    transition: all .2s linear;
}

.dj-content-img-wrapper {
    width: 250px;
    height: 160px;
    overflow: hidden;
}

.dj-content-img {
    width: 250px;
    height: 160px;
    object-fit: cover;
    transition: all .2s linear;
}

.dj-content-img:hover {
    transition: all .2s linear;
    transform: scale(1.1);
}


.dj-content-item-right {
    flex: 1;
    margin-left: 30px;
}

.dj-content-item-right-title {
    font-size: 18px;
    font-weight: bold;
    line-height: 40px;
    color: #000000;
}

.dj-content-item-right-content {
    font-size: 14px;
    color: #7D7D7D;
    margin-top: 40px;
    transition: all .2s linear;
}

.dj-content-item-right-date {
    color: #C42B2B;
    margin-top: 15px;
    font-family: Georgia;
}

.dj-content-item:hover .dj-content-item-right-title {
    color: #C42B2B;
    transition: all .2s linear;
}

.dj-content-item:hover .dj-content-item-right-content {
    /*color: #C42B2B;*/
    transition: all .2s linear;
}

.dj-content-item:hover .dj-content-item-right-date {
    /*color: #C42B2B;*/
    transition: all .2s linear;
}


.bs {
    flex: 1;
}

.bs-content {
    margin-top: 20px;
}

.bs-content-item {
    padding: 18px 0;
    align-items: center;
    border-bottom: 1px dashed #EEDADA;
}

.bs-content-item-title {
    font-size: 16px;
    color: #262626;
    transition: all .2s linear;
    width: 500px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.bs-content-item-date {
    color: #767676;
    transition: all .2s linear;
}

.bs-content-item:hover {
    border-bottom: 1px solid #C42B2B;
    transition: all .2s linear;
}

.bs-content-item:hover .bs-content-item-title {
    color: #C42B2B;
    transform: translateX(10px);
    transition: all .2s linear;
}

.bs-content-item:hover .bs-content-item-date {
    color: #C42B2B;
    transition: all .2s linear;
}


