html
.body {
	width: 100%;
	height: 100%;
}

.container {
	width: 100%;
	min-height: 500px;
	margin: 0 auto;
	padding-bottom: 50px;
	box-sizing: border-box;
}

.content-box {
	width: 1200px;
	height: 100%;
	display: flex;
	margin: 0 auto;
}

.content-box-left {
	width: calc(50% - 20px);
	min-height: 400px;
	margin: 40px 20px 20px 0;
	float: left;
}
@media screen and (max-width: 1440px){
	.content-box-left {
		margin: 20px 20px 10px 0;
	}
}

.content-box-right {
	width: calc(50% - 20px);
	min-height: 400px;
	margin: 40px 0 20px 20px;
	float: right;
}
@media screen and (max-width: 1440px){
	.content-box-right {
	margin: 20px 0 10px 20px;
	}
}

.box-title {
	width: 100%;
	height: 33px;
	line-height: 33px;
}
@media screen and (max-width: 1440px){
	.box-title {
		height: 25px;
		line-height: 25px;
	}
}

.box-img {
	width: 110px;
	height: 33px;
	color: #fff;
	background-image: url(../../image/partytubiao.png);
	background-repeat: no-repeat;
	float: left;
}
@media screen and (max-width: 1440px){
	.box-img {
		height: 25px;
	}
}

.box-img > span {
	font-size: 17px;
	margin-left: 15px;
}
@media screen and (max-width: 1440px){
	.box-img > span {
		font-size: 16px;
	}
}

.box-more {
	float: right;
	padding-right: 4px;
}

.box-more > a {
	font-size: 15px;
	color: #999;
}
@media screen and (max-width: 1440px){
	.box-more > a {
		font-size: 14px;
	}
}

.box-more > a > img {
	margin: 0 0 4px 7px;
}
@media screen and (max-width: 1440px){
	.box-more > a > img{
		margin: 0 0 2px 7px;
	}
}

.content-list {
	width: 100%;
	padding: 0 5px;
	box-sizing: border-box;
	font-size: 16px;
}
@media screen and (max-width: 1440px){
	.content-list{
		font-size: 15px;
	}
}

.content-list ul li {
	width: 100%;
	height: 24px;
	color: #333;
	line-height: 24px;
	margin-top: 20px;
	padding-bottom: 17px;
	border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 1440px){
	.content-list ul li{
		height: 18px;
		line-height: 18px;
	}
}

.content-list ul li span {
	float: right;
}

.content-list ul li a {
	width: calc(100% - 100px);
	height: 1.25em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.content-list ul li a:hover {
	cursor: pointer;
	color: #0168b7;
	transform: .5s;
}