#caseDetail {
    padding: 50px 0;
}

#caseDetail .box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#caseDetail .box .iframe {
    padding: 20px;
    box-sizing: border-box;
    background-image: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    border-radius: 10px;
}

#caseDetail .box .content {
    padding: 20px;
    box-sizing: border-box;
    background-image: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    border-radius: 10px;
}

#caseDetail .box .content .title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 20px;
    color: #303133;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#caseDetail .box .content .item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #fff;
}

#caseDetail .box .content .item .tag {
    height: 24px;
    padding: 0 8px;
    line-height: 22px;
    display: inline-block;
    font-size: 12px;
    color: #409EFF;
    border: 1px solid #d9ecff;
    border-radius: 4px;
    box-sizing: border-box;
    white-space: nowrap;
    background: #ecf5ff;
}

#caseDetail .box .content .item p {
    color: #606266;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#caseDetail .box .content .team {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    align-items: center;

}

#caseDetail .box .content .team .avatar {
    border: 2px solid #f2f2f2;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    display: block;
}

#caseDetail .box .content .team .name {
    font-size: 16px;
    color: #303133;
}

#caseDetail .box .content .team .call {
    background-color: #ecf5ff;
    border-color: #d9ecff;
    display: inline-block;
    height: 32px;
    padding: 0 10px;
    line-height: 30px;
    font-size: 12px;
    color: #409EFF;
    border-width: 1px;
    border-style: solid;
    border-radius: 4px;
    box-sizing: border-box;
    white-space: nowrap;
}

#caseDetail .box .content .team .desc {
    font-size: 14px;
    color: #606266;
}