Skip to content
operation-list.scss 1.31 KiB
Newer Older
wangqinghua's avatar
wangqinghua committed
page-operation-list {
    .searchToolBar{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: left;
        box-sizing: border-box;
    }
    
    .content{
        background-color: #f1f1f1;
    }

    .content-box{
        margin-left: 25px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .content-item-box{
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: left;
        box-sizing: border-box;
    }

    .left-title{
        color: #8b8c8d;
        font-size: 14px;
    }

    .data-box{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        box-sizing: border-box;
        width: 100%;
    }

    .data{
        color: #666666;
        font-size: 14px;
    }

    .data-1{
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2; //文本行数
        overflow: hidden;
       white-space: normal;
    }

    .btn{
        background-color: white;
        margin: 0 0;
        height: 1.6rem;
        font-size: 1rem;
        border: 1px solid #69c4e2;
        color: #69c4e2;
        border-radius: 2px;
    }


    .back-btn{
        width: 30px;
        height: 30px;
    }

}