* {
    box-sizing: border-box;
}

.content {
    background: #F6F7FB;
}

.listBar {
    width: 100%;
}

.listBar .list-nav {
    display: inline-block;
    width: 447px;
    padding: 9px 10px;
    background: #fff;
    margin-bottom: 22px;

}

.listBar .list-nav img {
    width: 100%;
    height: 265px;
    object-fit: contain;
}

.listBar .list-nav:nth-child(3n-1) {
    margin: 0 25px;
}

.listBar .list-title {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 20px;
    color: #333333;
    line-height: 40px;
    margin: 15px 0 11px;
    overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
    box-sizing: border-box;
}

.listBar .list-detail {
    width: 100%;
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    line-height: 40px;
    overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    .listBar .list-nav:nth-child(3n-1) {
        margin: 22px 0;
    }

    .listBar .list-nav {
        width: 4.5rem;
    }
}