    /* 电脑 */
    
    .desktop {
        /*display: none;*/
    }
    
    .desktop .main .content {}
    
    .desktop .main .content .breadcrumb {
        padding: 2.2rem 0 3.0rem;
        display: flex;
        align-items: center;
        padding-top: 0;
    }
    
    .desktop .main .content .breadcrumb a {
        font-family: PingFang SC;
        font-size: 1.4rem;
        font-weight: 400;
        line-height: 2.2rem;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: rgba(0, 0, 0, 0.4);
    }
    
    .desktop .main .content .breadcrumb a:last-child {
        color: #000000;
    }
    
    .desktop .main .content .breadcrumb p {
        width: 1.6rem;
        height: 1.6rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 .4rem;
    }
    
    .desktop .main .content .breadcrumb p img {
        width: auto;
        height: .8rem;
    }
    
    .desktop .main .content .details-wrap {
        background-color: #fff;
        margin-top: 2.6rem;
        border: .1rem solid #e5e5e5;
        padding: 2.6rem;
        border-radius: 1.6rem;
        border: .1rem solid #0000001A;
    }
    
    .desktop .main .content .details .head {
        padding: 1.3rem 0 3.4rem;
        border-bottom: .1rem solid #E1E1E4;
    }
    
    .desktop .main .content .details .head .details-title {
        font-family: PingFang SC;
        font-size: 2.4rem;
        font-weight: 600;
        line-height: 3.3rem;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #000000;
    }
    
    .desktop .main .content .details .head .details-sub {
        font-family: PingFang SC;
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 2.8rem;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #000B33B2;
        display: flex;
        align-items: center;
        gap: 2.4rem;
        padding-top: .8rem;
    }
    
    .desktop .main .content .details .details-info {
        padding: 2.8rem 0;
        font-family: PingFang SC;
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 4.14rem;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #000B33B2;
        margin-bottom: .9rem;
    }
    
    .desktop .main .content .details .details-info img {
        /* width: 100%; 
        margin: 0 auto;
        display: block;*/
    }
    
    .desktop .main .content .details .details-info p {
        font-family: PingFang SC;
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 4.14rem;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #000B33B2;
        margin-bottom: .9rem;
    }
    
    .desktop .main .content .details .details-info p img {
        /*width: auto;
        margin: 1.6rem auto;
        display: block;*/
    }

    /* 详情页表格专用样式（完全作用域化） */
.details-info {
    font-family: "Microsoft YaHei", SimSun, sans-serif;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* 表格容器 */
.details-info > table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* 表格单元格 */
.details-info > table th,
.details-info > table td {
    border: 1px solid #e8e8e8;
    padding: 12px 8px;
    text-align: center;
    vertical-align: middle;
}

/* 标题行样式 */
.details-info > table tr:first-child {
    background-color: #f5f7fa;
    font-weight: bold;
}

/* 强调文本 */
.details-info > table .emphasize {
    font-weight: bold;
    color: #1890ff;
}

/* 下划线文本 */
.details-info > table .underline {
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}

/* 多行文本处理 */
.details-info > table .multi-line p {
    margin: 6px 0;
    line-height: 1.5;
}

/* 底部公告信息 */
.details-info > .announcement-footer {
    margin-top: 25px;
    text-align: right;
    font-size: 15px;
}

.details-info > .announcement-footer .signature {
    display: inline-block;
    min-width: 300px;
    border-bottom: 1px solid #333;
    padding-bottom: 3px;
    margin-top: 15px;
}

/* 响应式处理 */
@media (max-width: 768px) {
    .details-info {
        padding: 15px;
    }
    
    .details-info > table {
        font-size: 13px;
    }
    
    .details-info > table th,
    .details-info > table td {
        padding: 8px 4px;
        display: block;
        text-align: left;
        border: none;
        border-bottom: 1px solid #eee;
    }
    
    .details-info > table td::before {
        content: attr(data-label);
        font-weight: bold;
        display: inline-block;
        width: 120px;
    }
    
    .details-info > table colgroup,
    .details-info > table thead {
        display: none;
    }
}