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

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

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

.product_list_banner > .info > .title {
    font-size: 70px;
    color: #003B83;
    letter-spacing: 0.5rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.product_list_banner > .info > .sub_title {
    color: #003B83;
    letter-spacing: 0.5rem;
    font-size: 32px;
    white-space: nowrap;
}

.product_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #F5F5F5;
    padding-top: 105px;
}

.product_list > .list {
    margin-bottom: 121px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.product_list > .list > .item {
    margin-bottom: 186px;
    display: flex;
    height: 400px;
}

.product_list > .list > .item > .left {
    margin-right: 42px;
}

.product_list > .list > .item > .left > img {
    height: 400px;
    width: 710px;
}

.product_list > .list > .item > .right > .title {
    font-size: 40px;
    margin-bottom: 40px;
}

.product_list > .list > .item > .right > .desc {
    font-size: 18px;
    color: #0A131A;
    white-space: pre-wrap;
    width: 535px;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    line-height: 2.5em;
    overflow: hidden;
}

.product_list > .list > .item2 > .title {
    font-size: 40px;
    margin-top: 90px;
    margin-bottom: 45px;
}

.product_list > .list > .item2 > .desc {
    font-size: 18px;
    max-width: 1295px;
    color: #0A131A;
}

.home_more {
	background: #37699E;
    margin-top: 68px;
    justify-self: end;
  	width: 235px;
  	height: 62px;
    display: flex;
    align-items: center;
  	color: #fff;
  	font-size: 26px;
  	border-radius: 31px;
  	position: absolute;
  	z-index: 6;
  	justify-content: center;
  	cursor: pointer;
  	transition: all 0.5s ease;
  	box-sizing: border-box;
  	line-height: 0;
}
.home_more:hover {
	background: #FFFFFF;
  	border: 5px solid #37699E;
  	color: #37699E;
  	box-shadow: 0px 4px 28px 0px rgba(24, 37, 62, 0.5)
}