/*    SET MAIN    */

body {
    margin: 0 !important;
}

header {
	position: fixed;
	width: 100%;
    height: 50px;
    
	border-bottom: #e8ecef solid 1px;
	background: #fff;
    z-index: 100;
    
}

#index_header h2.pull-left {
    margin: 0;
    line-height: 50px;

    color: #666;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .3);
	font-weight: 500;
}

#index_header h2.pull-left small {
    margin: 0 0 0 10px;
}

#index_header div.pull-right {
    margin: 10px 0 0 0;
}

#index_header div.pull-right button {
    border: none;
    border-radius: 0;
}
#index_header div.pull-right button:not(:active):not(:hover):not(:focus):not(.active) {
    background-color: transparent;
}

main {
    position: relative;
    top: 50px;
    height: calc(100vh - 50px);

}

main div.index_left, main div.index_right {
    position: absolute;
    top: 0;
    height: 100%;
}

main div.index_left {
    left: 0;
    width: 200px;
    /*background-color: #f8fafb;*/
    border-right: #e8ecef solid 1px;
    overflow: hidden;
}

main div.index_left .list-group {
	height: 100%;
	overflow-x: auto;
	overflow-y: hidden;
}

main div.index_left .list-group:hover {
	width: 200px;/*左侧宽度*/
	overflow-y: auto;
}

main div.index_left .list-group .list-group-item {
    cursor: default;
    margin: 0;
    border: none;
    border-bottom: #e8ecef solid 1px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    transition: 0s;
}

main div.index_left .list-group .list-group-item > i.icon {
    display: inline-block;
    width: 20px;
    color: inherit;
    text-align: left;
    opacity: .6;
}


main div.index_right {
    right: 0;
    width: calc(100vw - 200px);
    max-width: calc(100vw - 200px);
}

main div.index_right .info_backdrop {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: #000;
    opacity: .3;
}

main div.index_right #PluginInfo span.label {
    font-size: 90%;
    cursor: default;

}

/*main div.index_right #PluginInfo tbody td:first-child {  // :last-child
    //width: 70px;
    //font-weight: 600;
    //text-align: right;
}*/

main div.index_right #PluginInfo tbody th/* :last-child */ {
    width: 70px;
    font-weight: 600;
    text-align: right;
}

main div.index_right #PluginInfo tbody td input.form-control {
	cursor:text;
    color: #333;
    background-color: #f9f9f9;
	width: 100%;
	margin-top: -3px;
}

main div.index_right #PluginInfo tbody td .switch {
    top: -5px;
    width: fit-content;
}
main div.index_right #PluginInfo tbody td .switch > input {
    cursor: pointer;
    top: 5px;
}
main div.index_right #PluginInfo tbody td .switch > label {
	padding: 0 0 0 35px;
}
main div.index_right #PluginInfo tbody td .switch > label:after {
    /*transition: all .15s;*/
    transition: 0s;
}



