.entry-footer {
    padding-top: 10px;
    border-top: 1px solid #e6e6e6;
}

.entry-footer i {
    color: #a1a1a1;
    display: inline;
}

.entry-footer a {
    color: #616161;
    transition: 0.3s;
}

.entry-footer a:hover {
    color: #e96b56;
}

.entry-footer .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.entry-footer .cats li {
    display: inline-block;
}

.entry-footer .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.entry-footer .tags li {
    display: inline-block;
}

.entry-footer .tags li+li::before {
    padding-right: 6px;
    color: #6c757d;
    content: ",";
}

.article-content ul,
.article-content ol {
    padding-left: 20px;
    margin-bottom: 1em;
}

.article-content li {
    margin-bottom: 0.5em;
}

.social-links {
    overflow: hidden;
    width: 120px;
    object-fit: contain;
}


.article-content img{height:auto!important;max-width:100%!important;}

#cookieNotice.display-right {
    right: 30px;
    bottom: 30px;
    max-width: 395px;
}
#cookieNotice.light {
    background-color: #fff;
    /*background-color: var(--cookieNoticeProLight);*/
    color: #393d4d;
    /*color: var(--cookieNoticeProDark);*/
}
#cookieNotice {
    box-sizing: border-box;
    position: fixed;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 6px rgb(0 0 0 / 25%);
    font-family: inherit;
    z-index: 999997;
}
#cookieNotice #closeIcon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    color: #bfb9b9;
    overflow: hidden;
    opacity: .85;
    z-index: 999999;
    position: absolute;
    top: 0;
    right: 0;
    /*background: url(./img/close-icon.svg) 0 0 / 20px 20px no-repeat;*/
}
#cookieNotice * {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
#cookieNotice .title-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    background: url(./img/cookie-icon.svg) 0 0 / 40px 40px no-repeat;
    padding-left: 45px;
    height: 40px;
}
#cookieNotice .title-wrap svg {
    margin-right: 10px;
}
#cookieNotice h4 {
    font-family: inherit;
    font-weight: 700;
    font-size: 18px;
}
#cookieNotice.light p, #cookieNotice.light ul {
    color: #393d4d;
    color: var(--cookieNoticeProDark);
}
#cookieNotice p, #cookieNotice ul {
    font-size: 14px;
    margin-bottom: 20px;
}
#cookieNotice .btn-wrap {
    display: flex;
    flex-direction: row;
    font-weight: 700;
    justify-content: center;
    margin: 0 -5px 0 -5px;
    flex-wrap: wrap;
}
#cookieNotice .btn-wrap button {
    flex-grow: 1;
    padding: 0 7px;
    margin: 0 5px 10px 5px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    min-width: 130px;
    line-height: 36px;
    border: none;
    font-family: inherit;
    font-size: 16px;
    background-color: #7691f5;
    transition: box-shadow .3s;
}
#cookieNotice button {
    outline: 0;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    appearance: none;
}
#cookieNotice .btn-wrap button:hover {
    transition: box-shadow .4s cubic-bezier(.25,.8,.25,1),transform .4s cubic-bezier(.25,.8,.25,1);
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 30%);
    transform: translate3d(0,-1px,0);
}
.tooltip {
    background-color: transparent !important; /* 设置背景为透明 */
    border: none !important; /* 移除边框 */
}

.tooltip-inner {
    background-color: transparent !important; /* 移除内部背景 */
    box-shadow: none !important; /* 去除阴影 */
    border: none !important; /* 去除边框 */
}
.single-para * {
    word-break: break-word;
    overflow-wrap: break-word;
}
.single-para img {
    max-width: 100%;
}
.single-para table {
    width: 100%; /* 设置表格宽度为100% */
    overflow-x: auto; /* 当内容宽度超出时显示横向滚动条 */
    display: block; /* 使得表格可以设置宽度和溢出隐藏 */
    margin-bottom: 10px;
    border-collapse: collapse;
    border-spacing: 0;
}
/* 确保thead和tbody一起滚动，避免thead固定在顶部的误用 */
.single-para table thead {
    display: table-header-group;
}

.single-para table tbody {
    display: table-row-group;
    height: auto; /* 或者设定一个特定高度 */
}
/* 针对表格内的th和td，取消之前的换行设置 */
.single-para table th,
.single-para table td {
    word-break: normal; /* 重置为默认换行行为 */
    overflow-wrap: normal; /* 同样重置为默认 */
}
.single-para table th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.single-para table .firstRow {
    background-color: #f2f2f2;
    font-weight: bold;
}

.single-para table tr:hover {
    background-color: #ddd;
}

.theme-dark .single-para table .firstRow {
    background-color: #101828;
    font-weight: bold;
}

.theme-dark .single-para table tr:hover {
    background-color: #193e96;
}
