@CHARSET "UTF-8";
body{font-family: '微软雅黑'}
/*按钮*/
a {
	color: #333;
	text-decoration: none;
}

a:active,
a:hover {
	outline: 0;
}

a:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

.button {
	border: solid 1px #ddd;
	background: transparent;
	border-radius: 4px;
	font-size: 14px;
	padding: 6px 15px;
	margin: 0;
	display: inline-block;
	line-height: 20px;
	transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
}

.button[disabled] {
	pointer-events: none;
	cursor: not-allowed;
	webkit-box-shadow: none;
	box-shadow: none;
	filter: alpha(opacity=50);
	opacity: .5;
}

.button:active {
	background-image: none;
	outline: 0;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
}

.button:hover {
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
}

.button-block {
	display: block;
	width: 100%;
}

.button-large {
	padding: 15px 20px;
	font-size: 24px;
	line-height: 24px;
}

.button-big {
	padding: 10px 15px;
	font-size: 18px;
	line-height: 22px;
}

.button-small {
	padding: 5px 10px;
	font-size: 12px;
	font-weight: normal;
	line-height: 18px;
}

.button-little {
	padding: 3px 5px;
	font-size: 12px;
	font-weight: normal;
	line-height: 16px;
}

.button.bg-main,
.button.bg-sub,
.button.bg-dot,
.button.bg-black,
.button.bg-gray,
.button.bg-red,
.button.bg-yellow,
.button.bg-blue,
.button.bg-green {
	color: #fff;
}

.border-red .button.active,
.border-yellow .button.active,
.border-blue .button.active,
.border-green .button.active,
.border-main .button.active,
.border-sub .button.active,
.border-dot .button.active,
.border-black .button.active,
.border-gray .button.active {
	color: #fff;
}

/*列表组*/
.my-menu .tree-node{
	padding: 7px 15px;
    border-bottom: solid 1px #ddd;
}

.nav-bar{clear:both;padding:10px 50px 10px 50px;background:#fff;height:30px}
.nav-bar a {display: block;float: left;margin:0 10px 0 0;}
