.jyy-e-zt2 {
    background: #fff;
}

.news-title {
    display: flex;
    justify-content: space-between;
}

.news-title .news-title-left {
    width: 50%;
}

.news-title .news-title-right {
    background: #fff;
    width: 50%;
    padding: 40px 50px;
}

.news-title .news-title-left img {
    width: 100%;
    height: 100%;
}

.news-title .news-title-right .p1 {
    font-size: 22px;
    font-weight: 700;
    color: rgb(153, 153, 153);
    margin-bottom: 20px;
}

.news-title .news-title-right .p2 {
    font-size: 22px;
    font-weight: 700;
    color: rgb(48, 62, 72);
    margin-bottom: 16px;
}

.news-title .news-title-right .p3 {
    font-size: 16px;
    color: rgb(153, 153, 153);
}

.news-title .news-title-right .p4 {
    display: flex;
    align-items: center;
    margin-top: 12px;
}

.news-title .news-title-right .p4 i {
    height: 6px;
    width: 6px;
    background: rgb(37, 95, 199);
    border-radius: 50%;
    margin-right: 4px;
}

.news-item {
    border-bottom: 1px solid rgb(10, 80, 180);
}

.news-item a {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
}

.news-item a .news-txt {
    width: 80%;
    font-size: 18px;
    color: rgb(76, 76, 76);
    white-space: nowrap;
    /* 禁止换行 */
    overflow: hidden;
    /* 隐藏溢出内容 */
    text-overflow: ellipsis;
    /* 用省略号表示溢出内容 */
    transition: all .5s;
}
.news-item a .news-date{
    color: rgb(153, 153, 153);
}
.news-item a .news-txt:hover{
    color: rgb(29, 80, 145);
}
