body{
    margin: 0;
    background: #eee;
    display: table;
    margin: auto;
    width: 100%;
}

   .menu{
        display: table;
        width: 90%;
        margin: auto;
       
   }
   .menu ul{
       list-style: none;
        padding: 20px;
        margin: 0;
        text-align: right;
   }
   .menu ul li{
       float: left;
       margin-left: 20px;
   }
   .menu ul li:last-child{
       float: none;
   }
   .menu ul li ul {
       padding: 10px;
        margin-top: 9px;
        position: absolute;
        z-index: 2;
        background: #ddd;
        display: none;
   }
   .menu ul li:hover > ul{
       display:block;
   }
   .menu ul li ul li {
       margin: 0 0 5px 0;
        float: none;
        text-align: left;
   }
   .menu ul li ul li:last-child {
       margin: 0;
   }
   .menu a, .menu span{
        color: #444;
        padding: 10px;
        cursor: pointer;
        text-decoration: none;
   }
   .menu ul li ul li a {
        display: table;
        width: 100%;
        box-sizing: border-box;
        padding: 5px 10px;
        border-bottom: 1px solid #ddd;
   }
   .menu a:hover, .menu span:hover{
        border-bottom: 1px solid;
   }
   .fixed{
    	position: fixed;
    	z-index: 1;
    	top: 0;
   }
   
.content{
    display: table;
    width: 90%;
    min-width: 1200px;
    margin: auto;
    background: #fff;
    box-shadow: 0 0 10px #00000047;
    min-height: 100vh;
}
.content .list{
    overflow-y: auto;
}
.files-list{
    padding: 20px;
    display: flex;
    justify-content: space-around;
}
.files-list .item{
    width:30%;
    padding:15px;
    
    border:1px solid #eee;
    box-sizing: border-box;
    height:100px;
    overflow: hidden;
}
.files-list .item a{
    margin-bottom:15px;
    text-decoration: none;
}
.list .desc{
    font-size:12px;
    color:#444;
}
.list-view{
    border-right: 1px solid #ddd;
    width: 350px;
    box-sizing: border-box;
    position: absolute;
}
.list-view .list{
    width: 350px;
    display: block;
    padding-top: 20px;
    box-sizing: border-box;
    height: calc(100vh - 64px);
    overflow-y: auto;
    overflow-x: hidden;
}
.list-view .head, .content .head{
    padding: 20px;
    background: #4c687d;
    box-sizing: border-box;
    color: #fff;
    border-bottom: 1px solid #192731;
    font-size: 20px;
    font-weight: bold;
}
.list-view .head a, .content .head a{
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    margin-top: -5px;
    float: right;
    border: 1px solid #fff;
    background: #00000033;
    border-radius: 5px;
}
.list-view .list .item{
    width:100%;
    height:auto;
    padding:0;
    margin-bottom: 0;
    border:none;
}
.list-view .list .item:hover{
    background: #f5f5f5;
}
.view{
    overflow: hidden;
    padding: 0 25px;
    margin-left: 350px;
    min-height: 100vh;
}
.act{
    text-align: right;
    margin-bottom: 10px;
    margin-top: 20px;
}
.act a{
    padding: 8px 10px;
    background: #529bbf;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
}
.act .del{
    background: #bf5252;
}
.desc{
    margin-bottom: 20px;
}
.iframe{
    text-align: center;
    height: 100vh;
}

.action, .list{
    padding: 25px;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
}

form > div{
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fbfbfb;
}
form .title{
    margin-bottom: 10px;
    margin-top: -20px;
    padding: 0 5px;
    background: #fff;
    display: table;
}
form input{
    width: 100%;
    height: 25px;
    box-sizing: border-box;
}
form select{
    width: 250px;
    height: 25px;
}
form textarea{
    width: 100%;
    height: 100px;
    box-sizing: border-box;
}


.input-file {
	position: relative;
	display: inline-block;
}
.input-file-text {
	padding: 0 10px;
	line-height: 40px;
	text-align: left;
	height: 40px;
	display: block;
	float: left;
	box-sizing: border-box;
	width: 200px;
	border-radius: 6px 0px 0 6px;
	border: 1px solid #ddd;
	overflow: hidden;
	white-space: nowrap;
}
.input-file-btn {
    position: relative;
	display: inline-block;
	cursor: pointer;
	outline: none;
	text-decoration: none;
	font-size: 14px;
	vertical-align: middle;
	color: rgb(255 255 255);
	text-align: center;
	border-radius: 0 4px 4px 0;
	background-color: #419152;
	line-height: 22px;
	height: 40px;
	padding: 10px 20px;
	box-sizing: border-box;
	border: none;
	margin: 0;
	transition: background-color 0.2s;
}
.input-file input[type=file] {
	position: absolute;
	z-index: -1;
	opacity: 0;
	display: block;
	width: 0;
	height: 0;
}
 
/* Focus */
.input-file input[type=file]:focus + .input-file-btn {
	box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
 
/* Hover/active */
.input-file:hover .input-file-btn {
	background-color: #59be6e;
}
.input-file:active .input-file-btn {
	background-color: #2E703A;
}
 
/* Disabled */
.input-file input[type=file]:disabled + .input-file-btn {
	background-color: #eee;
}

.list-view .head, .content .head{
        position: relative;
    }
    #search{float: right}
    .list-view #search{
        display: none;
        position: absolute;
        bottom: -35px;
        left: 0;
        width: calc(100% - 10px);
        margin: 0 5px;
        box-sizing: border-box;
        padding: 5px;
        opacity: .9;
    }
    .btnsrh{display: none}
    .list-view .btnsrh{
        display: table;
        cursor: pointer;
        padding: 0 0 2px 2px;
        border: 1px solid #6b8eb9;
        border-radius: 3px;
        position: absolute;
        top: 15px;
        right: 20px;
        background: #3a5467;
    }
    .highlight{
        color: #f00;
        font-style: normal;
    }
    .error{
        padding:10px;
        background: red;
        color:#fff;
        box-sizing: border-box;
        margin-bottom: 30px;
        border-radius:5px;
    }
    input[name=sub]{
        width:auto;
    }
    .list .act{
        float: right;
    }
    .item{
        display: table;
        width: 100%;
        margin-bottom: 10px;
    }
    .files .count{
        color: #4c687d;
        text-align: right;
        font-weight: bold;
    }
    .files .title{
        text-decoration: none;
        font-size: 18px;
    }
    .categories .item{
        border-bottom: 1px solid #cfcfcf;
    }
    .list-view .list a{
        display: table;
        margin-bottom: 10px;
        width: 100%;
        padding: 5px 0 0 5px;
        text-decoration: none;
    }
    .list-view .categories.list a{
        position: relative;
        display: table;
        width: 100%;
        padding: 10px;
        margin: 0;
        text-decoration: none;
        box-sizing: border-box;
        border-bottom: 1px solid #e5e5e5;
    }
    .list-view .categories.list a:hover:after {
        content:'';
    	display: inline-block;
    	border: 20px solid transparent; 
    	border-left: 20px solid #f5f5f5;
    	position: absolute;
        right: -40px;
        top: 0;
    }
    .list-view .categories.list a.active:after {
        content:'';
    	display: inline-block;
    	border: 20px solid transparent; 
    	border-left: 20px solid #e0e9f0;
    	position: absolute;
        right: -40px;
        top: 0;
    }
    .list-view .categories.list a.active{
        background: #e0e9f0;
    }
    .categories .act{ margin-top: 0; }
    .list table{
        width:100%;
        border-collapse:collapse;
    }
    .list thead{
        border-bottom: 1px solid #eee;
        background:#eee;
        font-weight: bold;
    }
    .list tr{
        border-bottom:1px solid #eee;
    }
    .list table td{
        padding: 10px 5px;
    }
    .user > div{
        margin-bottom: 10px;
    }
    .auth{
        width: 400px;
        margin: 50px auto;
    }
    .auth h1{text-align: center;}
    
    .view h1{
        margin-top: 15px;
    }
    .view .back{
        float: left;
        padding:10px 15px;
        text-decoration:none;
        border:1px solid #ccc;
        border-radius:5px;
        margin: 15px 20px 0 0;
        box-shadow: 0 0 4px #00000029;
    }
    .view .back:hover{
        box-shadow:none;
    }
    .mess{
        position: absolute;
        z-index: 5;
        background: #fff;
        padding: 20px;
        top: 20px;
        right: 20px;
        border-radius: 10px;
        box-shadow: 0 0 19px 0px #00000024;
    }
    .mess .clos{
        top: 5px;
        right: 5px;
        position: absolute;
        color: #3f3f3f;
        cursor: pointer;
        font-size: 10px;
    }
    
    .times-list{
        display:none;
        background: #fff;
        position: absolute;
        padding: 15px;
        box-shadow: 0 0 9px #0000004f;
        border-radius: 10px;
        margin-left: 10px;
        font-weight: normal;
        white-space: nowrap;
    }
    .podr{
        padding: 0 20px 0 10px;
        color: #4c687d;
        font-weight: bold;
        cursor: pointer;
    }
    .podr:hover .times-list, .times-list:hover{
        display:inline;
    }