infolist.less 3.39 KB
#infolist{
  font-family: 'Microsoft YaHei', 'WenQuanYi Micro Hei', SimHei, tahoma, sans-serif;
    position:relative;
    .m-segment{
        border-right:1px solid #23ac38;
        display: inline-block;
        margin-top:7px;
    }
    .m-segment li{
        width:auto;
        border-radius:0px;
        border:1px solid #23ac38;
        border-right:0px solid #ccc;
    }
    .m-segment li a{
        width:65px;
        height:30px;
        line-height:30px;
        color:#666;
    }
    .m-segment li.on{
        background-color:#23ac38;
    }
    .m-segment li.on a{
        color:#fff;
    }
    
    .btn-edit{
        font-size:16px;
    }
    .status{
        li{
            padding-right:0px;
            width:25%;
        }
    }

    .padding10{
        padding:10px;
        padding-top: 0px;
    }
    .pusher-panel{
        position: relative;
        left: 0;
        z-index: 1;
        height: 100%;
        -webkit-transition: -webkit-transform 0.5s;
        transition: transform 0.5s;
    }
    .selects-panel{
        position: absolute;
        top: 85px;
        left: 0;
        z-index:0;
        visibility:hidden;
        width: 60px;
        height: 100%;
        background:transparent;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
        .s-one{
            margin-top:10px;
            line-height:125px;
            text-align:center;
        }
    }

    .column{
        margin-top:10px;
        padding:10px;
        border:1px solid #ddd;
        background: #fff;
        position: relative;

        .name{
            font-size:16px;
            color:#333;
            line-height:30px;
        }
        .status-label{
            font-size: 14px;
            color:#999;
            position: absolute;
            top:15px;
            right:15px;
            line-height:30px;
        }
        .status-err{
            color:#fa4535;
        }
        .field{
            font-size:14px;
            color:#999;
            .value{
                color:#fa4535;
            }
        }
        .advice{
            font-size:14px;
            color:#999;
        }
        hr{
            border:0px solid #ddd;
            border-top:1px solid #ddd;
        }
        
        .bottom-row span{
            line-height:30px;
            font-size:14px;
            color:#999;
        }
        .bottom-row .time{
            float:right;
        }
    }
    
    .m-footer{
        padding:0px;
        height:0px;
        overflow:hidden;
        -webkit-transition: height 0.3s;
        transition: height 0.3s;
    }
    .m-footer a{
        display:inline-block;
        height:50px;
        line-height:50px;
        width:50%;
        text-align:center;
        font-size: 16px;
        color:#666;
        font-family: 'Microsoft YaHei', 'WenQuanYi Micro Hei', SimHei, tahoma, sans-serif;
        font-weight:lighter;
    }
    .m-footer .btn-ok{
        color:#fff;
        background: #fa4535;
    }
    .m-footer .btn-cancel{
        color:#666;
        background:#fff;
    }
}

#infolist.panel-open{
    .pusher-panel{
        -webkit-transform: translate3d(50px, 0, 0);
        transform: translate3d(50px, 0, 0);
    }

    .selects-panel{
        visibility: visible ;
        -webkit-transition: -webkit-transform 0.5s;
        transition: transform 0.5s;
    }
    
    .m-footer{
        position:fixed;
        display:block;
        z-index:9;
        height:50px;
    }
}