/*
Copyright (c) 2009, Keepton. All rights reserved.
Based on YUI http://developer.yahoo.com/yui/reset/reset.css
and Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
and Shawphy(shawphy.com) http://shawphy.com/2009/03/my-own-reset-css.html
Licensed under the BSD License:
http://creativecommons.org/licenses/BSD/
version: 1.0 | 20090425
*/

body,
div,
dl,dt,dd,
ul,ol,li,
h1,h2,h3,h4,h5,h6,
form,fieldset,legeng,input,button,textarea,
code,
pre,
p,
blockquote,
th,td {
	margin:0;
	padding:0;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse:collapse;
	border-spacing:0;
}

caption,
th {
	text-align:left;
}

fieldset,
img,
abbr,
acronym {
	border:0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var,
otpgroup {
	font-style:normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size:100%;
}

abbr,
acronym {
	font-variant:normal;
}

input,
button,
textarea,
select,
optgroup,
option {
	font-family:inherit;
	font-size:inherit;
	font-style:inherit;
	font-weight:inherit;
}

code,
kdb,
samp,
tt {
	font-size:100%;
}

sub,
sup {
	font-size:100%;
	vertical-align:baseline;
}

ul,
ol {
	list-style:none;
}

q,
blcokquote {
	quotes:none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
	content:'';
	content:none;
}

:link,
:visited,
ins {
	text-decoration:none;
}

/* remember to define focus styles! */
:focus {
    outline: 0;
}

/*because legend doesn't inherit in IE */
legend {
	*color:#000;
}

/*@purpose To enable resizing for IE */
/*@branch For IE6-Win, IE7-Win */
input,
button,
textarea,
select {
	*font-size: 100%;
}



/* Clear float */

.clearfix:after { 
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/* Layout and share */

body {	
	font-family:"Lucida Grande","Lucida Sans Unicode",Arial,Verdana,sans-serif;
	font-size:12px;
	font-weight:normal;
	text-align:left;
	color:#737A7F;
}

h1,h2,h3,h4 { 
	font-family:Georgia,"Times New Roman",Times,serif; 
	font-weight:normal;
}

a,a span { cursor:pointer; }

.text-line a:hover { text-decoration:underline; }

/* List files */

#main {
	margin: 0 auto;
	text-align: left;
}

#main h1 {
	padding: 10px 0 10px 140px;
	font-size: 30px;
	color: #000;
	font-weight: 400;
}

.clearfix h1 { float: left; }

#main h1 a { color: #000; }
#main h1 a:hover { color: #000; }

#main ul { padding: 10px 0; }

ul.appList li {
	margin-left:150px;
	padding:5px 0;
}

ul.appList b {
	margin-right: 10px;
	font-size:30px;
}

ul.appList li a {
	font-size: 30px;
	color: #2568ff;
}

ul.appList a:hover { color: #000; }

.dis-no { display: none; }

.bt_box {
	float: left;
	padding: 15px 0 0 20px;
	font-size: 20px;
}

.node_title {
	padding-top: 50px;
	text-align: center;
	font-size:100px;
}

.node_button {
	padding-top: 50px;
	text-align: center;
	font-size:40px;
}
.node_button button {
	padding: 5px 20px;
}



/* toast 提示样式 */
#toast {
  visibility: hidden;
  min-width: 220px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10px 16px;
  position: fixed;
  left: 500px;
  top: 0px;
  transform: translateX(-50%);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.5s ease, bottom 0.5s ease;
}

#toast.show {
  visibility: visible;
  opacity: 1;
  top: 20px;













