/* 新闻详情页面样式 */

/* 页面主体 */
.dynamic-detail {
    width: 100%;
    background: #eef3f9;
}

/* 内容容器 */
.con {
    width: 100%;
    padding: 10rem 15rem 5rem;
    background: #ffffff;
}

/* 分割线 */
.dynamic-detail-line {
    width: 100%;
    height: 0.06rem;
    background: #DCDCDC;
    /* margin-top: 1.75rem; */
}

/* 辅助类 */
.dynamic-detail-f1 {
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 2.38rem;
    color: #000000;
    line-height: 3rem;
    text-align: center;
    padding: 0 150px;
}

.dynamic-detail-f2{
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 1.25rem;
    color: #666666;
    line-height: 1.88rem;
    text-align: center;
    margin-top: 1.6rem;
}

.dynamic-detail-con {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 1.25rem;
    color: #000000;
    line-height: 2.88rem;
    padding: 0 9rem;
    margin-top: 4.5rem;
    margin-bottom: 9rem;
}

.dynamic-detail-con p{
    font-family: Microsoft YaHei !important;
    font-weight: 400 !important;
    font-size: 1.25rem !important;
    color: #000000 !important;
    line-height: 2.88rem !important;
}

.dynamic-detail-con p span{
    font-family: Microsoft YaHei !important;
    font-weight: 400 !important;
    font-size: 1.25rem !important;
    color: #000000 !important;
    line-height: 2.88rem !important;
}

.dynamic-detail-con img{
    width: 100%;
}

.b {
    width: 100%;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.b div {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 1.25rem;
    color: #000000;
    line-height: 1.88rem;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .con {
        padding: 6rem 20%;
    }
    
    .line {
        width: 100%;
    }
    
    .b {
        width: 100%;
    }
}

/* 确保与公共组件样式不冲突 */
.detail-page .header {
    position: relative;
    z-index: 99;
    background: transparent;
}

.detail-page .home {
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.detail-page .con {
    flex: 1;
}

.detail-page .footer {
    position: relative;
    z-index: 10;
}

.detail-page .message-board-container {
    position: fixed;
    z-index: 999;
}

.jump-detail {
    text-decoration: none;
    color: inherit;
}