*{
    margin: 0;
    padding: 0;
    list-style: none;
}
body{
    overflow-y: auto !important;
    background: #F5F5F5;
}
.news-detail-bg{
    width: 86%;
    margin: 0 auto;
    background: white;
    min-height: calc(100vh - 110px);
}
.news-detail-wrapper{
    width:  72%;
    height: auto;
    margin: 0 auto;
    padding-top: 30px;
}

.news-detail-logo{
    width: 206px;
    height: 55px;
    margin-bottom: 30px;
}

.news-detail-title-box{
    text-align: center;
    /*height: 200px;*/
    padding-bottom: 20px;
    border-bottom: 1px solid #E6E6E6;
}

.news-detail-title-box .news-detail-main-title{
    font-family: AlibabaPuHuiTi-Medium;
    font-size: 28px;
    color: #333333;
    line-height: 38px;
    margin-bottom: 18px;
}

.news-detail-publish-info{
    display: flex;
    margin: 0 auto;
    gap: 30px;
    font-size: 16px;
    line-height: 22px;
    color: #666666;
    justify-content: center;
}


.news-detail-box{
    border-bottom: 1px solid #E6E6E6;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}
.news-detail-box-content{
    padding-top: 50px;
}
.news-detail-box-content img{
    width: 100%;
    height: 100%;
}

.news-detail-box-share{
    margin-top: auto;
    height: 140px;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333333;
    font-family: AlibabaPuHuiTi-Regular;
}

.share-icon{
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.wx-icon{
    background: url("../image/wx-icon.png") center  / cover no-repeat;
    position: relative;
}

.wx-icon:hover .detail-qrcode{
    visibility: visible;
}

.wx-icon .detail-qrcode{
    position: absolute;
    top: -170px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px;
    border-radius: 15px;
    visibility: hidden;
    background: white;
}

.wx-icon .detail-qrcode::after{
    position: absolute;
    bottom: -19px;
    content: '';
    width: 0;
    height: 0;
    border-width: 10px;
    border-style: solid;
    border-color:  white transparent  transparent transparent;
}

.h5-link{
    background: url("../image/h5-link.png") center  / cover no-repeat;
}



.news-detail-related-news{
    height: 180px;
    font-size: 16px;
    line-height: 36px;
    text-align: left;
    color: #333333;
    margin: 55px 0 0;
    font-family: AlibabaPuHuiTi-Regular;
}
.news-detail-related-news-title{
    height: 36px;
    position: relative;
    padding-left: 20px;
}
.news-detail-related-news-title::before{
    content: '';
    width: 1px;
    background: #FF9E00;
    height: 18px;
    position: absolute;
    left: 7px;
    top: 9px;
}
.news-detail-related-news ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.news-detail-related-news li {
    width: 49%;
    height: 28px;
    /* margin: 18px; */
     overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: .3s;
    list-style-type: none !important;
    padding-left:  20px;
    box-sizing: border-box;
}

.news-detail-related-news li a{
   color: #333333;
    text-decoration: none;
    position: relative;
}

.news-detail-related-news li a:before{
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #E6E6E6;
    position: absolute;
    left: -16px;
    top: 8px;
}




.news-detail-related-news li:before{

}

.news-detail-related-news li:hover a{
    color: #FF9E00;
}

.news-detail-related-news li:hover a::before{
    background: #FF9E00;
}