.news_read_box {
    width: 100%;
    padding-top: calc(19px + 4rem);
    padding-bottom: calc(1px + 4rem);
}

.news_read {
    max-width: 1600px;
    width: 85%;
    margin: auto;
}

.news_read_title {
    font-family: Source_Han_Bold;
    font-weight: 700;
    font-size: calc(6px + 1.5rem);
    color: #054191;
    line-height: calc(10px + 1.5rem);
    border-bottom: 1px #D8D8D8 solid;
    padding-bottom: calc(10px + 1.5rem);
}

.news_read_time {
    font-family: Source_Han_Regular;
    font-weight: 400;
    font-size: calc(8px + 0.5rem);
    color: #333333;
    line-height: calc(10px + 1.5rem);
    margin-top: calc(9px + 1rem);

}

.news_read_con {
    margin-top: calc(1px + 1rem);
    border-bottom: 1px #D8D8D8 solid;
    padding-bottom: calc(9px + 2rem);
}

.news_read_con p {
    font-family: Source_Han_normal;
    font-weight: 350;
    font-size: calc(6px + 0.5rem);
    color: #666666;
    line-height: calc(10px + 1.5rem);

}

.news_share {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: calc(10px + 0.5rem);
    margin-top: calc(7px + 1.5rem);
}

.news_share p {
    font-family: Source_Han_normal;
    font-weight: 350;
    font-size: calc(8px + 0.5rem);
    color: #3D3D3D;
    line-height: 1;
}

.news_share_icon {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: calc(10px + 1rem);
}

.news_share_icon img {
    width: max-content;
}

.related_pro {
    margin-top: calc(12px + 4rem);
}

.related_pro_title {
    font-family: Source_Han_Bold;
    font-weight: 700;
    font-size: calc(6px + 1.5rem);
    color: #222222;
    line-height: calc(10px + 3rem);
    letter-spacing: 1px;
    text-align: center;

}

.related_pro_list {
    display: flex;
    justify-content: space-between;
    margin-top: calc(4px + 1rem);
}

.related_pro_list_item {
    width: 23.5%;
    cursor: pointer;
}

.related_pro_list_item .related_pro_pic {
    width: 100%;
    height: calc(76px + 15rem);
    border-radius: calc(5px + 0.25rem);
    position: relative;
}

.related_pro_list_item .related_pro_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(5px + 0.25rem);
}

.related_pro_name {
    font-family: Source_Han_Regular;
    font-weight: 400;
    font-size: calc(8px + 0.5rem);
    color: #3D3D3D;
    line-height: calc(10px + 1.5rem);
    text-align: center;
    margin-top: calc(1px + 2rem);
    transition: .3s;

}

.related_pro_list_item_mask {
    width: 100%;
    height: 100%;
    border-radius: calc(5px + 0.25rem);
    background: url(../images/mask.png) no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    font-family: Source_Han_normal;
    font-weight: 350;
    font-size: calc(8px + 0.5rem);
    color: #FFFFFF;
    line-height: calc(10px + 1.5rem);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .3s;
}

.related_pro_list_item:hover .related_pro_list_item_mask {
    opacity: 1;
}

.related_pro_list_item:hover .related_pro_name {
    color: #054191;
}

@media (max-width: 1100px) {
    .news_read_title {
        font-size: calc(14px + 1rem);
        line-height: 1.5;
    }

    .news_read_time {
        font-size: calc(12px + 1rem);
    }

    .news_read_con p {
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }

    .news_share p {
        font-size: calc(10px + 1rem);
    }

    .related_pro_title {
        font-size: calc(14px + 1rem);
    }

    .related_pro_list {
        flex-wrap: wrap;
        row-gap: calc(10px + 3rem);
        margin-top: calc(10px + 2rem);
    }

    .related_pro_list_item {
        width: 48.75%;
    }

    .related_pro_name {
        font-size: calc(10px + 1rem);
    }
}