.news-detail__header{
}
.news-detail__header p:first-child{
    font-size: 30px;
    font-weight: bold;
}
.news-detail__header p:last-child{
    border-bottom: 2px solid #EBEBEB;
    padding: 20px 0 20px;
}
.news-detail__content {

}
.news-detail__content img{
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .news-detail__header p:first-child{
        font-size: 16px;
    }
}

.news-nav-links{
    background: #FFF;
    border: 1px solid #e5e5e5;
}
.news-nav-links ul{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.news-nav-links ul li{
    position: relative;
    line-height: 70px;
}
.news-nav-links ul li:first-child{
    border-right: 1px solid #e5e5e5;
    padding-left: 75px;
}
.news-nav-links ul li:first-child::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    width: 36px;
    height: 17px;
    background: url("https://tygaoke.oss-cn-shenzhen.aliyuncs.com/static/image/news-nav-links-arrow.png") no-repeat;
    background-size: contain;
    transform: translateY(-50%);
}

.news-nav-links ul li:last-child{
    padding-right: 75px;
    text-align: right;
}
.news-nav-links ul li:last-child::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 36px;
    height: 17px;
    background: url("https://tygaoke.oss-cn-shenzhen.aliyuncs.com/static/image/news-nav-links-arrow.png") no-repeat;
    background-size: contain;
    transform: translateY(-50%) rotate(180deg);
}
.news-nav-links ul li a{
    font-size: 18px;
}
@media (max-width: 768px) {
    .news-nav-links{
        border: none;
    }
    .news-nav-links ul{
        grid-template-columns: 1fr;
    }
    .news-nav-links ul li{
        line-height: 30px;
    }
    .news-nav-links ul li:first-child{
        border-right: none;
        padding-left: 0;
    }

    .news-nav-links ul li:last-child{
        padding-right: 0;
        text-align: left;
    }
    .news-nav-links ul li:first-child::before,
    .news-nav-links ul li:last-child::before {
        display: none;
    }
    .news-nav-links ul li a{
        font-size: 14px;
    }
}


