#full_box {
    background: #f8f7ff;
}

.portal-base-layout {
    padding-bottom: 40px;
}

.full-app-box {
    min-height: calc(100vh - 260px - 64px);
    background: #fff;
    box-shadow: 0 0.08rem 0.16rem rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 20px 30px;
}

.full-app-box-conent {
    min-height: calc(100vh - 260px - 64px - 30px);
}

.full-app-box-content-item {
    width: 100%;
    height: 153px;
    padding: 20px 0;
    border-bottom: 1px dashed #dedede;
    cursor: pointer;
    display: block;
}

.full-app-content-title {
    font-size: 16px;
    padding-left: 15px;
    position: relative;
    color: rgb(51, 51, 51);
    height: 44px;
    line-height: 44px;
}

.full-app-content-title::before {

    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-radius: 50%;
    background-color: rgba(0, 112, 255, 1);
}

.full-app-content-content{
    padding-left: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgb(153, 153, 153);
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.full-app-content-data{
    padding-left: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgb(153, 153, 153);
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding-top: 5px;
}