/* 病例库列表 */
/* 病例卡片整体样式 */
.case-item {
    width: 100%;
    max-width: 750px;
    padding: 15px;
    background-color: #fff;
}

/* 弹性布局容器 */
.flex {
    display: flex;
    align-items: center;
}

/* 弹性布局两端对齐 */
.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 头像区域 */
.head {
    width: 30px;
    height: 30px;
    margin-right: 4px;
    border-radius: 50%;
    background-color: #f0f0f0;
}

.head img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* 名称信息框 */

.name-box .name {
    font-size: 11px;
    font-weight: bold;
    color: #121822;
    margin-bottom: 2px;
    display: inline-block;
}

.name-box .vtag {
    background: url(../img/v-tag.png) no-repeat;
    background-size: 14px 14px;
    background-position: right center;
    padding-right: 20px;
}

.name-box p:last-child {
    font-size: 10px;
    color: #A5AEBB;
}

/* 标题区域 */
.title {
    margin: 8px 0 6px;
    font-size: 16px;
    color: #121822;
}

/* 文本区域 - 两行文本溢出处理 */
.overflow-two {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 文本内容区域 */
.txt {
    font-size: 12px;
    color: #3C4450;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* 图片区域 */
.picture{
    margin-right: -6px;
}
.picture img{
    margin-bottom: 12px;
    height: 65px;
    border-radius: 4px;
    margin-right: 6px;
    width: 120px;
}

/* 标签区域 */
.tag-box {
    margin-bottom: 6px;
}

.tag-item {
    display: inline-block;
    padding: 0 6px;
    margin-right: 6px;
    margin-bottom: 6px;
    font-size: 10px;
    line-height: 16px;
    background-color: #F7F8FA;
    color: #A5AEBB;
    border-radius: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /*max-width: 84px;*/
}

/* 底部标签样式 */
.yellow-tag, .problem-tag {
    display: inline-block;
    padding: 0 6px;
    font-size: 10px;
    line-height: 16px;
    border-radius: 4px;
}

.yellow-tag {
    background: url(../img/icon_yellow.png) no-repeat,linear-gradient(272.52deg, #402E27 1.4%, #675240 99.45%);
    background-size: 10px 8px,100% 100%;
    background-position: 6px center,center center;
    padding-left: 18px;
    color: #F5DCBD;
    margin-right: 8px;
}

.problem-tag {
    background-color: #EDF4FF;
    color: #4D94FF;
    margin-right: 8px;
}

/* 浏览数据样式 */
.look-num {
    font-size: 11px;
    color: #A5AEBB;
}
.video{
    width: 100%;
    height: 200px;
    margin-bottom: 12px;
    position: relative;
}
.video img{
    width: 100%;
    height: 100%;
    border-radius: 4px;
}
.video .play{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 40px;
    height: 40px;
    background: url(../img/icon_play.png) no-repeat;
    background-size: 100% 100%;
}
.video .time{
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 11px;
    line-height: 20px;
    color: #fff;
    background: rgba(0,0,0,.5);
    padding: 0 8px;
    border-radius: 30px;
}
.head.double{
    margin-right: 20px;
}
.head.double img:last-child{
    transform: translate(50%,-100%);
}
