.main, .feed-list, .box-bd {
    width: 100%;
}

.nodatas {
    padding: 200px 0;
}

.list {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 25px;
}

.list li {
    width: 19%;
    margin-right: 1.25%;
    margin-bottom: 15px;
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    transition-property: all;
    transition-duration: 0.7s;
}

.list li:nth-child(5n) {
    margin-right: 0;
}

.list li:hover {
    box-shadow: 0 0 15px #999999;
}

.list li a.link {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.list li a.link .thumb-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list li a.link .thumb-box .screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition-duration: 1s;
}

.list li a.link:hover:before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 220px;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(41, 37, 43, 0.7) url(../images/index/play.png) center 55% no-repeat;
}

.list li:hover .screenshot {
    transform: scale(1.2, 1.2);
}

.list li a.link .user {
    width: 94%;
    margin: 8px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.list li a.link .user .user_left {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.list li a.link .user .user_left .avatar {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.list li a.link .user .user_right {
    width: calc(100% - 50px);
    display: flex;
    flex-direction: column;
}

.list li a.link .user .user_right .username {
    text-align: left;
    color: #000;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    text-overflow: ellipsis
}

.list li a.link .user .user_right .bottom {
    display: flex;
    color: #a8a8a8;
    font-size: 12px;
    width: 100%;
    justify-content: space-between;
}

.list li a.link .user .user_right .bottom .type {
    width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
}

.list li a.link .user .user_right .bottom .nums {
    padding-left: 18px;
    background: url("../images/index/nums.png") no-repeat left center;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}