/* 添加以下样式到你的 CSS 或写在 style 标签中 */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cantainer {
    flex: 1;
}
.title{
    text-align: center;
    line-height: 54px;
    color: #333333;
    font-weight: bold;
    font-size: 24px;
}
.time{
    text-align: center;
    font-size: 14px;
    color: #999999;
}
.message-text{
    margin: 18px 0 25px;
    font-size: 16px;
    color: #333333;
    line-height: 36px;
    position: relative;
}
.message-text p{
    margin-bottom: 10px;
}
.message-text p.source-text{
    margin-bottom: 0;
}
.message-text a{
    color:#1f6cdd;
}
.message-text p img{
    max-width: 100%;
}
.message-text p a{
    color: #1f6cdd;
}

/**相关来源*/
.relation{
    margin: 20px auto;
}
.relation-title{
    line-height: 40px;
    font-weight: bold;
}
.relation-content a{
    display: block;
    line-height: 30px;
    position: relative;
    font-size: 14px;
    padding-left: 15px;
    color: #0175d0;
}
.relation-content a::before{
    position: absolute;
    top: 12px;
    left: 0;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #0175d0;
}
