.banner{
    width: 78%;
    margin: auto;
    height: 780px;
    display: flex;
    justify-content: space-between;
    margin: 20px auto;
}

.banner .pKey {
    width: 100%;
    font-size: 12px;
    font-family: WiredMono, helvetica, sans-serif;
    font-weight: 400;
    margin: 10px 0px;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
   
}

.banner .pName {
    width: 100%;
    color: #000;
    font-size: 20px;
    font-family: Apercu, helvetica, sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1.5;
    -webkit-box-orient: vertical;
   
}

.banner .pdet {
    width: 100%;
    font-size: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    font-weight: 600;
    line-height: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
   
}

.bannerLeft{
    width: 68%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
    flex-direction: column;
}

.bannerRight{
    width: 30%;
    height: 100%;
    border-left: 1px solid rgb(153, 153, 153);
    padding-left: 20px;
}


.bannerLeftLi{
    width: 32%;
    height: 48%;
}

.bannerLeftLi img{
    width: 100%;
    height: 55%;
}

.bannerLeftLi:nth-of-type(1){
    border-bottom: 1px solid rgb(155, 155, 155);
}

.bannerLeftLi:nth-of-type(3){
    width: 64%;
    height: 100%;
}

.bannerLeftLi:nth-of-type(3) .pName{
    font-size: 48px;
}
.bannerRightLi{
    width: 100%;
    height: 110px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.bannerRightLi img{
    height: 100%;
    width: 110px;
}

.bannerRightLi .pName{
    width: calc((100% - 130px));
    height: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    font-size: 18px;
    -webkit-line-clamp: 3;
}


@media screen and (max-width:960px) {
    .banner{
        width: 95%;
        flex-wrap: wrap;
        height: auto;
    }
    .bannerLeft{
        width: 100%;
        flex-direction: row;
    }
    .bannerRight{
        width: 100%;
        padding: 0px;
        border-left: none;
    }
    .bannerLeftLi{
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    .bannerLeftLi:nth-of-type(3){
        width: 100%;
    }
    .bannerLeftLi:nth-of-type(3) .pName{
        font-size: 20px;
    }
}