.prompt-single-page,
.prompt-single-page * {
    box-sizing: border-box;
}

.prompt-single-page {
    padding: 32px 0 56px;
    background:
        radial-gradient(circle at top left, rgba(64, 101, 246, 0.06), transparent 28%),
        radial-gradient(circle at top right, rgba(16, 185, 129, 0.05), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #f4f7fb 100%);
}

.prompt-single-page .container {
    position: relative;
}

.prompt-single-page .main-body-with-sidebar {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.prompt-single-page .main-content {
    flex: 1;
    min-width: 0;
}

.prompt-single-page .prompt-sidebar {
    width: 320px;
    flex: 0 0 320px;
    position: sticky;
    top: 24px;
}

.prompt-single-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 16px 40px rgba(15, 23, 42, 0.06),
        0 2px 10px rgba(15, 23, 42, 0.03);
    backdrop-filter: blur(6px);
}

.prompt-single-hero {
    position: relative;
    padding: 32px 32px 26px;
    background:
        radial-gradient(circle at right top, rgba(64, 101, 246, 0.10), transparent 28%),
        radial-gradient(circle at left top, rgba(16, 185, 129, 0.06), transparent 24%),
        linear-gradient(180deg, #fcfdff 0%, #f6f9fe 100%);
    border-bottom: 1px solid #ecf1f7;
}

.prompt-single-hero::after {
    content: "";
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(64, 101, 246, 0.22), transparent);
}

.prompt-single-meta-top {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.prompt-platform-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, #3f63f6 0%, #6f89ff 100%);
    color: #fff;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(64, 101, 246, 0.22);
}

.prompt-style-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f7f9ff 0%, #eef3ff 100%);
    color: #4065f6;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    border: 1px solid #d9e2ff;
}

.prompt-single-date {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: #94a3b8;
    font-weight: 700;
}

.prompt-single-title {
    margin: 0 0 16px !important;
    font-size: 36px !important;
    line-height: 1.24 !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    letter-spacing: -0.02em;
    word-break: break-word;
}

.prompt-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: 14px;
    line-height: 1.8;
    color: #64748b;
}

.prompt-single-meta .meta-item {
    position: relative;
}

.prompt-single-meta a {
    color: #4065f6 !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.prompt-single-meta a:hover {
    color: #2747d8 !important;
}

.prompt-single-actions {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.prompt-favorite-btn {
    appearance: none;
    border: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.22s ease;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
}

.prompt-favorite-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.20);
}

.prompt-favorite-btn.active {
    background: linear-gradient(135deg, #ff4d6d, #ff758f);
    box-shadow: 0 12px 26px rgba(255, 77, 109, 0.24);
}

.prompt-favorite-btn.loading {
    opacity: 0.75;
    cursor: wait;
}

.prompt-favorite-icon {
    font-size: 16px;
    line-height: 1;
}

.prompt-favorite-toast {
    position: absolute;
    right: 32px;
    top: 32px;
    z-index: 4;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.88);
    color: #fff;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.22s ease;
}

.prompt-favorite-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.prompt-single-content {
    padding: 30px 32px 32px;
}

.prompt-author-box {
    margin-top: 4px;
    margin-bottom: 26px;
    padding: 18px 20px;
    text-align: right;
}

.prompt-author-label {
    margin-bottom: 6px;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.prompt-author-name {
    font-size: 16px;
    line-height: 1.7;
    color: #111827;
    font-weight: 800;
    word-break: break-word;
}

.prompt-author-name a {
    color: #4065f6 !important;
    text-decoration: none !important;
}

.prompt-author-name a:hover {
    color: #2f54eb !important;
}

.prompt-content-body {
    font-size: 16px;
    line-height: 1.95;
    color: #374151;
    overflow: hidden;
}

.prompt-content-body > *:first-child {
    margin-top: 0 !important;
}

.prompt-content-body > *:last-child {
    margin-bottom: 0 !important;
}

.prompt-content-body p {
    margin: 0 0 18px !important;
    font-size: 16px !important;
    line-height: 1.95 !important;
    color: #374151 !important;
    word-break: break-word;
}

.prompt-content-body h2,
.prompt-content-body h3,
.prompt-content-body h4 {
    margin: 30px 0 14px !important;
    color: #0f172a !important;
    font-weight: 800 !important;
    line-height: 1.45 !important;
    letter-spacing: -0.01em;
}

.prompt-content-body h2 {
    font-size: 28px !important;
}

.prompt-content-body h3 {
    font-size: 22px !important;
}

.prompt-content-body h4 {
    font-size: 18px !important;
}

.prompt-content-body a {
    color: #4065f6 !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(64, 101, 246, 0.22);
    transition: all 0.2s ease;
}

.prompt-content-body a:hover {
    color: #2648df !important;
    border-bottom-color: rgba(64, 101, 246, 0.45);
}

.prompt-content-body ul,
.prompt-content-body ol {
    margin: 0 0 18px 22px;
    color: #374151;
}

.prompt-content-body li {
    margin-bottom: 8px;
    line-height: 1.9;
}

.prompt-content-body blockquote {
    margin: 22px 0;
    padding: 18px 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #f5f9ff 100%);
    border: 1px solid #e5eefc;
    border-left: 4px solid #4065f6;
    border-radius: 14px;
    color: #475569;
    box-shadow: 0 8px 20px rgba(64, 101, 246, 0.04);
}

.prompt-content-body pre {
    margin: 18px 0 !important;
    padding: 16px 18px !important;
    background: #0f172a !important;
    color: #e2e8f0 !important;
    border-radius: 14px !important;
    overflow-x: auto;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.prompt-content-body code {
    border-radius: 8px;
}

.prompt-content-body :not(pre) > code {
    padding: 2px 8px;
    background: #f1f5f9;
    color: #e11d48;
    font-size: 0.92em;
}

.prompt-content-body hr {
    margin: 28px 0;
    border: none;
    border-top: 1px solid #e8edf5;
}

.prompt-content-body img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 0 auto 20px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.prompt-content-body iframe,
.prompt-content-body video,
.prompt-content-body table {
    max-width: 100%;
}

.prompt-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #e5eaf2;
    background: #fff;
}

.prompt-content-body table th,
.prompt-content-body table td {
    padding: 12px 14px;
    border-bottom: 1px solid #eef2f7;
    text-align: left;
}

.prompt-content-body table th {
    background: #f8fafc;
    color: #111827;
    font-weight: 700;
}

.prompt-content-body style,
.prompt-content-body script {
    display: none !important;
}

#ratingplus_container {
    margin-top: 22px;
}

.prompt-dual-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
    margin-bottom: 10px;
    padding-top: 26px;
    border-top: 1px solid #edf2f7;
}

.prompt-copy-card {
    position: relative;
    background: linear-gradient(180deg, #fbfdff 0%, #f6faff 100%);
    border: 1px solid #e4edf8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 10px 24px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255,255,255,0.85);
}

.prompt-copy-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, #4065f6 0%, #7c93ff 50%, #10b981 100%);
}

.prompt-copy-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(180deg, #fcfeff 0%, #f4f8fd 100%);
    border-bottom: 1px solid #e8eef7;
}

.prompt-copy-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.prompt-copy-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.prompt-copy-badge-en {
    background: linear-gradient(135deg, #4065f6, #6e88ff);
}

.prompt-copy-badge-cn {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.prompt-copy-title {
    margin: 0 !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
    color: #111827 !important;
}

.prompt-copy-btn {
    appearance: none;
    border: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #fff;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all 0.22s ease;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
}

.prompt-copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.prompt-copy-btn.copied {
    background: linear-gradient(135deg, #10b981, #22c55e);
    box-shadow: 0 8px 18px rgba(16, 185, 129, 0.22);
}

.prompt-copy-body {
    padding: 18px;
}

.prompt-copy-text {
    margin: 0 !important;
    display: block;
    white-space: pre-wrap;
    word-break: break-word;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
    font-size: 14px !important;
    line-height: 1.9 !important;
    color: #1f2937 !important;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
    border: 1px solid #e5eaf2 !important;
    border-radius: 14px !important;
    padding: 16px !important;
    overflow-x: auto;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8) !important;
}

.prompt-copy-text::before,
.prompt-copy-text::after {
    display: none !important;
    content: none !important;
}

.payment-section {
    margin-top: 26px;
}

.prompt-single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid #edf2f7;
}

.prompt-single-tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f8fafc 0%, #f2f6fb 100%);
    border: 1px solid #e4eaf3;
    font-size: 13px;
    line-height: 1;
    color: #64748b !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.2s ease;
}

.prompt-single-tag:hover {
    color: #4065f6 !important;
    border-color: #d6dfff;
    background: #f5f8ff;
    transform: translateY(-1px);
}

.prompt-comments-box {
    margin-top: 24px;
    background: rgba(255,255,255,0.95);
    border: 1px solid #e8edf5;
    border-radius: 22px;
    padding: 24px;
    box-shadow:
        0 12px 30px rgba(15, 23, 42, 0.05),
        0 2px 10px rgba(15, 23, 42, 0.03);
}

.prompt-sidebar-widget {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e8edf5;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow:
        0 12px 30px rgba(15, 23, 42, 0.05),
        0 2px 10px rgba(15, 23, 42, 0.02);
    overflow: hidden;
    backdrop-filter: blur(8px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prompt-sidebar-widget:hover {
    transform: translateY(-2px);
    box-shadow:
        0 16px 34px rgba(15, 23, 42, 0.07),
        0 2px 12px rgba(15, 23, 42, 0.03);
}

.prompt-sidebar-widget .widget-title {
    margin: 0 !important;
    padding: 18px 18px 14px;
    font-size: 18px !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
    color: #111827 !important;
    border-bottom: 1px solid #edf2f7;
    background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
}

.prompt-sidebar-widget .widget-content {
    padding: 16px 18px 18px;
}

.prompt-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prompt-info-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px dashed #eef2f7;
}

.prompt-info-row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.prompt-info-row .label {
    color: #94a3b8;
    flex-shrink: 0;
    font-weight: 600;
}

.prompt-info-row .value {
    color: #111827;
    font-weight: 700;
    text-align: right;
    word-break: break-word;
}

.prompt-info-row .value a {
    color: #4065f6 !important;
    text-decoration: none !important;
}

.prompt-info-row .value a:hover {
    color: #2747d8 !important;
}

.prompt-sidebar-list,
.sticky-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prompt-sidebar-item,
.sticky-sidebar-item {
    margin-bottom: 0;
}

.prompt-sidebar-link,
.sticky-sidebar-link {
    display: block;
    text-decoration: none !important;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.prompt-sidebar-item:last-child .prompt-sidebar-link,
.sticky-sidebar-item:last-child .sticky-sidebar-link {
    border-bottom: none;
    padding-bottom: 0;
}

.prompt-sidebar-link:hover,
.sticky-sidebar-link:hover {
    transform: translateX(2px);
}

.prompt-sidebar-platform,
.sticky-platform {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 5px 9px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f1f5ff 0%, #eaf0ff 100%);
    color: #4065f6;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    border: 1px solid #dce5ff;
}

.prompt-sidebar-title,
.sticky-title {
    display: block;
    font-size: 14px;
    line-height: 1.72;
    color: #111827;
    font-weight: 800;
    transition: color 0.2s ease;
}

.prompt-sidebar-link:hover .prompt-sidebar-title,
.sticky-sidebar-link:hover .sticky-title {
    color: #4065f6;
}

.sticky-info {
    position: relative;
}

.sticky-views {
    display: inline-block;
    margin-top: 7px;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
}

.no-content {
    margin: 0;
    color: #94a3b8;
    font-size: 14px;
}

/* 平板 */
@media (max-width: 992px) {
    .prompt-single-page .main-body-with-sidebar {
        flex-direction: column;
    }

    .prompt-single-page .prompt-sidebar {
        width: 100%;
        flex: none;
        position: static;
        top: auto;
    }

    .prompt-single-title {
        font-size: 30px !important;
    }
}

/* 手机 */
@media (max-width: 768px) {
    .prompt-single-page {
        padding: 18px 0 38px;
    }

    .prompt-single-card {
        border-radius: 18px;
    }

    .prompt-single-hero {
        padding: 22px 18px 18px;
    }

    .prompt-single-hero::after {
        left: 18px;
        right: 18px;
    }

    .prompt-single-title {
        font-size: 24px !important;
        line-height: 1.34 !important;
    }

    .prompt-single-meta {
        gap: 8px 14px;
        font-size: 13px;
    }

    .prompt-single-actions {
        margin-top: 18px;
    }

    .prompt-favorite-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 14px;
    }

    .prompt-favorite-toast {
        top: auto;
        right: 18px;
        bottom: 18px;
    }

    .prompt-single-content {
        padding: 20px 18px 22px;
    }

    .prompt-author-box {
        padding: 14px 15px;
        margin-bottom: 18px;
        border-radius: 14px;
    }

    .prompt-content-body {
        font-size: 15px;
    }

    .prompt-content-body p {
        font-size: 15px !important;
        line-height: 1.9 !important;
    }

    .prompt-content-body h2 {
        font-size: 22px !important;
    }

    .prompt-content-body h3 {
        font-size: 19px !important;
    }

    .prompt-content-body h4 {
        font-size: 16px !important;
    }

    .prompt-dual-box {
        gap: 14px;
        margin-top: 24px;
        padding-top: 18px;
    }

    .prompt-copy-card {
        border-radius: 16px;
    }

    .prompt-copy-head {
        padding: 14px;
        align-items: flex-start;
        flex-direction: column;
    }

    .prompt-copy-title-wrap {
        width: 100%;
    }

    .prompt-copy-title {
        font-size: 16px !important;
    }

    .prompt-copy-btn {
        width: 100%;
        justify-content: center;
    }

    .prompt-copy-body {
        padding: 14px;
    }

    .prompt-copy-text {
        font-size: 13px !important;
        line-height: 1.8 !important;
        padding: 14px !important;
    }

    .prompt-comments-box {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .prompt-sidebar-widget {
        border-radius: 16px;
    }

    .prompt-sidebar-widget .widget-title {
        padding: 16px 16px 12px;
        font-size: 17px !important;
    }

    .prompt-sidebar-widget .widget-content {
        padding: 14px 16px 16px;
    }
}

.prompt-rating-box {
    margin-top: 24px;
}

.prompt-rating-box #ratingplus_container {
    margin-top: 0;
}

/* Restore list markers inside article content */
.content ul,
.news-content ul,
.article-body ul,
.flash-article-body ul,
.app-content .content ul {
    list-style: disc !important;
    padding-left: 0em !important;
    margin: 0em 0 !important;
}

.content ol,
.news-content ol,
.article-body ol,
.flash-article-body ol,
.app-content .content ol {
    list-style: decimal !important;
    padding-left: 0em !important;
    margin: 0em 0 !important;
}

.content li,
.news-content li,
.article-body li,
.flash-article-body li,
.app-content .content li {
    list-style: inherit !important;
    display: list-item !important;
    margin: 0.35em 0 !important;
}

/* ===== UEditor 列表兼容修复 ===== */
.prompt-single-content ul,
.prompt-single-content ol {
    margin-top: 0.8em !important;
    margin-bottom: 0.8em !important;
    padding-left: 0em !important;
    overflow: visible !important;
}

.prompt-single-content ul {
    list-style-type: disc !important;
}

.prompt-single-content ol {
    list-style-type: decimal !important;
}

.prompt-single-content ul li,
.prompt-single-content ol li {
    list-style: inherit !important;
    display: list-item !important;
    margin: 0.3em 0 !important;
}

.prompt-single-content ul li p,
.prompt-single-content ol li p {
    margin: 0 !important;
}

/* 二级三级列表 */
.prompt-single-content ul ul {
    list-style-type: circle !important;
}

.prompt-single-content ul ul ul {
    list-style-type: square !important;
}

.prompt-single-content ol ol {
    list-style-type: lower-alpha !important;
}

.prompt-single-content ol ol ol {
    list-style-type: lower-roman !important;
}

/* marker 颜色 */
.prompt-single-content li::marker {
    color: #374151 !important;
}
/* 收藏按钮放在 Prompt Info 底部 */
.prompt-info-favorite-box {
    position: relative;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #eef2f7;
}

.prompt-info-favorite-box .prompt-favorite-btn {
    width: 100%;
    appearance: none;
    border: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.22s ease;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}

.prompt-info-favorite-box .prompt-favorite-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
}

.prompt-info-favorite-box .prompt-favorite-btn.active {
    background: linear-gradient(135deg, #ff4d6d, #ff758f);
    box-shadow: 0 12px 26px rgba(255, 77, 109, 0.22);
}

.prompt-info-favorite-box .prompt-favorite-btn.loading {
    opacity: 0.75;
    cursor: wait;
}

.prompt-info-favorite-box .prompt-favorite-icon {
    font-size: 16px;
    line-height: 1;
}

.prompt-info-favorite-box .prompt-favorite-toast {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -44px;
    margin: 0 auto;
    width: max-content;
    max-width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.88);
    color: #fff;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.22s ease;
    text-align: center;
    z-index: 3;
    pointer-events: none;
}

.prompt-info-favorite-box .prompt-favorite-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .prompt-info-favorite-box {
        margin-top: 16px;
        padding-top: 14px;
    }

    .prompt-info-favorite-box .prompt-favorite-btn {
        padding: 12px 14px;
        font-size: 13px;
    }

    .prompt-info-favorite-box .prompt-favorite-toast {
        bottom: -42px;
        font-size: 11px;
        padding: 9px 12px;
    }
}
