@charset "UTF-8";
@import "mixin";
html,
body {
    min-height: 100%;
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    overflow-y: auto;
}
a {
    color: #3c8dbc;
    &:hover,
    &:active,
    &:focus {
        color: #72afd2;
        outline: none;
        text-decoration: none;
    }
}
/**
 * 基础布局 
 * -------
 */
.backman {
    min-height: 100%;
    position: relative;
    overflow: hidden;
    &:before,
    &:after {
        content: " ";
        display: table;
    }
    &:after {
        clear: both;
    }
}
.backman-content {
    z-index: 800;
    min-height: 100%;
    margin-left: 230px;
    background-color: #ecf0f5;
    -webkit-transition: -webkit-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
    -moz-transition: -moz-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
    -o-transition: -o-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
    .container-fluid {
        position: relative;
        min-height: 100%;
        margin: 15px 15px 20px;
        padding: 20px;
        font-family: Helvetica,'微软雅黑', Arial,sans-serif;
        border-radius: 3px;
        background: #ffffff;
        border-top: 3px solid #d2d6de;
        @include prefixer(box-shadow, 0 1px 1px rgba(0,0,0,0.1));
    }
}
@media (max-width: 767px) {
    .backman-content {
        margin-left: 0;
        > .container-fluid {
            margin: 0;
            padding-bottom: 30px;
            border: none;
            box-shadow: none;
            border-radius: 0;
        }
    }
    .sidebar-open .backman-content {
        @include prefixer(transform, translate(230px, 0));
    }
}
@media (min-width: 768px) {
    body {
        position: absolute;
        min-height: 100%;
        width: 100%;
    }
    .backman {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }
    .backman-content {
        overflow-y: auto;
    }
}