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;
}

.index-swiper {
	float: left;
	width: 460px;
	height: 400px;
	margin-top: 30px;
}

.swiper-container {
	width: 100%;
	height: 100%;
	position: relative;
}

.pagination {
	position: absolute;
	z-index: 20;
	bottom: 20px;
	width: 100%;
	text-align: right;
}

.swiper-slide > img {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.swiper-pagination-switch {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin: 0 4px;
	opacity: .2;
	cursor: pointer;
}

.swiper-pagination-switch:last-child {
	margin-right: 20px;
}

.swiper-active-switch {
	background: #007aff;
	opacity: 1
}

.index-content {
	float: right;
	width: calc(100% - 460px);
	min-height: 400px;
	margin-top: 30px;
	padding-left: 20px;
	box-sizing: border-box;
}

.content-list-box {
	width: 100%;
	height: 43px;
	line-height: 43px;
	background: rgb(234, 234, 234);
}

.box-title {
	color: rgb(0, 84, 255);
	font-size: 17px;
	margin-left: 15px;
}
@media screen and (max-width: 1440px){
	.box-title {
		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;
	}
}

.index-content-list {
	width: 100%;
	padding: 0 5px;
	box-sizing: border-box;
	font-size: 16px;
}
@media screen and (max-width: 1440px){
	.index-content-list{
		font-size: 15px;
	}
}

.index-content-list ul li {
	width: 100%;
	height: 20px;
	color: #333;
	line-height: 20px;
	margin-top: 20px;
	padding-bottom: 17px;
	border-bottom: 1px solid #ddd;
}

.index-content-list ul li span {
	float: right;
}

.index-content-list ul li a {
	width: calc(100% - 100px);
	height: 1.25em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.index-content-list ul li a:hover {
	cursor: pointer;
	color: #0168b7;
	transform: .5s;
}