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

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

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

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

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

.news > .list {
  	margin-bottom: 121px;
  	display: flex;
    flex-direction: column;
}

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

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

.news > .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;
}

.news  > .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;
}

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

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

.news  > .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;
}

.news > .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;
}

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

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

.news > .list > .item_first > .title {
    font-size: 40px;
    max-width: 1387px;
    margin-bottom: 41px;
}

.news > .list > .item_first > .time {
    font-size: 50px;
    color: #004EA2;
    display: flex;
    padding-bottom: 30px;
    justify-content: space-between;
    border-bottom: #004EA2 solid;
}

.news > .list > .item_first > .time > a {
    color: #004EA2;
    cursor: pointer;
}

.news > .list > .item_first > .content {
    width: 1387px;
    margin-top: 30px;
    display: flex;
    margin-bottom: 103px;
    height: 240px;
}

.news > .list > .item_first > .content > .desc {
    font-size: 18px;
    color: #555;
    margin-right: 35px;
  	overflow: hidden;
}

.news > .list > .item_first > .content > img {
	height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.news_detail {
    margin-top: 101px;
    background: #F5F5F5;
    padding-top: 118px;
    display: flex;
    justify-content: center;
    padding-bottom: 200px;
}

.news_detail > .item {
    display: flex;
    width: 1381px;
    flex-direction: column;
}

.news_detail > .item > img {
	margin-bottom: 79px;
}

.news_detail > .item > .title {
    font-size: 40px;
    margin-bottom: 40px;
}

.news_detail > .item > .time {
    font-size: 50px;
    margin-bottom: 30px;
    color: #004EA2;
}

.news_detail > .item > .line {
	height: 1px;
    width: 100%;
    background: #004EA2;
    margin-bottom: 36px;
}