/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* 确保SVG背景覆盖整个页面 */
            .svg-background {
            position: fixed; /* 固定定位 */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%; /* 高度为视口高度 */
            z-index: -1; /* 置于底层 */
        }
/* 页面基础样式 */
body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    position: relative;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background 0.5s ease;
}

/* 轮播容器 */
.carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9; /* 保持宽高比为16:9 */
    z-index: 1;
}

/* 轮播项 */
.carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* 淡入淡出效果 */
}

/* 当前激活的轮播项 */
.carousel-item.active {
    opacity: 1;
}

/* 轮播图片样式 */
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 图片填充整个容器 */
}

/* 轮播图底部半透明遮罩 */
.carousel-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent); /* 渐变遮罩 */
    z-index: 1;
}

/* 轮播按钮 */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    animation: blink 1.5s infinite; /* 闪烁动画 */
}

/* 鼠标悬停时显示按钮 */
.carousel-container:hover .carousel-button {
    opacity: 1;
    visibility: visible;
}

/* 按钮悬停效果 */
.carousel-button:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/* 上一张按钮位置 */
.carousel-button.prev {
    left: 15px;
}

/* 下一张按钮位置 */
.carousel-button.next {
    right: 15px;
}

/* 按钮图标样式 */
.carousel-button i {
    font-size: 18px;
    color: #333;
}

/* 闪烁动画 */
@keyframes blink {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.3;
    }
}

/* 定义CSS变量 */
:root {
    --primary-color: #4361ee; /* 主色调 */
    --gradient-bg: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); /* 渐变背景 */
    --text-dark: #2b2d42; /* 深色文字 */
    --text-light: #8d99ae; /* 浅色文字 */
}

/* 卡片容器样式 */
.container {
    width: 100%;
    max-width: 800px;
    margin: -50px auto 0; /* 调整与轮播图的间距 */
    background: rgba(255, 255, 255, 0.5); /* 半透明背景 */
    border: 2px solid rgba(255, 255, 255, 0.1); /* 半透明边框 */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 2;
    backdrop-filter: blur(10px); /* 毛玻璃效果 */
    -webkit-backdrop-filter: blur(10px);
}

/* 黑夜模式下的卡片容器样式 */
body.dark-mode .container {
    background: rgba(51, 51, 51, 0.5); /* 深色半透明背景 */
    border-color: rgba(255, 255, 255, 0.1); /* 深色边框 */
}

/* 卡片悬停效果 */
.container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* 旋转图片容器 */
.rotating-image {
    width: 100px; /* 固定宽度 */
    height: 100px; /* 固定高度，保持宽高比 1:1 */
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
    animation: rotate 8s linear infinite; /* 旋转动画 */
    position: relative;
    z-index: 1;
    border: 3px solid white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* 防止图片被压缩 */
}

/* 旋转图片的渐变遮罩 */
.rotating-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.3));
}

/* 旋转图片样式 */
.rotating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 图片填充容器且不变形 */
    transition: transform 0.3s;
}

/* 文本内容区域 */
.text-content {
    flex: 1;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* 标题样式 */
h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
    position: relative;
    
}
/* 黑夜模式下的标题颜色 */
body.dark-mode h2 {
    color: #642EFE; /* 白色文字 */
}


/* 段落样式 */
p {
    color: #6E6E6E;
    line-height: 1.4;
    margin-bottom: 10px;
    font-size: 0.85rem;
    padding-left: 20px;
}
/* 黑夜模式下的段落颜色 */
body.dark-mode p {
    color: #ff7800; /* 浅灰色文字 */
}

/* 按钮组样式 */
.button-group {
    margin-top: 10px;
}

/* 按钮基础样式 */
.button {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    margin-right: 10px;
    font-size: 0.9rem;
}

/* 主按钮样式 */
.primary-btn {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(67,97,238,0.3);
}
/* 黑夜模式下的主按钮样式 */
body.dark-mode .primary-btn {
    background: #642EFE; /* 深色背景 */
    color: #ffffff; /* 白色文字 */
}

/* 主按钮悬停效果 */
.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67,97,238,0.4);
}

/* 次按钮样式 */
.secondary-btn {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}
/* 黑夜模式下的次按钮样式 */
body.dark-mode .secondary-btn {
    border-color: #642EFE; /* 白色边框 */
    color: #fff; /* 白色文字 */
}
/* 次按钮悬停效果 */
.secondary-btn:hover {
    background: rgba(67,97,238,0.05);
}

/* 旋转动画 */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 新增的4:1宽高比容器 */
.custom-container {
    width: 100%;
    max-width: 800px;
    margin: 20px auto; /* 与卡片容器的间距 */
    aspect-ratio: 4 / 1; /* 宽高比为4:1 */
    background: rgba(255, 255, 255, 0.5); /* 半透明背景 */
    border: 2px solid rgba(255, 255, 255, 0.1); /* 半透明边框 */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px); /* 毛玻璃效果 */
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* 模式切换容器 */
.mode-container {
    width: 800px; /* 默认宽度 */
    height: 300px;
    margin: 10px auto;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}
body.dark-mode .mode-container {
    background: rgba(51, 51, 51, 0.9); /* 深色背景 */
}
/* 左侧模式切换区域 */
.mode-switch {
    flex: 0 0 380px;
    height: 270px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.theme-btn {
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
}

.theme-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transition: opacity 0.5s ease;
}

#night-img {
    opacity: 0;
}

/* 文字切换效果 */
.theme-text {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-text.night {
    opacity: 0;
    transform: translateY(100%);
}

/* 新增提示文本 */
.toggle-tip {
    position: absolute;
    top: 15px;
    right: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

/* 右侧按钮区域 */
.right-buttons {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rect-btn {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative; /* 为文本定位提供参考 */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 按钮图片样式 */
.rect-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* 按钮文本样式 */
.btn-text {
    position: absolute; /* 绝对定位 */
    top: 50%; /* 垂直居中 */
    left: 50%; /* 水平居中 */
    transform: translate(-50%, -50%); /* 居中 */
    font-size: 14px;
    color: #fff; /* 文本颜色 */
    background: rgba(0, 0, 0, 0.3); /* 半透明背景 */
    padding: 4px 8px; /* 内边距 */
    border-radius: 50px; /* 圆角 */
    text-align: center;
    z-index: 2; /* 确保文本在图片上方 */
}

/* 黑夜模式下的按钮样式 */
body.dark-mode .rect-btn {
    background: rgba(51, 51, 51, 0.9); /* 浅色半透明背景 */
}

/* 黑夜模式下的按钮文本样式 */
body.dark-mode .btn-text {
    color: #fff; /* 白色文字 */
    background: rgba(0, 0, 0, 0.3); /* 浅色半透明背景 */
}

/* 按钮悬停效果 */
.rect-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.rect-btn:hover img {
    transform: scale(1.05);
}
/* 交互效果 */
.theme-btn:hover {
    transform: scale(0.98);
}

.rect-btn:hover {
    transform: translateY(-5px);
}

.rect-btn:hover img {
    transform: scale(1.05);
}

/* 夜间模式样式 */
.night-mode #day-img {
    opacity: 0;
}

.night-mode #night-img {
    opacity: 1;
}

.night-mode .theme-text.day {
    opacity: 0;
    transform: translateY(-100%);
}

.night-mode .theme-text.night {
    opacity: 1;
    transform: translateY(0);
}

body.night-theme {
    background: #2c2c2c;
}

/* 提示文本动画 */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* 手机端样式 */
@media (max-width: 768px) {
    .mode-container {
        width: 90%; /* 手机端宽度 */
        height: 150px;  /* 高度自适应 */
        aspect-ratio: 4 / 1; /* 宽高比改为 4:1 */
        gap: 8px; /* 缩小间距 */
        padding: 10px; /* 缩小内边距 */
    }

    .mode-switch {
        flex: 0 0 70%; /* 左侧区域占 70% */
        height: 100%;
    }

    .right-buttons {
        flex: 1; /* 右侧区域占剩余 30% */
        gap: 6px;
    }

    .rect-btn {
        height: calc(50% - 3px); /* 每个按钮占右侧区域的一半高度 */
    }

    /* 调整旋转图片尺寸 */
    .rotating-image {
        width: 100px; /* 缩小图片尺寸 */
        height: 100px; /* 缩小图片尺寸，保持宽高比 1:1 */
        margin-right: 15px;
    }
}

/* 更小的手机端样式 */
@media (max-width: 480px) {
    .mode-container {
        aspect-ratio: 4 / 1; /* 保持宽高比 4:1 */
    }

    .mode-switch {
        flex: 0 0 50%; /* 左侧区域占 60% */
    }

    .right-buttons {
        gap: 4px; /* 进一步缩小按钮间距 */
    }

    .rect-btn {
        height: calc(50% - 2px); /* 调整按钮高度 */
    }

    /* 进一步调整旋转图片尺寸 */
    .rotating-image {
        width: 100px; /* 进一步缩小图片尺寸 */
        height: 100px; /* 进一步缩小图片尺寸，保持宽高比 1:1 */
        margin-right: 10px;
    }
}

/* 响应式设计 */
@media (max-width: 992px) {
    .container, .custom-container {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .rotating-image {
        width: 100px; /* 缩小图片尺寸 */
        height: 100px; /* 缩小图片尺寸，保持宽高比 1:1 */
        margin-right: 15px;
    }

    h2 {
        font-size: 1.3rem;
        padding-left: 12px;
    }

    h2::before {
        width: 3px;
        height: 60%;
    }

    p {
        font-size: 0.8rem;
    }

    .button {
        padding: 7px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 15px;
        margin-top: -30px; /* 调整间距 */
    }

    .rotating-image {
        width: 100px; /* 进一步缩小图片尺寸 */
        height: 100px; /* 进一步缩小图片尺寸，保持宽高比 1:1 */
        margin-right: 10px;
    }

    h2 {
        font-size: 1.1rem;
        padding-left: 10px;
    }

    p {
        font-size: 0.75rem;
    }

    .button {
        padding: 6px 12px;
        font-size: 0.8rem;
        margin-right: 8px;
    }
}

@media (max-width: 400px) {
    .rotating-image {
        width: 100px; /* 最小图片尺寸 */
        height: 100px; /* 最小图片尺寸，保持宽高比 1:1 */
        margin-right: 8px;
    }

    h2 {
        font-size: 1rem;
    }

    .button-group {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .button {
        margin-right: 0;
        flex: 1;
        text-align: center;
    }
}
/* 新增：常用推荐容器的样式 */
.recommendations-container {
    padding: 20px;
    background-color: #ffffff; /* 白天模式背景色 */
    border-radius: 10px;
    margin-top: 30px;
    width: 100%; /* 宽度与上方容器一致 */
    max-width: 800px;/* 最大宽度与上方容器一致 */
    margin: 10px auto; /* 与卡片容器的间距 */
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 添加阴影 */
}

.recommendations-container h2 {
    text-align: center;
    font-size: 24px;
    color: #f69833; /* 白天模式标题蓝色 */
    margin-bottom: 20px;
}

.recommendation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.recommendation-card {
    background-color: #f9f9f9; /* 白天模式卡片背景色 */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recommendation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.recommendation-link {
    display: flex;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: inherit;
}

.recommendation-icon {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    border-radius: 50%;
}
/* 手机端自适应 */
@media (max-width: 800px) {
    .recommendation-grid {
        grid-template-columns: 1fr; /* 手机端改为单列 */
    }

    .recommendations-container {
        width: 90%; /* 手机端宽度限制为网页的80% */
        max-width: none; /* 取消最大宽度限制 */
    }
}
.recommendation-content h3 {
    margin: 0;
    font-size: 18px;
    color: #ee675c; /* 白天模式标题颜色 */
}

.recommendation-content p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666; /* 白天模式描述颜色 */
}

/* 黑夜模式样式 */
body.dark-mode .recommendations-container {
    background-color: #333; /* 黑夜模式背景色 */
}

body.dark-mode .recommendations-container h2 {
    color: #ff7800; /* 黑夜模式标题颜色 */
}

body.dark-mode .recommendation-card {
    background-color: #444; /* 黑夜模式卡片背景色 */
}

body.dark-mode .recommendation-content h3 {
    color: #ff7800; /* 黑夜模式标题颜色 */
}

body.dark-mode .recommendation-content p {
    color: #ccc; /* 黑夜模式描述颜色 */
}

/* 弹窗样式 */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    width: 400px;
    max-width: 90%;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

.modal-header {
    padding: 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    text-align: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.modal-body {
    padding: 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.contact-info {
    margin-top: 15px;
    padding: 10px;
    background-color: #f1f3f5;
    border-radius: 8px;
    text-align: center;
}

.contact-info p {
    margin: 5px 0;
    color: #666;
}

.modal-footer {
    padding: 15px;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.confirm-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.confirm-btn:hover {
    background-color: #0056b3;
}
    /* 滚动条样式 */
    ::-webkit-scrollbar {
      width: 10px;
      height: 0px;
    }

    ::-webkit-scrollbar-thumb {
      background-color: #12b7f5;
      background-image: -webkit-linear-gradient(45deg, rgba(255, 93, 143, 1) 25%, transparent 25%, transparent 50%, rgba(255, 93, 143, 1) 50%, rgba(255, 93, 143, 1) 75%, transparent 75%, transparent);
    }

    ::-webkit-scrollbar-track {
      -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
      background: #ffffff;
    }
/* modal弹窗背景样式 */
#zibpay_modal, .modal-open .modal {
    background: url(https://cdn-i-w.uuuix.com/cdn/O1CN01sHaYCQ1QbIkXDzSVg_!!2210123621994.png);
    backdrop-filter: blur(10px) !important;
}

/* 动态岛屿样式 */
.dynamic-island {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) scale(0); /* 初始状态缩小为0 */
    transform-origin: center;
    width: auto;
    max-width: 80%;
    height: 40px;
    background-color: #000;
    border-radius: 25px; /* 与默认高度一致的圆角半径 */
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between; /* 图标和波浪图分别位于左右两侧 */
    transition: transform 0.4s ease-in-out, height 0.6s ease-in-out, border-radius 0.6s ease-in-out, box-shadow 0.5s ease-in-out, opacity 0.5s ease-in-out;
    overflow: visible; /* 允许溢出，避免图片被遮挡 */
    z-index: 1000;
    padding-left: 10px; /* 左侧内边距 */
    padding-right: 10px; /* 右侧内边距 */
    opacity: 0;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.45); /* 添加黑色阴影 */
}

.dynamic-island.active {
    transform: translateX(-50%) scale(1); /* 激活状态放大为正常大小 */
    opacity: 1;
}

.dynamic-island.inactive {
    transform: translateX(-50%) scale(0); /* 关闭状态缩小 */
    opacity: 0;
}

.dynamic-island:hover {
    height: 60px;
    border-radius: 50px;
}

.dynamic-island:hover img {
    width: 30px; /* 鼠标悬停时，图片宽度也增大 */
    height: 30px; /* 鼠标悬停时，图片高度增大 */
}

/* 条形波动效果 */
.bars {
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: flex-end; /* 向右对齐 */
    gap: 3px;
}

.bar {
    width: 2px;
    height: 13px;
    background-color: green;
    animation: bounce 1s infinite ease-in-out;
    animation-direction: alternate;
}

/* 增加更多的条形波动并调整动画时间 */
.bar:nth-child(1) { animation-duration: 1s; }
.bar:nth-child(2) { animation-duration: 0.9s; }
.bar:nth-child(3) { animation-duration: 0.8s; }
.bar:nth-child(4) { animation-duration: 0.7s; }
.bar:nth-child(5) { animation-duration: 0.6s; }
.bar:nth-child(6) { animation-duration: 0.9s; }
.bar:nth-child(7) { animation-duration: 0.7s; }

@keyframes bounce {
    0% { transform: scaleY(0.3); background-color: green; }
    50% { transform: scaleY(1); background-color: orange; }
    100% { transform: scaleY(0.3); background-color: green; }
}

/* 内容区域样式 */
.island-content {
    opacity: 0;
    transition: opacity 0.9s ease-in-out, filter 0.8s ease-in-out; /* 使内容加粗并从模糊到清晰 */
    font-weight: bold; /* 使文字加粗 */
    flex-grow: 1; /* 使内容区占满剩余空间 */
    text-align: center; /* 文字内容居中 */
    display: flex; /* 使用 Flexbox 布局 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
}

.dynamic-island.active .island-content {
    opacity: 1;
}

/* 图片样式 */
.dynamic-island img {
    width: 20px; /* 图片宽度 */
    height: 20px; /* 图片高度 */
    object-fit: cover; /* 保证图片内容充满容器 */
    transition: height 0.8s ease-in-out, width 0.8s ease-in-out, filter 0.8s ease-in-out;
}

/* 其他样式 */
div.widget_text.zib-widget.widget_custom_html {
    background: none;
    padding: 0px;
    margin-bottom: 0px;
    box-shadow: none;
}

.notyf.success {
    background: linear-gradient(90deg, rgb(249 15 15 / 70%), rgba(61, 189, 249, 0.8));
    border-radius: 18px 0 0 18px;
}

.enlighter-default .enlighter {
    max-height: 400px;
    overflow-y: auto !important;
}

.posts-item .item-heading>a {
    font-weight: bold;
    color: unset;
}

@media (max-width: 640px) {
    .meta-right .meta-like {
        display: unset !important;
    }
}
