.newsDetail {
    padding-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.newsDetailL {
    width: 65%;
}

.newsDetailR {
    width: 27%;
}

/* 左边 */
.newsDetailL>h2 {
    line-height: 1.7;
    color: #333;
    margin-bottom: 12px;
}

.newsDetailL .timeBox span {
    color: #8695B1;
    margin-right: 20px;
}

.newsDetailL .timeBox {
    padding-bottom: 30px;
    border-bottom: 1px solid #EDF0F4;
}

.nextNews {
    border-top: 1px solid #EDF0F4;
    padding-top: 30px;
    margin-bottom: 60px;
}

.nextNews a {
    display: block;
    width: 100%;
    background: url(../images/nextNewsBg.png)no-repeat center center;
    background-size: 100% 100%;
    height: 180px;
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nextNews a p {
    color: #333333;
    margin-bottom: 10px;
}

.nextNews a h3 {
    display: block;
    max-width: 620px;
    color: #333333;
    line-height: 1.7;
    position: relative;
}

.nextNews a h3::after {
    content: "";
    display: block;
    width: 32px;
    height: 10px;
    background: url(../images/rightJt.png)no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
    left: 104%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.nextNews a:hover h3::after {
    transform: translate(20px, -50%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* 右边 */
.newsDetailR {
    background: #FAFAFA;
    padding: 30px;
}

.newsDetailR h3 {
    color: #333;
    margin-bottom: 30px;
}

.newsDetailR li {
    margin-bottom: 24px;
}

.newsDetailR li:last-child {
    margin-bottom: 0px;
}

.newsDetailR a {
    display: block;
    color: #7686A3;
}

.newsDetailR li:hover a {
    color: #457DFA;
}





/* 展会论坛 详情 */
.pbulicPageBanner a {
    display: inline-block;
    margin-top: 26px;
    font-weight: 500;
    padding: 10px 26px;
    background: #fff;
    color: #1E95E8;
    border-radius: 4px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.pbulicPageBanner a:hover {
    background: #1E95E8;
    color: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}



/* 移动端 */
@media (max-width: 767px) {
    .newsDetail {
        padding-top: 40px;
        flex-direction: column;
        padding-bottom: 40px;
    }

    .newsDetailL,
    .newsDetailR {
        width: 100%;
    }

    .nextNews a {
        background-size: cover;
        padding: 24px 14px;
        height: auto;
    }

    .nextNews a h3::after {
        display: none;
    }

    .nextNews {
        margin-bottom: 32px;
    }

    .newsDetailR {
        padding: 24px 14px;
    }
}