.bl1 {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.bl1>img {
    width: 100%;
    min-height: 30vh;
}

.bl1>.info {
    position: absolute;
    left: 5%;
    top: 50%;
}

.bl1>.info>h3 {
    font-family: Plus Jakarta Sans ExtraBold;
    font-size: var(--48px--);
    color: #FFFFFF;
    line-height: 61px;
}

.bl2 {
    width: 100%;
    position: relative;
    padding: 5% calc(5% + 80px);
    background: #F1F1F1;
}

.bl2>div:nth-child(1) {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.bl2Item {
    position: relative;
    background-color: #fff;
}

.bl2Item>div:nth-child(1) {
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 60%; */
    overflow: hidden;
    
    height: 300px;
}

.bl2Item>div:nth-child(1)>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease;
}

.bl2Item:hover>div:nth-child(1)>img {
    transform: scale(1.2);
}

.bl2Item>div:nth-child(2) {
    height: 300px;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bl2Item>div:nth-child(2)>h3 {
    height: 80px;
    font-family: Plus Jakarta Sans ExtraBold;
    font-size: var(--30px--);
    color: #333;
    line-height: 38px;

    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.bl2Item>div:nth-child(2)>p:nth-child(2) {
    /* margin-bottom: 300px; */
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s ease;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-indent: 2rem;
    font-family: Plus Jakarta Sans Regular;
}

.bl2Item:hover>div:nth-child(2)>p:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
}

.bl2Item>div:nth-child(2)>p:nth-child(3) {
    font-size: var(--24px--);
    color: #0050B1;
    text-transform: uppercase;
    transition: all .6s ease;
}

.bl2Item:hover>div:nth-child(2)>p:nth-child(3) {
    word-spacing: 10px;
}


/* 详情 */
.npdetailBox {
    padding: 5% calc(5% + 112px);
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.NpDtitle h3 {
    font-size: max(32px, 2vw);
    margin-bottom: 2%;
}

.NpDtitle p {
    color: #999;
    margin-bottom: 2rem;
}

.NpDButton {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin-top: 4rem;
}

.NpDButton>a {
    padding: 1% 10%;
    border-radius: 5px;
}

.NpDButton>a:nth-child(1) {
    color: #1131B0;
    border: 1px solid #1131B0;
    transition: all .6s ease;
}

.NpDButton>a:nth-child(2) {
    border: 1px solid #fff;
    background-color: #1131B0;
    color: #fff;
    transition: all .6s ease;
}

.NpDButton>a:nth-child(1):hover {
    background-color: #1131B0;
    color: #fff;
}

.NpDButton>a:nth-child(2):hover {
    border: 1px solid #1131B0;
    background-color: transparent;
    color: #1131B0;
}

.NpDetail>p {
    width: 100%;
    text-indent: 2rem;
}

.NpDetail {
    width: 50%;
}


.NpDetail>p img {
    width: 100%;
    object-fit: contain;
    display: inline;
}

.np2Item:hover>.i5i {
    background: rgba(0, 0, 0, 0.2);
}



@media (max-width: 1200px) {
    .npage2 {
        padding: 5%;
    }

    .NpDetail {
        width: 100%;
    }

    .bl2>div:nth-child(1) {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bl2{
        padding: 5%;
    }
    .bl2>div:nth-child(1) {
        grid-template-columns: repeat(2, 1fr);
    }
    .bl2Item>div:nth-child(2){
        height: 250px;
    }

    .np2Item {
        width: calc(100%/2);
    }


    .np2Item:nth-child(-n+3)::before {
        content: "";
        width: 0;
    }

    .np2Item:not(:nth-of-type(3n)) {
        border-right: 0;
    }

    .np2Item:nth-child(-n+2)::before {
        content: "";
        width: calc(100% - 14%);
        position: absolute;
        top: calc(100% + 50px);
        left: 7%;
        height: 1px;
        background-color: #dcdfe0;
    }

    .np2Item:not(:nth-of-type(2n)) {
        border-right: 1px solid #dcdfe0;
    }

    .npdetailBox {
        padding: 5%;
    }
}

@media (max-width: 480px) {

    .bl2>div:nth-child(1) {
        grid-template-columns: repeat(1, 1fr);
    }

    .np2Item {
        width: calc(100%/2);
    }

    .npage1>h2 {
        width: 100%;
        text-align: center;
        left: 0;
        top: 30%;
    }

    .np2Item:nth-child(-n+3)::before {
        content: "";
        width: 0;
    }

    .np2Item {
        width: 100%;
    }

    .np2Item:not(:nth-of-type(3n)) {
        border-right: 0;
    }

    .np2Item:nth-child(-n+2)::before {
        content: "";
        width: 0;
    }

    .np2Item:not(:nth-of-type(2n)) {
        border-right: 0;
    }

    .np2Item:not(:last-child)::before {
        content: "";
        width: calc(100% - 14%);
        position: absolute;
        top: calc(100% + 50px);
        left: 7%;
        height: 1px;
        background-color: #dcdfe0;
    }

    .NpDButton>a {
        padding: 3% 10%;
    }

    .npdetailBox {
        padding: 8% 5%;
    }

    .bl1Info {
        width: 80%;
    }

    .bl1Info>h3,
    .NpDtitle h3 {
        font-size: 32px;
        line-height: 150%;
    }

    .NpDButton {
        flex-direction: column;
    }

    .NpDButton>a:nth-child(1) {
        margin-bottom: 5%;
    }

    .NpDButton>a {
        text-align: center;
    }

    .NpDetail>p img {
        width: 100% !important;
        line-height: 200%;
    }
}