body {
	background: #ddd url("/static/img/field.jpg") fixed no-repeat top left;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	display: flex;
	height: 100%;
	margin: 0;
	flex-direction: column;
}

footer {
	margin-top: 90px;
}

.flashes {
	margin-top: 90px;
	text-align: center;
}
.copyright {
  text-align: center;
  font-size: 14px; /* 根据需要调整字体大小 */
  color: #555; /* 根据需要调整文字颜色 */
  padding: 10px; /* 根据需要调整上下左右的内边距 */
  background-color: #222; 
  position: fixed;
  bottom: 0;
  width: 100%;          
}
.copyright a {
    color: #555; /* 将链接文字颜色设置为与背景颜色相近 */
    text-decoration: none; /* 可选：去除下划线 */
}
/* 1. 标题文字粗体展示，并靠左排列 */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold; /* 文字加粗 */
    text-align: left;  /* 靠左排列 */
}

/* 2. 段落内容首行空两格 */
p {
    text-indent: 2em; /* 首行缩进2个字符 */
}