/* 内容页特有样式（不包含全局导航、头部、底部） */
.main {
    width:100%;
    height:auto;
    margin-bottom:40px;
}
.main .top{
    width:100%;
    height:40px;
    background: #EDEDED;
    margin-bottom:32px;
}
.main .top .top_con{
    width: 1200px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.main .top img {
    margin-right: 6px;
}
.main .top span:not(:last-child){
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #8C8C8C;
    line-height: 22px;
    font-weight: 400;
    margin-right:10px;
}
.main .top span:last-child{
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: rgba(0,0,0,0.65);
    line-height: 22px;
    font-weight: 400;
}
.main .top a {
    color: #8C8C8C;
    text-decoration: none;
}
.main .top a:hover {
    color: #125698;
}
.main .hui{
    width:100%;
    height:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:30px;
}
.huiyi{
    width:1200px;
}
.huiyi .title {
    width: 100%;
    height: 84px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}
.huiyi .title span:first-child {
    font-family: PingFangSC-Regular;
    font-size: 25px;
    color: #333333;
    font-weight: 400;
}
.huiyi .title .date{
    width:1200px;
    display:flex;
    align-items:center;
    justify-content:space-evenly;
}
.huiyi .title .date span{
    font-family: PingFangSC-Regular;
    font-size: 16px;
    color: #666666;
    font-weight: 400;
}
.huiyi .title .date span a{
    font-family: PingFangSC-Regular;
    font-size: 16px;
    color: #666666;
    font-weight: 400;
}
.huiyi .line1 {
    width:1200px;
    border-top: 2px solid #D8D8D8;
    margin: 24px 0;
}
/* 修复文章内容区域背景断裂问题 */
.huiyi_content {
    width: 100%;
    min-height: 320px;
    background: #fff;           /* 统一白色背景 */
    padding: 20px 30px;         /* 内边距，使文字不贴边 */
    box-sizing: border-box;
}
/* 重置内部元素的样式，确保背景连续 */
.huiyi_content p,
.huiyi_content div,
.huiyi_content span,
.huiyi_content img,
.huiyi_content table,
.huiyi_content ul,
.huiyi_content ol,
.huiyi_content blockquote {
    margin: 0 0 1em 0;          /* 统一底部间距，避免过大空隙 */
    width: auto;                /* 取消固定宽度限制 */
    max-width: 100%;            /* 图片/表格自适应 */
}
/* 针对原样式中的div修正（移除过大的margin和固定宽度） */
.huiyi_content div {
    margin-bottom: 1em;         /* 改为正常间距 */
    width: auto;                /* 宽度自适应 */
}
.huiyi_content div span {
    font-family: PingFangSC-Regular;
    font-size: 16px;
    color: #666666;
    line-height: 32px;
    font-weight: 400;
}
/* 图片自适应 */
.huiyi_content img {
    max-width: 100%;
    height: auto;
}
/* 视频容器自适应 */
.huiyi_content .vedio {
    width: 100%;
    height: auto;
    margin: 20px 0;
    text-align: center;
}
.huiyi_content .vedio img {
    max-width: 100%;
    height: auto;
}
/* 响应式适配 */
@media (max-width: 1200px) {
    .main .top .top_con,
    .huiyi {
        width: 96%;
    }
    .huiyi .title .date {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
    }
    .huiyi_content div {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .huiyi .title span:first-child {
        font-size: 20px;
    }
    .huiyi .title .date span {
        font-size: 14px;
    }
    .huiyi_content {
        padding: 15px;
    }
}