header {
    width: 100vw;
    height: 46px;
    background-color: rgba(255,255,255,0.7);
}

header .header-content {
    margin: 0 auto;
    width: var(--hky-mobile-width);
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 7px;
}

.news-title-wrapper {
    border-bottom: 1px solid #DBD4CD;
    padding: 0 16px 16px;
    box-sizing: border-box;
}

.news-title-wrapper .title {
    color: #333333;
    font-size: 20px;
    line-height: 28px;
    font-family: 'AlibabaPuHuiTi-Medium';
}

.news-title-wrapper .tools {
    display: flex;
    justify-content: center;
    margin: 15px auto 0;
    color: #666666;
    font-size: 14px;
}

.news-title-wrapper .tools .date {
    border-right: 1px solid #666666;
    padding-right: 10px;
}

.news-title-wrapper .tools .views {
    padding-left: 10px;
    display: flex;
    gap: 3px;
}

.news-content {
    width: var(--hualu-content-width-m);
    min-height: 60vh;
    margin: 0 auto;
    padding: 15px;
    border-bottom: 1px solid #DBD4CD;
}

.related-news {
    padding-top: 15px;
    width: var(--hualu-content-width-m);
    font-size: 16px;
    color: #333333;
    margin: 0 auto;
}

.related-news .related-news-title {
    padding-left: 13px;
    position: relative;
    line-height: 24px;
    margin: 16px 0;
}

.related-news .related-news-title::before {
    content: '';
    position: absolute;
    left: -1px;
    height: 15px;
    top: 4px;
    width: 2px;
    background: #FF9E00;
}

.related-news .related-news-item {
    line-height: 24px;
    padding-left: 13px;
    margin: 8px 0 16px 0;
    position: relative;
}

.related-news .related-news-item::before {
    position: absolute;
    left: -4px;
    top: 8px;
    content: '';
    width: 6px;
    height: 6px;
    background: #DBD4CD;
    border-radius: 50%;
}