.n2 {
    width: 100%;
    position: relative;
}

.NewItem {
    max-height: 450px;
    display: flex;
    padding: 3% 10%;
}

.NewItem>.info {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.NewItem:nth-child(even) {
    background-color: #f7f7f7;
    flex-direction: row-reverse;
}

.NewItem:nth-child(even)>.ti {
    margin-left: 5%;
    margin-right: 0;
}

.NewItem:nth-child(even)>.ti,
.NewItem:nth-child(even)>.ti>div:nth-child(1) {
    flex-direction: row-reverse;
}

.NewItem:nth-child(even)>.ti>div:nth-child(1)>div:nth-child(1) {
    margin-right: 0;
    margin-left: 20px;
}

.NewItem>.ti {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 5%;
}

.NewItem>.ti>div:nth-child(1) {
    display: flex;
    align-items: center;
}

.NewItem>.ti>div:nth-child(1)>div:nth-child(1) {
    width: 9px;
    height: 66px;
    background: #D7141C;
    margin-right: 20px;
}

.NewItem>.ti>div:nth-child(1)>div:nth-child(2)>p:nth-child(1) {
    font-size: var(--36px--);
    color: #000000;
    font-weight: bold;
}

.NewItem>.ti>div:nth-child(1)>div:nth-child(2)>p:nth-child(2) {
    font-size: var(--24px--);
    color: #666666;
    font-weight: bold;
}

.NewItem>.ti>div:nth-child(2) {
    width: 60%;
    height: 100%;
    overflow: hidden;
}

.NewItem>.ti>div:nth-child(2)>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.NewItem>.info>h3 {
    font-size: var(--32px--);
    color: #000000;
    line-height: 46px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 20px;
}

.NewItem>.info>p {
    font-family: '思源黑体 CN Regular';
    color: #a3a3a3;
    line-height: 32px;
    font-size: var(--18px--);

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;

}

.n2>div {
    background-color: #fff;
    padding: 3%;
}

/* xq */

/* 详情 */
.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{
    background: #fff;
    padding: 5%;
}

.NpDtitle h3 {
    font-size: var(--32px--);
    margin-bottom: 0.5%;
}

.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: #d7141c;
    border: 1px solid #d7141c;
    transition: all .6s ease;
}

.NpDButton>a:nth-child(2) {
    border: 1px solid #fff;
    background-color: #d7141c;
    color: #fff;
    transition: all .6s ease;
}

.NpDButton>a:nth-child(1):hover {
    background-color: #d7141c;
    color: #fff;
}

.NpDButton>a:nth-child(2):hover {
    border: 1px solid #d7141c;
    background-color: transparent;
    color: #d7141c;
}

.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) {
    .NpDetail {
        width: 100%;
    }

    .bl2>div:nth-child(1) {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .NewItem>.ti>div:nth-child(2){
        display: none;
    }
    .NewItem>.ti{
        width: 30%;
    }
    .NewItem>.info{
        width: 65%;
    }
    .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%;
    }
    .NewItem{
        flex-direction: column !important;
    }
    .NewItem>.info {
        width: 100%;
    }
    .NewItem:nth-child(even)>.ti{
        margin-left: auto;
    }
}