.wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.content-wrap {
    width: 800px;
}

.tx {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.el-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.flag-list {
    width: calc((100% - 90px) / 4);
    margin-right: 30px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.flag-list:nth-child(4n) {
    margin-right: 0;
}

.flag-list>div {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.flag-list .flag-box {
    flex: 1;
}

.flag-list .img {
    width: 100%;
    height: 150px;
    position: relative;
}

.flag-list .video-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-list .video-img::after {
    display: inline-block;
    position: absolute;
    content: '\e624';
    font-family: 'iconfont' !important;
    font-size: 40px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
}

.flag-list .content {
    padding: 10px;
}

.flag-list .content .time {
    color: #aaa;
    font-size: 12px;
}

.flag-list .content .title {
    font-size: 15px;
}

.flag-list .content .area {
    margin-top: 10px;
    font-size: 12px;
    color: #aaa;
}

.flag-list .content .area .iconfont {
    margin-right: 5px;
}

.flag-list .bottom-iconbox {
    color: #A7A7A7;
}

.flag-list .bottom-iconbox .active {
    color: var(--theme-color);
}

.flag-list .bottom {
    border-top: 1px solid #eee;
    padding: 10px;
}

.flag-list .bottom .user {
    display: flex;
    align-items: center;
    flex: 1;
    margin-right: 10px;
}

.flag-list .bottom .user .name {
    margin-left: 5px;
}

.flag-list .bottom .see {
    font-size: 12px;
    color: #aaa;
    margin-left: 3px;
}

.tag-box {
    margin-top: 10px;
}

.tag {
    background: #f5f5f5;
    border-radius: 3px;
    color: #777;
    padding: 3px 5px;
    font-size: 12px;
}

.el-icon-picture-outline {
    font-size: 50px;
    color: #ccc;
}

/* 移动端 */
@media (max-width: 600px) {
    .flag-list {
        width: calc(100% - 30px);
        margin: 15px;
    }
}

.flag-list {
    width: calc((100% - 45px) / 3);
    border: 0;
    margin-right: 15px;
}

.flag-list:nth-child(3n) {
    margin-right: 0;
}

.flag-list .flag-list-box {
    margin-bottom: 15px;
    background: #fafafa;
    border-radius: 15px;
}

.flag-list .content {
    padding: 0 10px;
}

.flag-list .bottom {
    border: 0;
}

.flag-list .video-img {
    width: 100%;
    display: block;
    position: relative;
    margin-top: 15px;
    min-height: 100px;
}

.flag-list .video-img::after {
    position: absolute;
    left: calc(50% - 20px);
    top: calc(50% - 20px);
}

.flag-list .video-img .v-img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

.flag-list .img-box {
    display: inline-flex;
    flex-wrap: wrap;
    margin-top: 15px;
    padding-left: 10px;
}

.flag-list .img-box .pic {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    margin-right: 10px;
    margin-bottom: 10px;
    object-fit: cover;
}

.flag-list .exp-lab {
    margin-left: 5px;
    color: var(--theme-color);
    background: var(--theme-bg);
    font-size: 12px;
    padding: 3px 5px;
    border-radius: 15px;
}

.flag-list .exp-lab .iconfont {
    color: var(--theme-color);
    margin-right: 3px;
    font-size: 12px;
}

.img-box {
    position: relative;
}

.img-box .tag {
    position: absolute;
    top: 0px;
    left: 0px;
    background: red;
    color: #fff;
    padding: 5px;
}

.topic-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px;
}

.topic-wrap .topic-box {
    display: inline-flex;
    align-items: flex-start;
    flex-direction: column;
}

.topic-wrap .topic-box .topic {
    background: var(--theme-bg);
    padding: 3px;
    margin-bottom: 5px;
    border-radius: 5px;
    font-size: 12px;
    margin-right: 7px;
}

.topic-wrap .topic-box .topic::before {
    display: inline-block;
    content: '#';
    color: var(--theme-color);
    margin-right: 3px;
    font-size: 14px;
    font-weight: bold;
}

.comment-box {
    background: #f3f3f3;
    padding: 7px;
    border-radius: 5px;
    margin: 0 10px;
    word-break: break-all;
    white-space: normal;
}

.comment-box p {
    font-size: 12px;
    margin-bottom: 5px;
    color: #333;
}

.comment-box p:last-child {
    margin-bottom: 0;
}

.comment-box .name {
    font-weight: bold;
    font-size: 12px;
    /* color: #757575; */
    margin-right: 7px;
}

.comment-box .txt {
    padding: 10px;
}

.comment-box .tx-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-box .tx-box .tx {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 7px;
}

.comment-box .tx-box .name-box {
    display: inline-flex;
    align-items: center;
}

.comment-box .tx-box .hot-lab {
    background: var(--theme-bg);
    color: var(--theme-color);
    padding: 3px;
    border-radius: 5px;
    margin-left: 5px;
    font-size: 10px;
}

.sh-tag {
    padding: 10px;
    color: var(--theme-color);
}

/* 移动端 */
@media (max-width: 600px) {
    .el-row {
        display: block;
    }

    .flag-list {
        width: calc(100% - 30px);
        margin: 15px;
    }

    .flag-list .img-box .pic {
        width: calc((100vw - 70px) / 3);
        height: calc((100vw - 70px) / 3);
    }
}