.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;
    margin-right: 10px;
    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: #f5cea1;
    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 p {
    margin: 0 0 20px;
    text-transform: none;
    font-weight: 400;
    line-height: 25px;
}
.single-para blockquote {
    padding: 25px;
    margin: 20px 0;
    background: #f9f9f9;
    position: relative;
    border-left: 3px solid #fe4a22;
    padding-left: 40px;
}

.single-para blockquote:before {
    content: "\f10d"; /* 确保该 Unicode 对应正确的图标 */
    font-family: "Font Awesome 6 Pro"; /* 使用 Font Awesome 6 Pro 字体 */
    position: absolute;
    font-size: 28px;
    color: #E5E5E5;
    top: 5px;
    left: 5px;
    font-weight: 900; /* Font Awesome 6 中推荐使用 900 表示实心图标 */
    z-index: 0;
}

.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;
}
img {
    height: auto;
    max-width: 100%;
}
/**
轮播荣誉插件
 */
.image-container {
    position: relative;
    overflow: hidden;
    height: 185px; /* 设置容器的高度 */
    padding: 8px;
}

.image-container img {
    height: 100%;
    width: auto;
    object-fit: contain; /* 确保图像等比例缩放并填充整个容器 */
}
.food-cat-item a {
    display: block;
    background-size: cover;
    background-position: center;
    padding: 10px;
    overflow: hidden;
    border-radius: 10px;
    /* padding-top: 150px; */
    position: relative;
    z-index: 1;
}
/*.single-para h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
    margin-bottom: .5rem; }*/

.single-para h1,
.single-para h2,
.single-para h3,
.single-para h4,
.single-para h5,
.single-para h6,
.single-para p {
    margin-top: 0;
    margin-bottom: .5rem;
}

.single-image-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}
.single-image-slider img {
    max-width: 100%;
    height: auto;
}

.blog-title-h1 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
}


/*.fab-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    user-select: none;
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 5;
}*/
.fab-container {
    position: fixed;
    bottom: 60px;
    right: 30px;

    width: 70px;
    height: 320px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;

    user-select: none;
    z-index: 5;
}
.fab-container:hover {
    height: 100%;
}
.fab-container:hover .sub-button:nth-child(2) {
    transform: translateY(-70px);
}
.fab-container:hover .sub-button:nth-child(3) {
    transform: translateY(-130px);
}
.fab-container:hover .sub-button:nth-child(4) {
    transform: translateY(-190px);
}
.fab-container:hover .sub-button:nth-child(5) {
    transform: translateY(-250px);
}
.fab-container:hover .sub-button:nth-child(6) {
    transform: translateY(-310px);
}
.fab-container .fab1 {
    position: relative;
    height: 70px;
    width: 70px;
    background-color: #ffd026;
    border-radius: 50%;
    z-index: 2;
}
.fab-container .fab1::before {
    content: " ";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 35px;
    width: 35px;
    background-color: inherit;
    border-radius: 0 0 10px 0;
    z-index: -1;
}
.fab-container .fab1 .fab-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    border-radius: 50%;
}
.fab-container .fab1 .fab-content .material-icons {
    color: black;
    font-size: 48px;
}
.fab-container .sub-button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 10px;
    right: 10px;
    height: 50px;
    width: 50px;
    background-color: #ffd026;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.fab-container .sub-button:hover {
    cursor: pointer;
}
.fab-container .sub-button .material-icons {
    color: black;
    padding-top: 6px;
}
.tooltip {
    --tooltip-bg: #333; /* 背景色（深灰，可调整） */
    --tooltip-text-color: #fff; /* 文字颜色 */
    --tooltip-padding: 8px 12px; /* 内边距（上下 8px，左右 12px） */
    --tooltip-border-radius: 6px; /* 圆角大小 */
    --tooltip-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); /* 阴影（可选） */
}
/**
自定义提示框样式
 */
.tooltip-inner {
    background-color: var(--tooltip-bg) !important;
    color: var(--tooltip-text-color) !important;
    padding: var(--tooltip-padding) !important;
    border-radius: var(--tooltip-border-radius) !important;
    font-size: 14px; /* 字体大小（可选） */
    line-height: 1.4; /* 行高（可选） */
    max-width: 300px; /* 最大宽度（避免过长） */
    box-shadow: var(--tooltip-box-shadow); /* 阴影（可选） */
}

/* 调整箭头颜色（可选） */
.tooltip.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before,
.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--tooltip-bg) !important;
}
.tooltip.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before,
.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: var(--tooltip-bg) !important;
}
.tooltip.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before,
.tooltip.bs-tooltip-left .tooltip-arrow::before {
    border-left-color: var(--tooltip-bg) !important;
}
.tooltip.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before,
.tooltip.bs-tooltip-right .tooltip-arrow::before {
    border-right-color: var(--tooltip-bg) !important;
}

#back-to-top {
    right: 40px;
    top: auto;
    z-index: 10;
    display: none;
}
#back-to-top .btn:focus {
    outline: 0;
    box-shadow: none;
}
@media (max-width: 767px) {
    #back-to-top {
        right: 15px;
    }
}

#back-to-top.position-fixed {
    bottom: 20px;
}

#back-to-top .btn.btn-primary {
    width: 36px;
    height: 36px;
    line-height: 36px;
    background: #ffd026;
    border-radius: 3px;
    color: black;
    font-weight: 700;
    font-size: 16px;
    padding: 0;
    border: 0;
}
@media (max-width: 767px) {
    #back-to-top .btn.btn-primary {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 14px;
    }
}

/* ===== 移动端：testimonial-area / project-area / team-3-area swiper 防止溢出屏幕 ===== */
@media only screen and (max-width: 991px) {
    .project-area,
    .testimonial-area,
    .team-3-area,
    .project-wrapper-box,
    .testimonial-wrapper-box,
    .team-3-wrapper-box {
        overflow: hidden;
    }
    .project-wrapper .swiper,
    .testimonial-active,
    .team-3-active {
        overflow: hidden !important;
    }
}

/* ===== 顶部菜单（header-2-area）固定到视口顶部 =====
   common.js 已在初始化时把 .header-2-area 挪到 <body> 直接子节点（绕开 #smooth-content 的 transform），
   这里让它从一开始就 position:fixed，避免"页面顶端往下滚时 header 先随页面上溜、过阈值再瞬移回顶"的一上一下闪烁。
   未滚动到阈值前保持原有半透明 overlay 样式；越过阈值后切到白底 + 阴影。 */
/* 让 header 全程固定在视口顶部，保持原有的圆角毛玻璃外观，
   不在滚动时切换底色/圆角/阴影，避免任何视觉跳变。 */
.header-2-area {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 800;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}