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

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

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

.product_map_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;
    white-space: nowrap;
}

.product_map  {
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product_map > .bg {
    position: absolute;
    top: 0;
    width: 100vw;
}

.product_map > .list {
    display: grid;
    grid-template-columns: repeat(4, 274px);
    grid-auto-rows: 263px;
    gap: 36px 14px;
    padding-top: 68px;
    padding-bottom: 117px;
}

.product_map > .list > .item {
    background: #fff;
    transition: all 0.5s ease;
    border-radius: 10px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 1px 4px 0px rgba(29, 37, 53, 0.33);
    padding-bottom: 16px;
}

.product_map > .list > .item:hover {
	box-shadow: 0px 7px 24px 4px rgba(29, 37, 53, 0.33);
}

.product_map > .list > .item > a {
    display: grid;
    grid-template-rows: 1fr auto;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-items: center;
}

.product_map > .list > .item > a > img {
	max-width: 240px;
    max-height: 200px;
    transition: all 0.3s ease-out 0s;
    position: relative;
    z-index: 1;
}

.product_map > .list > .item:hover > a > img {
	transform: scale(1.1, 1.1);
}

.product_map > .list > .item > a > .info {
    max-width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.product_map > .list > .item > a > .info > .title {
    font-size: 20px;
    width: 210px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.product_map > .list > .item > a .arrow{
    background: url(../picture/right_arrow_active.png) no-repeat;
    background-color: #0C73B7;
    width: 37px;
    height: 37px;
    background-position: center;
    transition: all 0.5s ease;
    background-size: 31px 25px;
    border-radius: 3px;
}

.product_map > .list > .item:hover  > a  .arrow {
	background-image: url(../picture/right_arrow.png);
    background-color: #433081; 
}