ul,
	ol {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	body,
	html {
		margin: 0;
		height: 100%;
		min-height: 100%;
		min-width: 1850px;
		width: 100%;
	}

	.flex {
		display: flex;
	}

	.flex-column {
		flex-direction: column;
	}

	.justify-center {
		justify-content: center
	}

	.align-center {
		align-items: center;
	}

	.justify-between {
		justify-content: space-between;
	}

	.align-between {
		align-items: space-between;
	}

	.align-self-center {
		align-self: center;
	}

	.align-self-end {
		align-self: flex-end;
	}

	.justify-self-center {
		justify-self: center;
	}

	.justify-self-end {
		justify-self: flex-end;
	}

	.justify-end {
		justify-content: flex-end;
	}

	.flex-wrap {
		flex-wrap: wrap;
	}

	.index {
		height: 100%;
		width: 100%;
	}

	.header {
		height: 330px;
		width: 100%;
	}

	.header-menu {
		width: 1400px;
		height: 130px;
		margin: 0 auto;
	}

	.header-search {
		width: 20%;
		height: 100%;
	}

	.header-logo {
		width: 20%;
		height: 100%;
	}

	.input-area {
		height: 90%;
		width: 80%;
		margin-left: 10px;
		border: none;
		background: none;
		outline: none;
	}

	.header-center {
		width: 90%;
		min-width: 1600px;
		height: 200px;
		background-color: #005dab;
	}

	.header-bottom {
		width: 90%;
		min-width: 1600px;
		/* padding-left: 15%; */
		height: 180px;
		background-color: #e9ecef;
		position: absolute;
		top: 155px;
		border: 2px solid hsla(0, 0%, 100%, .5);
	}

	.header-bottom-title {
		font-size: 40px;
		font-weight: 600;
		color: #005dab;
		/* margin-left: 20%; */
	}

	.header-bottom-line {
		height: 3px;
		width: 50px;
		background-color: #ffaa00;
		/* margin-left: 20%; */
	}

	.input-box {
		background-color: #e9ecef;
		width: 90%;
		height: 40px;
		border-radius: 20px;
	}

	.text-box {
		width: 80%;
		height: 100%;
		padding: 20px;
		line-height: 30px;
		word-wrap: break-word;
	}

	.list-box {
		/* width: 80%; */
		min-width: 600px;
		height: 100%;
		flex-wrap: wrap;
		margin-top: 20px;
	}

	.list-area {
		margin: 0 30px 0 30px; 
		width: 45%;
		line-height: 30px;
		word-wrap: break-word;
		flex-shrink: 0;
		border-bottom: 2px solid #d0d4df;
		padding-top: 20px;
	}

	.list-area-date {
		width: 10%;
		height: 50px;
		color: #005dab;
	}
	
	.date-month {
		font-size: 18px;
	}
	
	.date-day {
		font-size: 24px;
		font-weight: bold;
	}

	.list-area-info {
		width: 90%;
		margin-bottom: 20px;
	}

	.list-area-title {
		text-decoration: none;
		color:#000000;
		font-size: 24px;
		font-weight: bold;
		width: 100%;
		-webkit-line-clamp: 2;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.list-area-title:hover{
		text-decoration: none;
	}

	.list-area-content {
		font-size: 15px;
		color: #57595d;
		margin-top: 20px;
		line-height: 23px;
		width: 100%;
		-webkit-line-clamp: 3;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.body-box {
		/* min-height: 539px; */
		/* width: 100%; */
		width: 1300px;
		margin:  auto;
		
	}

	.footer {
		height: 100px;
		width: 100%;
		flex-shrink: 0;
	}

	.footer-right {
		/* min-width: 1600px; */
		width: 90%;
		height: 100%;
		background-color: #005dab;
		border-bottom: 2px solid #fff;
		color: #fff;
	}

	.footer-left {
		width: 4%;
		height: 70%;
		background-color: #d0d4df;
		align-self: flex-end;
		border-bottom: 2px solid #fff;
	}
.page {
	height: 40px;
        margin: 70px auto;
}

@media screen and (min-width: 2000px) {  
  /* 在这里放置你的样式规则 */  
	.public-width {
		width: 1800px !important;
	}
}