.active_list_banner {
	position: relative;
    margin-top: 101px;
}

.active_list_banner > .bg {
	width: 100vw;
}

.active_list_banner > .info {
    position: absolute;
    top: 166px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.active_list_banner > .info > .title {
    font-size: 80px;
    color: #004EA2;
    letter-spacing: 0.5rem;
    margin-bottom: 20px;
    -webkit-text-stroke: 10px #fff;
    paint-order: stroke fill;
    font-weight: 700;
}

.active_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding-top: 58px;
    padding-bottom: 32px;
}

.active_list > .list {
  	display: flex;
    flex-direction: column;
}

.active_list> .list > .item {
  	margin-bottom: 78px;
}
.active_list > .list > .item > a {
	display: flex;
}

.active_list > .list > .item > a > .left {
	margin-right: 58px;
}

.active_list > .list > .item > a > .left > .index {
    height: 118px;
    width: 133px;
    background: #CCCCCC;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 40px;
    transition: background-color 0.5s ease;
}

.active_list > .list > .item > a > .left > .time {
    width: 131px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #CCCCCC;
    font-size: 18px;
    border: 1px solid #CCCCCC;
    transition: border-color 0.5 ease, color 0.5s ease;
}

.active_list > .list > .item:hover > a > .left > .index {
 	background: #004EA2;
}

.active_list > .list > .item:hover > a > .left > .time {
 	color: #004EA2;
  	border-color: #004EA2;
}

.active_list > .list > .item > a > .right > .title {
    color: #000;
    font-size: 30px;
    margin-top: 3px;
    margin-bottom: 40px;
    max-width: 1187px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.5s ease;
}

.active_list > .list > .item > a > .right > .desc {
	color: #555;
  	font-size: 16px;
    max-width: 1187px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word
	transition: color 0.5s ease;
}

.active_list > .list > .item:hover > a > .right > .title {
 	color: #004EA2;
}

.active_list > .list > .item:hover > a > .right > .desc {
 	color: #004EA2;
}