:root {
    --tr-hero-font-display: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans SC", "Microsoft YaHei", sans-serif;
    --tr-hero-font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans SC", "Microsoft YaHei", sans-serif;
}
.entry-copyright{
    font-size: .875rem;
    background-color: #f3f3f3;
    color: #555;
    border-color: #f8f9fa;
    border: 1px dashed #7a7a7a;
    border-radius: 0.25rem;
    position: relative;
    padding: .75rem 1.5rem;
	margin-top: 0.75rem !important;
}
.entry-copyright li{
    margin-bottom: 0.5rem;
}
.tr-hero-section {
    width: 100%;
    padding: 20px 0 60px;
    position: relative;
    overflow: hidden;
}

.tr-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(59, 130, 246, 0.04) 0%, transparent 60%);
    animation: auroraShift 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes auroraShift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, 1%) rotate(1deg); }
    66% { transform: translate(-1%, 2%) rotate(-1deg); }
}

.tr-hero-section.tr-hero-bg-auto::before {
    background: var(--hero-bg-img) center/cover no-repeat;
    filter: blur(20px) brightness(0.4);
    transform: scale(1.2);
    z-index: -1;
}

.tr-hero-section.tr-hero-bg-auto::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    z-index: -1;
    pointer-events: none;
}

.tr-hero-section .container {
    position: relative;
    z-index: 1;
}

/* 面包屑导航 - 独立于container外 */
.tr-hero-breadcrumb-outer {
    margin-bottom: 20px;
}

.tr-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #94a3b8;
    flex-wrap: wrap;
}

.tr-hero-breadcrumb a {
    color: #656565;
    text-decoration: none;
    transition: color 0.2s ease;
}

.tr-hero-breadcrumb a:hover {
    color: #656565;
}

.tr-hero-breadcrumb .sep {
    color: #656565;
    font-size: 11px;
    margin: 0 2px;
}

.tr-hero-breadcrumb .current {
    color: #656565;
    font-weight: 500;
}

body.dark-open .tr-hero-breadcrumb,
[data-bs-theme="dark"] .tr-hero-breadcrumb {
    color: #64748b;
}

body.dark-open .tr-hero-breadcrumb a,
[data-bs-theme="dark"] .tr-hero-breadcrumb a {
    color: #656565;
}

body.dark-open .tr-hero-breadcrumb a:hover,
[data-bs-theme="dark"] .tr-hero-breadcrumb a:hover {
    color: #656565;
}

body.dark-open .tr-hero-breadcrumb .sep,
[data-bs-theme="dark"] .tr-hero-breadcrumb .sep {
    color: #656565;
}

body.dark-open .tr-hero-breadcrumb .current,
[data-bs-theme="dark"] .tr-hero-breadcrumb .current {
    color: #656565;
}

.tr-hero-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: .25rem;
    padding: 24px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    position: relative;
    overflow: hidden;
}

.tr-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
}

body.dark-open .tr-hero-card,
[data-bs-theme="dark"] .tr-hero-card {
    background: rgba(30, 32, 40, 0.8);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.tr-hero-thumb {
    position: relative;
    border-radius: .25rem;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.03);
    box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.12);
}

body.dark-open .tr-hero-thumb,
[data-bs-theme="dark"] .tr-hero-thumb {
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.4);
}

.tr-hero-thumb img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.tr-hero-thumb:hover img {
    transform: scale(1.05);
}

.tr-hero-thumb-meta {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark-open .tr-hero-thumb-meta,
[data-bs-theme="dark"] .tr-hero-thumb-meta {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.05);
}

.tr-hero-thumb-meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 12px;
}

.tr-hero-thumb-meta-item:not(:last-child) {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

body.dark-open .tr-hero-thumb-meta-item:not(:last-child),
[data-bs-theme="dark"] .tr-hero-thumb-meta-item:not(:last-child) {
    border-color: rgba(255, 255, 255, 0.06);
}

.tr-hero-thumb-meta-label {
    color: #64748b;
    font-family: var(--tr-hero-font-body);
    font-weight: 500;
}

.tr-hero-thumb-meta-value {
    color: #0f172a;
    font-family: var(--tr-hero-font-body);
    font-weight: 700;
}

body.dark-open .tr-hero-thumb-meta-label,
body.dark-open .tr-hero-thumb-meta-value,
[data-bs-theme="dark"] .tr-hero-thumb-meta-label,
[data-bs-theme="dark"] .tr-hero-thumb-meta-value {
    color: #e2e8f0;
}

.tr-hero-thumb-meta-value {
    color: #3b82f6;
}

.tr-hero-risktips {
    margin-top: 12px;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(255, 248, 241, 0.9), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(255, 237, 213, 0.8);
    border-radius: .25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #d97706;
    font-family: var(--tr-hero-font-body);
    font-size: 12px;
    font-weight: 600;
}

body.dark-open .tr-hero-risktips,
[data-bs-theme="dark"] .tr-hero-risktips {
    background: linear-gradient(135deg, rgba(255, 237, 213, 0.1), rgba(255, 255, 255, 0.05));
    border-color: rgba(255, 237, 213, 0.2);
}

.tr-hero-risktips svg {
    flex-shrink: 0;
    color: #f59e0b;
}

.tr-hero-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tr-hero-title-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.tr-hero-title-left {
    flex: 1;
    min-width: 0;
    padding-right: 50px;
}

.tr-hero-title {
    position: relative;
    padding-left: 16px;
    font-family: var(--tr-hero-font-display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: #0f172a;
    margin: 0 0 12px 0;
    letter-spacing: -0.3px;
}

body.dark-open .tr-hero-title,
[data-bs-theme="dark"] .tr-hero-title {
    color: #f1f5f9;
}

.tr-hero-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 5px;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
    border-radius: .25rem;
}

.tr-hero-meta-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}

.tr-hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--tr-hero-font-body);
    font-size: 12px;
    color: #64748b;
    background: rgba(0, 0, 0, 0.03);
    padding: 4px 10px;
    border-radius: .25rem;
    transition: all 0.25s ease;
    font-weight: 500;
}

body.dark-open .tr-hero-meta-item,
[data-bs-theme="dark"] .tr-hero-meta-item {
    background: rgba(255, 255, 255, 0.06);
}

.tr-hero-meta-item i {
    color: #94a3b8;
    font-size: 11px;
}

.tr-hero-meta-item:hover {
    background: rgba(59, 130, 246, 0.1);
}

.tr-hero-meta-item:hover i {
    color: #3b82f6;
}

.tr-hero-meta-link {
    text-decoration: none;
    cursor: pointer;
}

.tr-hero-meta-link:hover {
    background: rgba(99, 102, 241, 0.12);
}

.tr-hero-meta-link:hover i,
.tr-hero-meta-link:hover .meta-text {
    color: #4f46e5;
}

.tr-hero-meta-edit {
    text-decoration: none;
    font-family: var(--tr-hero-font-body);
    font-size: 12px;
    color: #64748b;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: .25rem;
    transition: all 0.25s ease;
    font-weight: 500;
}

body.dark-open .tr-hero-meta-edit,
[data-bs-theme="dark"] .tr-hero-meta-edit {
    background: rgba(255, 255, 255, 0.06);
}

.tr-hero-meta-edit:hover {
    background: rgba(251, 191, 36, 0.15);
    color: #d97706;
}

.tr-hero-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #3b82f6, #6366f1, #8b5cf6);
    color: white;
    padding: 12px 20px;
    border-radius: .25rem;
    font-weight: 600;
    gap: 16px;
}

.tr-hero-banner-text {
    font-size: 14px;
}

.tr-hero-banner-vip {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 5px 16px;
    border-radius: .25rem;
    font-size: 12px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.25s ease;
}

.tr-hero-banner-vip:hover {
    background: rgba(255, 255, 255, 0.4);
    color: white;
    transform: scale(1.02);
}

.tr-hero-permission {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.tr-hero-tier {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    min-width: 0;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: .25rem;
    font-family: var(--tr-hero-font-body);
    font-size: 12px;
    color: #475569;
    font-weight: 600;
    transition: all 0.25s ease;
    position: relative;
}

body.dark-open .tr-hero-tier,
[data-bs-theme="dark"] .tr-hero-tier {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

.tr-hero-tier:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.1);
}

body.dark-open .tr-hero-tier:hover,
[data-bs-theme="dark"] .tr-hero-tier:hover {
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.3);
}

.tr-hero-tier-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tr-hero-tier-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.tr-hero-tier-name {
    color: inherit;
    white-space: nowrap;
}

.tr-hero-tier-sep {
    color: #cbd5e1;
    font-size: 10px;
}

body.dark-open .tr-hero-tier-sep,
[data-bs-theme="dark"] .tr-hero-tier-sep {
    color: #475569;
}

.tr-hero-tier-price {
    font-family: var(--tr-hero-font-body);
    color: #3b82f6;
    font-weight: 700;
}

body.dark-open .tr-hero-tier-price,
[data-bs-theme="dark"] .tr-hero-tier-price {
    color: #60a5fa;
}

.tr-hero-tier-price.free {
    color: #10b981;
}

body.dark-open .tr-hero-tier-price.free,
[data-bs-theme="dark"] .tr-hero-tier-price.free {
    color: #34d399;
}

.tr-hero-tier-price.deny {
    color: #94a3b8;
    font-weight: 600;
}

.tr-hero-tier-discount {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: .25rem;
    margin-left: 6px;
    flex-shrink: 0;
}

.tr-hero-tier-recommend {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: .25rem;
    margin-left: 6px;
    flex-shrink: 0;
}

.tr-hero-tier-current {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.08));
    border-color: rgba(34, 197, 94, 0.3);
}

.tr-hero-tier-current .tr-hero-tier-icon {
    color: #10b981;
}

.tr-hero-tier-current .tr-hero-tier-name {
    color: #15803d;
}

body.dark-open .tr-hero-tier-current,
[data-bs-theme="dark"] .tr-hero-tier-current {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.1));
    border-color: rgba(34, 197, 94, 0.4);
}

body.dark-open .tr-hero-tier-current .tr-hero-tier-icon,
[data-bs-theme="dark"] .tr-hero-tier-current .tr-hero-tier-icon {
    color: #4ade80;
}

body.dark-open .tr-hero-tier-current .tr-hero-tier-name,
[data-bs-theme="dark"] .tr-hero-tier-current .tr-hero-tier-name {
    color: #4ade80;
}

.tr-hero-tier.deny {
    opacity: 0.5;
}

.tr-hero-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: .25rem;
    font-family: var(--tr-hero-font-body);
    font-size: 13px;
    font-weight: 600;
}

.tr-hero-notice svg {
    flex-shrink: 0;
}

.tr-hero-notice-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(22, 163, 74, 0.08));
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

body.dark-open .tr-hero-notice-success,
[data-bs-theme="dark"] .tr-hero-notice-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.1));
    color: #4ade80;
    border-color: rgba(34, 197, 94, 0.3);
}

.tr-hero-notice-danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(185, 28, 28, 0.08));
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

body.dark-open .tr-hero-notice-danger,
[data-bs-theme="dark"] .tr-hero-notice-danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(185, 28, 28, 0.1));
    color: #fca5a5;
    border-color: rgba(239, 68, 68, 0.3);
}

.tr-hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

body.dark-open .tr-hero-bottom,
[data-bs-theme="dark"] .tr-hero-bottom {
    border-color: rgba(255, 255, 255, 0.06);
}

.tr-hero-main-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.tr-hero-sub-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.tr-hero-btn-group {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 8px;
}

.tr-hero-btn {
    height: 44px;
    padding: 0 24px;
    border-radius: .25rem;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.tr-hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.tr-hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

.tr-hero-btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 8px 24px -4px rgba(16, 185, 129, 0.4);
}

.tr-hero-btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -4px rgba(16, 185, 129, 0.5);
    color: white;
}

.tr-hero-btn-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 8px 24px -4px rgba(239, 68, 68, 0.4);
}

.tr-hero-btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -4px rgba(239, 68, 68, 0.5);
    color: white;
}

.tr-hero-btn-info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 8px 24px -4px rgba(59, 130, 246, 0.4);
}

.tr-hero-btn-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -4px rgba(59, 130, 246, 0.5);
    color: white;
}

.tr-hero-btn-dark {
    background: linear-gradient(135deg, #64748b, #475569);
    color: white;
    box-shadow: 0 8px 24px -4px rgba(100, 116, 139, 0.4);
}

.tr-hero-btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -4px rgba(100, 116, 139, 0.5);
    color: white;
}

.tr-hero-btn-mini {
    height: 34px;
    padding: 0 14px;
    font-size: 12px;
}

.tr-hero-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.tr-hero-qrbox {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 10;
}

.tr-hero-qrbtn {
    width: 40px;
    height: 40px;
    border-radius: .25rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
}

body.dark-open .tr-hero-qrbtn,
[data-bs-theme="dark"] .tr-hero-qrbtn {
    background: rgba(30, 32, 40, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
}

.tr-hero-qrbtn:hover {
    background: #3b82f6;
    color: white;
    transform: scale(1.05);
}

.tr-hero-qrcode {
    position: absolute;
    top: 50px;
    right: 0;
    width: 130px;
    padding: 12px;
    background: white;
    border-radius: .25rem;
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.25);
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.tr-hero-qrbox:hover .tr-hero-qrcode {
    display: block;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tr-hero-qrcode img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.tr-hero-copy-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 12px -2px rgba(16, 185, 129, 0.35);
}

.archive-hero.post-hero {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.archive-hero.post-hero .archive-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    transform: scale(1.2);
}

.archive-hero.post-hero .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .tr-hero-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }

    .tr-hero-thumb {
        max-width: 400px;
        margin: 0 auto;
    }

    .tr-hero-qrbox {
        top: 16px;
        right: 16px;
    }
}

@media (max-width: 768px) {
    .tr-hero-section {
        padding: 40px 0 60px;
    }

    .tr-hero-card {
        border-radius: .25rem;
        padding: 24px;
        gap: 24px;
    }

    .tr-hero-title {
        font-size: 22px;
    }

    .tr-hero-banner {
        flex-direction: column;
        text-align: center;
        border-radius: .25rem;
        padding: 16px;
    }

    .tr-hero-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .tr-hero-main-actions {
        flex-direction: column;
    }

    .tr-hero-btn-group {
        flex-direction: column;
        width: 100%;
    }

    .tr-hero-btn {
        width: 100%;
    }

    .tr-hero-meta-row {
        gap: 6px;
    }

    .tr-hero-meta-item,
    .tr-hero-breadcrumb a,
    .tr-hero-meta-edit {
        padding: 5px 10px;
        font-size: 11px;
    }
}

.tr-hero-qrbox .tr-hero-qrcode img {
    width: 100%;
    border-radius: 16px;
}
