﻿.markdown-content {
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    /*padding: 16px;*/
    border-radius: 8px;
    margin-bottom: 16px;
}
.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px 5px 5px;
    background-color: #f7f7f7;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-bottom: 20px; /* 增加与代码块内容的下边距 */
    position: relative; /* 使复制按钮相对于此容器定位 */
}

.language-label {
    font-size: 0.85em;
    font-weight: bold;
    color: #6c757d;
}

.copy-button {
    color: #007bff;
    border: none;
    padding: 3px 8px;
    cursor: pointer;
    font-size: 0.85em;
    background: none;
    display: flex;
    align-items: center;
}

.copy-button.copied {
    color: #28a745;
}

.copy-button .material-icons {
    font-size: 1.2em;
    margin-right: 5px;
}


.copy-check {
    margin-right: 5px;
}

pre {
    margin: 0;
    border-radius: 5px;
    overflow: auto;
}

.hljs {
    padding: 10px;
    background-color: #f5f5f5;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-block: 20px;
}