/*基本样式 公共样式*/

/* CSS Document */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}
body {
  background-color: #ededed;
	color: #434343;
	font-size: 14px;
	font-family: "微软雅黑";
	position:relative;
}
p {
	padding: 0;
	margin: 0;
  text-indent: 2em;
}

p.no-indent{
  text-indent: 0;
}

a {
	font-size: 14px;
	font-family: "微软雅黑";
	cursor: pointer;
}
ol, ul {
	padding: 0;
	margin: 0;
}
ul li {
	list-style-type: none;
}
img {
	border: 0;
}
form {
	margin: 0px;
	padding: 0px;
}

.Main {
	padding: 10px 10px 0px 10px;
	background: #ededed;
	overflow: auto;
}
/*外框样式*/
.Box {
	background: #fff;
	border: #d0d0d0 1px solid;
	border-radius: 5px;
	margin-bottom: 10px;
	padding:20px;
  min-height: calc(100vh - 20px);
  box-sizing: border-box;
}
.Main p {
	display: block;
	line-height: 26px;
}
.Main p.nullDiv {
	display: block;
	height: 26px;
	line-height: 26px;
}
.Main p.textRight{
  text-indent: 0;
	text-align: right;
}
.Main p.textCenter{
  text-indent: 0;
	text-align: center;
}
.Main p.sub-title{
	font-weight: bold;
}

table{
  color: inherit;
  font-size: inherit;
}

table p {
  text-indent: 0;
}
.scroll-box{
  overflow: auto;
  padding-bottom: 10px;
}