
* {
	margin: 0px;
	padding: 0px;
}

@-moz-keyframes loading {
	0% {
		-moz-transform: rotate(0deg);
	}
	100% {
		-moz-transform: rotate(360deg);
	}
}

@-webkit-keyframes loading {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@-o-keyframes loading {
	0% {
		-o-transform: rotate(0deg);
	}
	100% {
		-o-transform: rotate(360deg);
	}
}

@-ms-keyframes loading {
	0% {
		-ms-transform: rotate(0deg);
	}
	100% {
		-ms-transform: rotate(360deg);
	}
}

@keyframes loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

img {
	display: block;
	width: 100%;
	height: 100%;
}

ul,
li {
	list-style: none outside none;
}

ul li a {
	color: #000000;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.clear {
	clear: both;
}
html, body{
	width: 100%;
	height: 100%;
	
}
#loading {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.8);
}
#loading .loadingImg {
  margin-left: -4.06666667%;
  width: 8.13333333%;
  position: absolute;
  left: 50%;
  top: 37.73584906%;
  -moz-animation: loading 2s linear 0s infinite normal both;
  -webkit-animation: loading 2s linear 0s infinite normal both;
  -o-animation: loading 2s linear 0s infinite normal both;
  -ms-animation: loading 2s linear 0s infinite normal both;
  animation: loading 2s linear 0s infinite normal both;
}
/*page*/

#page {
	position: relative;
	width: 80%;
	height: auto;
	background-color:#fff;
	margin:0 auto;
	
}
#page  .table{
	margin-top: 100px;
	width: 100%;
	margin-bottom: 100px;
	
}
#page  .table caption{
	font-size: 40px;
	color: #000000;
	font-family: "微软雅黑";
	border: 1px solid #000;
	padding:20px 0px;
}
#page  .table a{
	font-size: 14px;
	color: blue;
}
#page  .table .projectName{
	color: blue;
	cursor:pointer;
	text-decoration: underline;
}
#page .addBtn{
	position: absolute;
	right: 10px;
	top: 30px;
	font-size: 30px;
	color: red;
}

#page  .table th{
	font-size: 20px;
	color: #000000;
	font-family: "微软雅黑";
	font-weight: 100;
	padding:10px 0px;
	
}

#addPage{
	position: fixed;
	width: 100%;
	height: 100%;
	 background-color: rgba(255,255,255,1);
	top: 0px;
	left: 0px;
	z-index: 099;
	display: none;
	
}
#addPage .addWrap{
	position: relative;
	width: 80%;
	height: auto;
	margin:0 auto;
	margin-top: 100px;
	border: 1px solid #000;
	font-size: 25px;
	color: #000000;
}
#addPage .addName{
	position: relative;
	width: 100%;
	height: 30px;
	padding: 10px 10px;
	margin-top: 40px;
}
#addPage .addInput{
	height: 80%;
	width: 500px;
	position: absolute;
	top: 5%;
	left: 250px;
	font-size: 25px;
	color: #000000;
}
#addPage  .addSendBtn{
	width: 50px;
	padding: 5px;
	font-size: 25px;
	color: #000000;
	margin:30px 300px;
	height: 30px;
	border: 1px solid #000;
}
#addPage .addCloseBtn{
	width: 50px;
	padding: 5px;
	font-size: 25px;
	color: #000000;
	height: 30px;
	border: 1px solid #000;
	position: absolute;
	left: 500px;
	bottom: 30px;
}