/* 全局 */
* {
	box-sizing: border-box;
}
html {
	width: 100%;
	height: 100%;
}
body {
	width: 602px;
	margin: 0 auto;
	padding-bottom: 20px;
	cursor: default;
}
/* 标题 */
h1 {
	width: 600px;
	text-align: center;
}
/* 滚动条 */
.myscroll {
	scrollbar-width: thin;
}
.myscroll::-webkit-scrollbar {
	width: 7px;
	height: 7px;
	background-color: #dedede;
}
.myscroll::-webkit-scrollbar-thumb {
	width: 5px;
	height: 5px;
	background-color: #b1b1b1;
}
/* 授权 */
#auth>* {
	vertical-align: middle;
}
#auth>input {
	width: 495px;
	height: 30px;
	outline: none;
	padding: 0 5px;
	border: 1px solid #333;
}
#auth>button {
	width: 100px;
	height: 32px;
	outline: none;
	border: 1px solid #333;
}
#auth>button:hover {
	background-color: #333;
	color: #FFF;
}
#auth>button:active {
	background-color: #525252;
	color: #FFF;
}
/* 空间 */
#space {
	width: 495px;
	height: 30px;
	margin-top: 25px;
	border: 1px solid #333;
	position: relative;
}
#space1 {
	width: 0%;
	height: 100%;
	background-color: green;
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
}
#space2 {
	width: 100%;
	height: 100%;
	line-height: 26px;
	text-align: center;
	position: absolute;
	z-index: 2;
	left: 0;
	top: 0;
}
#refresh {
	width: 100px;
	height: 30px;
	outline: none;
	border: 1px solid #333;
	position: absolute;
	z-index: 3;
	right: -106px;
	top: -1px;
}
#refresh:hover {
	background-color: #333;
	color: #FFF;
}
#refresh:active {
	background-color: #525252;
	color: #FFF;
}
/* 消息 */
#msg {
	width: 600px;
	height: 100px;
	padding: 5px;
	outline: none;
	margin-top: 25px;
	border: 1px solid #333;
}
/* 树 */
#myTree {
	width: 600px;
	height: 300px;
	margin-top: 15px;
	border: 1px solid #333;
	overflow: auto;
}
/* 右键 */
#menus {
	border: 1px solid #333;
	background-color: #FFF;
	position: absolute;
	display: none;
}
#menus>.menu:hover {
	background-color: #333;
	color: #FFF;
}
#menus>.menu:active {
	background-color: #525252;
	color: #FFF;
}
/* 文件 */
#files {
	width: 600px;
	max-height: 300px;
	margin-top: 20px;
	border: 1px solid #333;
	overflow: auto;
}
#files>.file {
	height: 30px;
	border-bottom: 1px solid #333;
	position: relative;
}
#files>.file:last-child {
	border-bottom: none;
}
#files>.file>* {
	height: 100%;
	line-height: 30px;
	float: left;
}
#files>.file>.name {
	width: 80%;
	overflow: hidden;
	text-indent: 6px;
    text-overflow: ellipsis;
}
#files>.file>.size {
	width: 20%;
	text-indent: 6px;
}
#files>.file>.prog {
	width: 0%;
	background-color: green;
	z-index: -1;
	position: absolute;
	left: 0;
	top: 0;
}