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

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

.active_banner > .info {
    position: absolute;
    top: 163px;
    left: 17.6%;
}

.active_banner > .info > .title {
    font-size: 70px;
    color: #0636B1;
    letter-spacing: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.active_banner > .info > .sub_title {
	font-size: 25px;
    color: #8C9ED3;
    letter-spacing: 0.1em;
    margin-bottom: 22px;
}

.active_banner > .info > .desc {
	white-space: pre;
    font-size: 17px;
    color: #292F54;
}

.active {
    display: flex;
    flex-direction: column;
    align-items: center;
  	margin-top: 64px;
}

.active > .active_item > .head {
	position: relative;
}

.active > .active_item > .head > .title, .active > .active_item > .head > .dot, .active > .active_item > .head > .desc {
	position: absolute;
}

.active > .active_item > .head > .title {
	top: 118px;
    font-size: 48px;
    left: 134px;
    color: #0636B1;
    font-weight: 500;
}

.active > .active_item > .head > .dot {
	width: 40px;
    height: 5px;
    background: #0636B1;
    left: 134px;
    top: 187px;
}

.active > .active_item > .head > .desc {
    color: #373438;
    font-size: 18px;
    top: 227px;
    left: 131px;
    white-space: pre;
}

.active > .active_item:nth-child(2) > .head > .title {
	color: #027D6D;
}

.active > .active_item:nth-child(3) > .head > .title {
	color: #FC8406;
}

.active > .active_item:nth-child(2) > .head > .dot {
	background: #027D6D;
}

.active > .active_item:nth-child(3) > .head > .dot {
	background: #FC8406;
}

.active > .active_item > .list {
	margin-top: 43px;
  	margin-bottom: 121px;
  	display: flex;
    flex-direction: column;
}

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

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

.active > .active_item > .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 > .active_item > .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 > .active_item > .list > .item:hover > a > .left > .index {
 	background: #004EA2;
}

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

.active > .active_item > .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 > .active_item > .list > .item > a > .right > .desc {
	color: #555;
  	font-size: 16px;
    max-width: 1130px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word
	transition: color 0.5s ease;
}

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

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

.active > .active_item > .list > .more {
    width: 150px;
    height: 42px;
    display: block;
    background: #004FA2;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    font-size: 18px;
    align-self: end;
    align-items: center;
}

.active > .active_item:nth-child(2) > .list > .more {
	background: #027D6D;
}

.active > .active_item:nth-child(3) > .list > .more {
	background: #FC8406;
}