﻿html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.div-content {
    flex: 1;
    min-width: 0;
    min-height: 0;
    overflow: auto;
    display: flex;
    flex-direction: column;
}

    .div-content .panel + .panel {
        margin-top: 20px;
    }

.div-title {
    display: flex;
    margin: 0 auto;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #145ccd;
}



    .div-title .div-left {
        font-size: 20px;
        font-weight: bold;
        position: relative;
    }

        .div-title .div-left::after {
            content: '';
            position: absolute;
            top: 20%;
            left: -10px;
            height: 60%;
            width: 3px;
            background-color: #145ccd;
        }

    .div-title .div-right {
        display: flex;
        justify-content: flex-end;
    }

        .div-title .div-right .input-group {
            margin-right: 10px;
        }

.div-list {
    display: flex;
    flex-direction: column;
}

    .div-list.no-list {
        flex: 1;
        justify-content: center;
        align-items: center;
    }

.panel {
    margin: 0 auto;
    width: 100%;
}

.panel-heading {
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    padding-right: 50px;
}

    .panel-heading .icon {
        position: absolute;
        top: 6px;
        right: 30px;
        font-size: 24px;
    }

.panel-body {
    padding: 0 15px;
}

.panel-fold .panel-body,
.panel-fold .panel-footer {
    display: none;
}

.table {
    margin: 0;
}

    .table td {
        word-break: break-all;
        font-size: 14px;
        vertical-align: middle;
        padding: 3px 5px;
    }

        .table td .iconfont {
            font-size: 18px !important;
        }

        .table td.td-content-icon {
            vertical-align: top;
        }

.div-top {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 120px;
    right: 20px;
    border: 1px solid #bd7b46;
    background-color: #f7ebe1;
    border-radius: 4px;
    color: #000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: .3;
    cursor: pointer;
}

    .div-top.display {
        display: flex;
    }

    .div-top:hover {
        transition: .3s;
        opacity: .8;
    }

    .div-top .iconfont {
        font-size: 28px;
        font-weight: bold;
    }

@media (max-width: 768px) {
    .div-content {
        padding: 0 20px;
    }

    .div-title {
        flex-wrap: wrap;
    }

        .div-title .div-left {
            width: 100%;
        }

        .div-title .div-right {
            width: 100%;
        }
}

@media (min-width: 768px) {
    .div-title, .panel {
        max-width: 740px;
    }
}

@media (min-width: 992px) {
    .div-title, .panel {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .div-title, .panel {
        max-width: 1160px;
    }
}


.div-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.div-header {
    height: 40px;
    overflow: visible;
    margin-bottom: 15px;
    z-index: 9;
}

    .div-header .navbar {
        margin: 0;
    }

    .div-header .navbar-brand {
        padding: 0;
    }

    .div-header .navbar-inverse .navbar-nav > li > a {
        color: #fff;
    }

    .div-header .navbar-brand img {
        width: 40px;
        height: 40px;
    }


.div-main {
    flex: 1;
    min-width: 0;
    min-height: 0;
}

.div-footer {
    margin-top: 20px;
    background-color: #145ccd;
    border-color: #10479f;
    padding: 10px 20px;
    text-align: center;
    color: #fff;
    border-radius: 4px;
}

@media (max-width: 768px) {

    .div-footer {
        border-radius: 0px;
    }
}


.switch > input {
    cursor: pointer;
}

.form {
    /*width: 50%;*/
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .form {
        max-width: 740px;
    }
}

@media (min-width: 992px) {
    .form {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .form {
        max-width: 1200px;
    }
}


.iframe-error {
    width: 100%;
    height: 100%;
}
