.n2 {
    width: 100%;
    position: relative;
    padding: 5%;
}

.NewItem {
    max-height: 450px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2%;
    border-radius: 12px;
    border: 1px solid #E2E2E2;
    margin-bottom: 2.6%;
    transition: box-shadow .6s ease;
}

.NewImgBox {
    width: 30%;
    overflow: hidden;
}

.NewInfo {
    width: 65%;
    padding-right: 5%;
}

.NewImgBox>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 1.2s ease;
}

.nTa {
    display: flex;
    margin-bottom: 37px;
}

.nTa>div {
    display: flex;
    align-items: center;
    margin-right: 2%;
}

.nTa>div>svg {
    margin-right: 10px;
}

.nTa>div>span {
    font-family: '思源黑体 CN Regular';
    font-size: var(--18px--);
    color: #03172E;
    line-height: 26px;
    font-weight: 400;
}

.NewInfo>h3 {
    font-family: '思源黑体 CN Regular';
    font-size: var(--28px--);
    color: #03172E;
    line-height: 40px;
    font-weight: lighter;
    margin-bottom: 10px;
    transition: color .6s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-weight: bold;
}

.NewInfo>p {
    /* font-family: '思源黑体 CN Regular'; */
    font-size: var(--14px--);
    font-weight: 400;
    color: #333333;
    margin-bottom: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.nMore {
    display: flex;
    align-items: center;
}

.nMore>p {
    /* font-family: '思源黑体 CN Regular'; */
    font-size: var(--20px--);
    color: #03172E;
    line-height: 29px;
    text-transform: uppercase;
    margin-right: 10px;
    transition: color .6s ease;
    font-weight: bold;
}

.nMore>svg>path {
    transition: fill .6s ease;
}

.NewItem:hover {
    box-shadow: 0px 5px 21px 0px rgba(0, 0, 0, 0.23);
}

.NewItem:hover>.NewImgBox>img {
    transform: scale(1.1);
}

.NewItem:hover>.NewInfo>h3,
.NewItem:hover>.NewInfo>.nMore>p {
    color: #EF7700;
}

.NewItem:hover>.NewInfo>.nMore>svg>path {
    fill: #EF7700;
}


/* 详情 */
.npdetailBox {
    padding: 5% calc(5% + 112px);
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #eee;
}

.npdetailBox>div {
    width: 100%;
    background: #fff;
    padding: 5%;
    border-radius: 10px;
}

.NpDtitle h3 {
    font-size: var(--32px--);
    margin-bottom: 10px;
}

.NpDtitle p {
    color: #999;
    margin-bottom: 10px;
}

.NpDtitle p:last-child{
    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: #EF7700;
    border: 1px solid #EF7700;
    transition: all .6s ease;
}

.NpDButton>a:nth-child(2) {
    border: 1px solid #fff;
    background-color: #EF7700;
    color: #fff;
    transition: all .6s ease;
}

.NpDButton>a:nth-child(1):hover {
    background-color: #EF7700;
    color: #fff;
}

.NpDButton>a:nth-child(2):hover {
    border: 1px solid #EF7700;
    background-color: transparent;
    color: #EF7700;
}

.NpDetail>p {
    font-family: '思源黑体 CN Regular';
    width: 100%;
    text-indent: 2rem;
    line-height: 200%;
    color: #333;
}

.NpDetail {
    width: 100%;
}

.NpDtitle h3,
.NpDtitle p {
    text-align: center;
}

.NpDetail>p img {
    width: 100%;
    object-fit: contain;
    display: inline;
}

.np2Item:hover>.i5i {
    background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
    .NewItem{
        align-items: stretch;
    }
    .NewImgBox>img{
        object-fit: cover;
    }

    .NpDetail {
        width: 100%;
    }

    .bl2>div:nth-child(1) {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .NewImgBox{
        display: none;
    }
    .NewInfo{
        width: 100%;
    }
    .NewInfo{
        padding: 0 5%;
    }
    .nTa{
        margin-bottom: 20px;
    }
    .npdetailBox {
        padding: 5%;
    }
}

@media (max-width: 480px) {

    .NpDButton>a {
        padding: 3% 10%;
    }

    .npdetailBox {
        padding: 8% 5%;
    }

    .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%;
    }
}