/*cite*/

.cite-window {
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    background-color: #4c5c96;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    padding: 1em;
}

/* 关闭按钮样式 */
.cite-close {
    background-image: url('images/close.svg');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    border: none ;
    content: '';
    height: 4em;
    overflow: hidden;
    position: absolute;
    right: 0;
    text-align: center;
    text-indent: 4em;
    width: 4em;
    box-shadow: none;
}


.cite-header {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    /*border-bottom: 1px solid #dee2e6;*/
}

.cite-copy{
    font-size: 0.8em;
    background: #e6f7ff;
    color: #3f4e85 !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border: white !important;
    transition: background 0.3s ease;
}

.cite-copy:hover{
    background: #3f4e85;
    color: white !important;
}

.code {
    line-height: 1.5em;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    overflow: auto;
}