/* 以下是详情页面 */
.detail-page {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
}

.icon_position {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    margin-left: 20px;
}
/* 当前位置导航 */
.current-position {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
    background-color: #f5f5f5;
    align-items: center;
}

    .current-position a {
        color: #0066cc;
        text-decoration: none;
    }

        .current-position a:hover {
            text-decoration: underline;
        }

.detail-title {
    /* 字体 */
    font-family: "HarmonyOS Sans SC";
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

.detail-msg-container {
    margin: 20px auto 0;
    padding-bottom: 20px;
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

    .detail-msg-container .data {
        display: flex;
        gap: 5px;
        justify-content: center;
        align-items: center;
        /* 字体 */
        font-family: "HarmonyOS Sans SC";
        font-weight: 400;
        font-size: 14px;
        line-height: 14px;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: middle;
        color: #999999;
    }
    /* 图片自适应 */
    .detail-msg-container img {
        width: 16px;
        height: 16px;
    }

.detail-container-img {
    margin: 30px auto;
    width: 100%;
    max-width: 720px;
}

    .detail-container-img img {
        width: 100%;
        height: auto;
        display: block;
    }

.detail-text p {
    margin-bottom: 1em;
    /* 首行缩进 */
    text-indent: 2em;
    /* 字体 */
    font-family: HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0%;
    text-align: justify;
    vertical-align: middle;
    color: #222222;
}

.detail-text img {
    max-width: 100%;
    margin-left: calc((100% - 600px) / 2 - 2em) !important;
    margin-right: 0 !important;
}

.detail-bottom-msg {
    width: 100%;
    box-sizing: border-box;
    padding: 5px 20px;
    background-color: #eef5fd;
    margin-top: 30px;
}

    .detail-bottom-msg .msg-title {
        display: flex;
        align-items: center;
        line-height: 20px;
        padding: 6px 0;
    }

        .detail-bottom-msg .msg-title img {
            width: 16px;
            height: 16px;
            margin-right: 10px;
        }

        .detail-bottom-msg .msg-title .msg-text {
            flex-shrink: 0;
            color: #666666;
            font-size: 14px;
            margin-right: 10px;
        }

        .detail-bottom-msg .msg-title .msg-text-title {
            color: #1d6312;
            font-weight: 500;
        }

        .detail-bottom-msg .msg-title a {
            cursor: pointer;
            text-decoration: none;
            display: flex;
            align-items: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
