/* /Components/ArticleCard.razor.rz.scp.css */
.article-card[b-iatuag4r8c] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .article-card:hover[b-iatuag4r8c] {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

.card-header[b-iatuag4r8c] {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display:flex;
    justify-content:space-between;
}

    .card-header h3[b-iatuag4r8c] {
        margin: 0 0 8px 0;
        font-size: 1.2rem;
        color: #333;
    }

.meta-info[b-iatuag4r8c] {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #6c757d;
}

.card-content[b-iatuag4r8c] {
    display: flex;
    padding: 20px;
    gap: 20px;
}

.cover-image[b-iatuag4r8c] {
    width: 120px;
    height: 100px;
    border-radius: 6px;
    background-color: #f5f7fa;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.summary[b-iatuag4r8c] {
    flex: 1;
    color: #495057;
    line-height: 1.6;
    font-size: 0.95rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.card-footer[b-iatuag4r8c] {
    display:flex;
    justify-content:flex-end;
    padding: 10px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.stats[b-iatuag4r8c] {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #6c757d;
}
/* /Components/Calendar.razor.rz.scp.css */
.calendar-container[b-r9fn5yvc3k] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 15px;
    transition: all 0.3s ease;
}

.calendar-container:hover[b-r9fn5yvc3k] {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.calendar-header[b-r9fn5yvc3k] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

    .calendar-header h3[b-r9fn5yvc3k] {
        margin: 0;
        font-size: 1.2rem;
        color: #4361ee;
        font-weight: 500;
    }

.nav-btn[b-r9fn5yvc3k] {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #6c757d;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all 0.2s;
}

    .nav-btn:hover[b-r9fn5yvc3k] {
        background-color: #f0f2f5;
        color: #4361ee;
    }

.calendar-weekdays[b-r9fn5yvc3k] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 500;
    margin-bottom: 10px;
    color: #6c757d;
    font-size: 0.9rem;
}

.calendar-grid[b-r9fn5yvc3k] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day[b-r9fn5yvc3k] {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

    .calendar-day:hover[b-r9fn5yvc3k] {
        background-color: #e9ecef;
    }

.other-month[b-r9fn5yvc3k] {
    color: #ced4da;
}

.today[b-r9fn5yvc3k] {
    background-color: #4361ee;
    color: white;
    font-weight: bold;
}
/* /Components/Heatmap.razor.rz.scp.css */
.heatmap-container[b-c6w8nln6v4] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-bottom: 25px;
    max-width: 300px;
    display:flex;
    flex-direction:column;
}

.heatmap-header[b-c6w8nln6v4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

    .heatmap-header h3[b-c6w8nln6v4] {
        margin: 0;
        font-size: 1.3rem;
        color: #4361ee;
    }

.nav-btn[b-c6w8nln6v4] {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #6c757d;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all 0.2s;
}

    .nav-btn:hover[b-c6w8nln6v4] {
        background-color: #f0f2f5;
        color: #4361ee;
    }

.heatmap[b-c6w8nln6v4] {
    display: block;
}

.heatmap-weekdays[b-c6w8nln6v4] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 5px;
    gap: 3px;
}

    .heatmap-weekdays div[b-c6w8nln6v4] {
        text-align: center;
        font-size: 0.7rem;
        color: #6c757d;
    }

.heatmap-grid[b-c6w8nln6v4] {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-auto-rows: 15px;
    gap: 10px;
}

.heatmap-cell[b-c6w8nln6v4] {
    aspect-ratio: 1; 
    border-radius: 3px;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    position: relative;
}

    .heatmap-cell:hover[b-c6w8nln6v4] {
        transform: scale(1.3);
        z-index: 10;
        opacity: 0.9;
    }

.empty[b-c6w8nln6v4] {
    background: transparent;
    cursor: default;
}

    .empty:hover[b-c6w8nln6v4] {
        transform: none !important;
    }

.level0[b-c6w8nln6v4] {
    background-color: #ebedf0;
}

.level1[b-c6w8nln6v4] {
    background-color: #9be9a8;
}

.level2[b-c6w8nln6v4] {
    background-color: #40c463;
}

.level3[b-c6w8nln6v4] {
    background-color: #30a14e;
}

.level4[b-c6w8nln6v4] {
    background-color: #216e39;
}

.heatmap-legend[b-c6w8nln6v4] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    gap: 5px;
    font-size: 0.8rem;
    color: #6c757d;
}

.legend-item[b-c6w8nln6v4] {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    margin: 0 2px;
}
/* /Components/PopularArticles.razor.rz.scp.css */
.popular-articles[b-1hgs6icpnu] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: all 0.3s ease;
}

.popular-articles:hover[b-1hgs6icpnu] {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.section-header[b-1hgs6icpnu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

    .section-header h3[b-1hgs6icpnu] {
        margin: 0;
        font-size: 1.2rem;
        color: #4361ee;
        font-weight: 500;
    }

.view-all[b-1hgs6icpnu] {
    font-size: 0.9rem;
    color: #6c757d;
    cursor: pointer;
    transition: color 0.2s;
}

    .view-all:hover[b-1hgs6icpnu] {
        color: #4361ee;
        text-decoration: underline;
    }

.articles-list[b-1hgs6icpnu] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.article-item[b-1hgs6icpnu] {
    display: flex;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.2s;
}

    .article-item:hover[b-1hgs6icpnu] {
        background-color: #f8f9fa;
        transform: translateX(3px);
    }

.article-rank[b-1hgs6icpnu] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #4361ee;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.article-info[b-1hgs6icpnu] {
    flex: 1;
}

.article-title[b-1hgs6icpnu] {
    font-weight: 500;
    margin-bottom: 5px;
    color: #343a40;
    font-size: 0.95rem;
    line-height: 1.4;
}

.article-meta[b-1hgs6icpnu] {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #6c757d;
}

.views[b-1hgs6icpnu]::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f06e"; /* Unicode for eye icon */
}


/* /Components/ProfileCard.razor.rz.scp.css */
.profile-card[b-fjxs3ksiws] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .profile-card:hover[b-fjxs3ksiws] {
        transform: translateY(-5px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

.profile-header[b-fjxs3ksiws] {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.avatar[b-fjxs3ksiws] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-image: url("images/profile.jpg");
    background-size: cover;
    background-position: center;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    margin-right: 20px;
}

.profile-info h3[b-fjxs3ksiws] {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.4rem;
}

.stats[b-fjxs3ksiws] {
    display: flex;
    gap: 15px;
}

.stat-item[b-fjxs3ksiws] {
    text-align: center;
}

.stat-number[b-fjxs3ksiws] {
    display: block;
    font-weight: bold;
    font-size: 1.2rem;
    color: #4361ee;
}

.stat-label[b-fjxs3ksiws] {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
}

.profile-links[b-fjxs3ksiws] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-link[b-fjxs3ksiws] {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    transition: all 0.2s ease;
}

    .profile-link:hover[b-fjxs3ksiws] {
        background-color: #e9ecef;
        color: #4361ee;
        transform: translateX(5px);
    }

.icon[b-fjxs3ksiws] {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-size: contain;
}

.github[b-fjxs3ksiws] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12' fill='%234361ee'/%3E%3C/svg%3E");
}

.email[b-fjxs3ksiws] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M24 4.5v15c0 .85-.65 1.5-1.5 1.5H21V7.787l-9 5.25-9-5.25V21H1.5C.65 21 0 20.35 0 19.5v-15c0-.425.162-.825.45-1.125A1.51 1.51 0 011.5 3H3l9 5.25 9-5.25h1.5c.425 0 .825.162 1.125.45.288.3.45.7.45 1.125z' fill='%234361ee'/%3E%3C/svg%3E");
}
/* /Layout/FrontView.razor.rz.scp.css */
.front-layout[b-g2plant8y7] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f5f7fa;
    overflow: hidden;
    scrollbar-width: none;
}

    .front-layout[b-g2plant8y7]::-webkit-scrollbar {
        display: none;
    }

.main-container[b-g2plant8y7] {
    display: flex;
    width:100%;
    max-width: 1400px;
    margin: 1.5rem auto 0;
    gap: 25px;
}

.sidebar[b-g2plant8y7] {
    width: 20rem;
    display: flex;
    position:sticky;
    flex-direction: column;
    gap: 25px;
}

.fronter[b-g2plant8y7] {
    flex: 1;
    min-height:95vh;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.fronter-body[b-g2plant8y7] {
    flex: 1;
}

.footer-content[b-g2plant8y7] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    margin-top: 1rem;
    padding-bottom: 1rem;
    color: #6c757d;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .main-container[b-g2plant8y7] {
        width: 95%;
    }
}

@media (max-width: 992px) {
    .main-container[b-g2plant8y7] {
        flex-direction: column;
    }

    .sidebar[b-g2plant8y7] {
        width: 100%;
        flex-direction: row;
        position: sticky;
        flex-wrap: wrap;
    }

        .sidebar > *[b-g2plant8y7] {
            flex: 1;
            min-width: 300px;
        }
}

@media (max-width: 768px) {
    .sidebar[b-g2plant8y7] {
        flex-direction: column;
    }

    .fronter[b-g2plant8y7] {
        padding: 20px;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-2a50dojm78] {
    position: relative;
    display: flex;
    flex-direction: row;
    height: 100vh;
}

main[b-2a50dojm78] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.content[b-2a50dojm78] {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: none; 
}

    .content[b-2a50dojm78]::-webkit-scrollbar {
        display: none;
    }

.sidebar[b-2a50dojm78] {
    position: sticky;
}

.top-row[b-2a50dojm78] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-2a50dojm78]  a, .top-row[b-2a50dojm78]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-2a50dojm78]  a:hover, .top-row[b-2a50dojm78]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-2a50dojm78]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

    .top-row[b-2a50dojm78]  img {
        border-radius: 50%;
    }



/* /Layout/NavMenu.razor.rz.scp.css */
.sidebar[b-h85af6b8l9] {
    background-color: #202020;
    color: #d7d7d7;
    display: flex;
    flex-direction: column;
    height: 100vh;
    transition: width 0.3s ease;
    overflow: hidden;
}

    .sidebar.expanded[b-h85af6b8l9] {
        width: 200px;
    }

    .sidebar.collapsed[b-h85af6b8l9] {
        width: 60px;
    }

.nav-scrollable[b-h85af6b8l9] {
    flex: 1;
    overflow-y: auto;
    padding-top: 1rem; /* ���Ӷ������ */
}

.nav-item[b-h85af6b8l9] {
    font-size: 1em; /* ʹ�� em �����������С */
    padding-bottom: 1rem; /* ����ÿ���˵���֮��ļ�� */
    transition: background-color 0.2s ease;
}

    .nav-item:first-of-type[b-h85af6b8l9] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-h85af6b8l9] {
        padding-bottom: 1rem;
    }

    .nav-item .nav-link[b-h85af6b8l9] {
        color: #d7d7d7; /* ȡ����ɫ���ӣ�ʹ�û�ɫ */
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        padding-left: 1.5rem; /* �����ڱ߾� */
        text-decoration: none; /* ȥ��Ĭ�ϵ��»��� */
        transition: background-color 0.2s ease;
    }

        .nav-item .nav-link.active[b-h85af6b8l9] {
            background-color: rgba(255, 255, 255, 0.37);
            color: white;
        }

        .nav-item .nav-link:hover[b-h85af6b8l9] {
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
        }

.sidebar.collapsed .nav-text[b-h85af6b8l9] {
    display: none;
}
.navbar-brand.collapsed[b-h85af6b8l9] {
    visibility: hidden;
}
/* �۵���ť����̶��ײ� */
.collapse-button-area[b-h85af6b8l9] {
    padding: 1rem 0.5rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.collapse-toggle[b-h85af6b8l9] {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.25rem;
}
.collapse-hint[b-h85af6b8l9] {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 0.5rem;
}

.nav-item .nav-link i[b-h85af6b8l9] {
    margin-right: 1rem;
    color: #fff !important;
    font-size:1.2rem !important;
}
.nav-item .nav-link .nav-text[b-h85af6b8l9] {
    color: #fff !important;
    font-size: 1.2rem !important;
}
/* /Pages/ArticlesPage.razor.rz.scp.css */
.articles-container[b-yizvuoa2l6] {
    width: 100%;
    max-width: 800px;
    min-height:100%;
    margin: 0 auto;
    display:flex;
    flex-direction:column;

}
.article-area[b-yizvuoa2l6]{
    flex:1;
}

.pagination[b-yizvuoa2l6] {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    gap: 5px;
    flex: 0 0 auto; 
    height: 2.5rem;
}

.pagination-btn[b-yizvuoa2l6] {
    padding: 8px 15px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

    .pagination-btn:hover:not(:disabled)[b-yizvuoa2l6] {
        background-color: #e9ecef;
        border-color: #dee2e6;
    }

    .pagination-btn:disabled[b-yizvuoa2l6] {
        opacity: 0.6;
        cursor: not-allowed;
    }

    .pagination-btn.active[b-yizvuoa2l6] {
        background-color: #4361ee;
        color: white;
        border-color: #4361ee;
    }

.no-articles[b-yizvuoa2l6] {
    text-align: center;
    padding: 2rem;
    font-size: 1.2rem;
    color: #6c757d;
}
/* /Pages/CategoryPage.razor.rz.scp.css */
.categories-page[b-tjsjiia1yx] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.header[b-tjsjiia1yx] {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

    .header h2[b-tjsjiia1yx] {
        font-size: 2rem;
        color: #343a40;
        margin-bottom: 0.5rem;
    }

    .header p[b-tjsjiia1yx] {
        color: #6c757d;
        font-size: 1.1rem;
    }

.category-grid[b-tjsjiia1yx] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.category-card[b-tjsjiia1yx] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #f0f0f0;
}

    .category-card:hover[b-tjsjiia1yx] {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
        border-color: #4361ee;
    }

.category-name[b-tjsjiia1yx] {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #4361ee;
}

.article-count[b-tjsjiia1yx] {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Popup Styles - 与现有主题一致 */
.popup-overlay[b-tjsjiia1yx] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.popup-content[b-tjsjiia1yx] {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: popupFadeIn 0.3s ease;
}

@@keyframes popupFadeIn {
    from[b-tjsjiia1yx] {
        opacity: 0;
        transform: translateY(20px);
    }

    to[b-tjsjiia1yx] {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-header[b-tjsjiia1yx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}

    .popup-header h3[b-tjsjiia1yx] {
        margin: 0;
        color: #4361ee;
        font-weight: 600;
    }

.close-btn[b-tjsjiia1yx] {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #6c757d;
    transition: color 0.2s;
    padding: 0 10px;
}

    .close-btn:hover[b-tjsjiia1yx] {
        color: #4361ee;
    }

.articles-list[b-tjsjiia1yx] {
    padding: 1.5rem;
}

.article-item[b-tjsjiia1yx] {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
    cursor: pointer;
}

    .article-item:hover[b-tjsjiia1yx] {
        background: #f8f9fa;
    }

.article-title[b-tjsjiia1yx] {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #343a40;
}

.article-meta[b-tjsjiia1yx] {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #6c757d;
}

.loading[b-tjsjiia1yx] {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
}
.pagination[b-tjsjiia1yx] {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 5px;
    flex-wrap: wrap;
}

.pagination-btn[b-tjsjiia1yx] {
    padding: 8px 16px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    color: #4361ee;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

    .pagination-btn:hover:not([disabled])[b-tjsjiia1yx] {
        background-color: #4361ee;
        color: white;
        border-color: #4361ee;
    }

    .pagination-btn:disabled[b-tjsjiia1yx] {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .pagination-btn.active[b-tjsjiia1yx] {
        background-color: #4361ee;
        color: white;
        border-color: #4361ee;
        font-weight: bold;
    }

/* 弹出层中分页样式 */
.popup-content .pagination[b-tjsjiia1yx] {
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
    position: sticky;
    bottom: 0;
}

/* 响应式优化 */
@@media (max-width: 768px) {
    .pagination[b-tjsjiia1yx] {
        gap: 3px;
    }

    .pagination-btn[b-tjsjiia1yx] {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}
/* 响应式优化 */
@@media (max-width: 768px) {
    .category-grid[b-tjsjiia1yx] {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .popup-content[b-tjsjiia1yx] {
        width: 95%;
    }
}
/* /Pages/HomePage.razor.rz.scp.css */
/* /Pages/Manage/BlogGarbageManage.razor.rz.scp.css */

.container[b-xb70y2o9i4] {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

    .container .search[b-xb70y2o9i4] {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

        .container .search .search-box[b-xb70y2o9i4] {
            display: flex;
            flex-direction: row;
            gap: 15px;
        }

.search-list[b-xb70y2o9i4] {
    flex: 1;
}

.pegination[b-xb70y2o9i4] {
    background-color: #fff;
    padding: 1rem 0;
    border-top: 1px solid #ddd;
    position: sticky;
    bottom: 0;
    z-index: 10;
}
/* /Pages/Manage/BlogManagePage.razor.rz.scp.css */

.container[b-2deo9nozd0]{
    height:100vh;
    display:flex;
    flex-direction:column;
  
}
.container .search[b-2deo9nozd0]{
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
}
.container .search .search-box[b-2deo9nozd0]{
    display:flex;
    flex-direction:row;
    gap:15px;
}
.search-list[b-2deo9nozd0]{
    flex:1;
}

.pegination[b-2deo9nozd0] {
    background-color: #fff;
    padding: 1rem 0;
    border-top: 1px solid #ddd;
    position: sticky;
    bottom: 0;
    z-index: 10;
}
/* /Pages/Manage/BlogWritePage.razor.rz.scp.css */
.container[b-v78yds9kun] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
    .container .form-group[b-v78yds9kun] {
        display: flex;
        flex-direction: column;
        gap:5px;
        width:100%;
        height:1200px;
    }
        .container .form-group .item.fill[b-v78yds9kun]{
            flex:1;
        }
        .container .form-group .item[b-v78yds9kun] {
            margin-bottom: 1.5rem;
            width:100%;
        }

/* /Pages/Manage/CategoryManagePage.razor.rz.scp.css */

.container[b-9zg4r5gbn0] {
    height: 100vh;
    display: flex;
    flex-direction: column;
}


.search-list[b-9zg4r5gbn0] {
    flex: 1;
}

.Modal[b-9zg4r5gbn0] {
    display: flex;
    gap: 20px;
    justify-content:space-between;
}

.pegination[b-9zg4r5gbn0] {
    background-color: #fff;
    padding: 1rem 0;
    border-top: 1px solid #ddd;
    position: sticky;
    bottom: 0;
    z-index: 10;
}
/* /Pages/Manage/loginPage.razor.rz.scp.css */
.login[b-v82fipj1r1] {
    background-image: url("images/login_background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    margin: 0;
    display:flex;
    align-items:center;
    justify-content:center;
}
    .login .container[b-v82fipj1r1] {
        width: 60%;
        padding: 20px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
        .login .container .component[b-v82fipj1r1] {
            background-image: url("images/Component.png");
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            width:40rem;
            display: block;
        }

    .login .container .login-form[b-v82fipj1r1] {
        border-radius: 10px;
        background-color: rgba(255,255,255,0.4);
        display: flex;
        flex-direction: column;
        width: 24rem;
        height: 30rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        justify-content: center;
        align-content: center;
        padding: 40px 30px;
    }

    .login .container .shortLine[b-v82fipj1r1] {
        width: 60px;
        height: 10px;
        background-color: #4285f4;
        border-radius: 2px;
        margin: 0 auto;
    }
/* /Pages/Manage/ThoughtManagePage.razor.rz.scp.css */
/* 容器布局 */
.thoughts-container[b-ss96r33c0z] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

/* 头部区域 */
.header-section[b-ss96r33c0z] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.title-area .page-title[b-ss96r33c0z] {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-area .page-subtitle[b-ss96r33c0z] {
    margin: 0.5rem 0 0 0;
    color: #6c757d;
    font-size: 0.95rem;
}

.add-btn[b-ss96r33c0z] {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

    .add-btn:hover[b-ss96r33c0z] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }

/* 工具栏区域 */
.toolbar-section[b-ss96r33c0z] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.toolbar-left[b-ss96r33c0z] {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.page-size-selector[b-ss96r33c0z] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.selector-label[b-ss96r33c0z] {
    font-weight: 500;
    color: #495057;
    margin: 0;
}

.info-text[b-ss96r33c0z] {
    color: #6c757d;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 20px;
    border: 1px solid #e9ecef;
}

/* 表格区域 */
.table-section[b-ss96r33c0z] {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.table-wrapper[b-ss96r33c0z] {
    flex: 1;
    overflow: auto;
    padding: 1.5rem;
}

.modern-table[b-ss96r33c0z] {
    border-radius: 8px;
    overflow: hidden;
}

    .modern-table th[b-ss96r33c0z] {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        font-weight: 600;
        text-align: center;
        padding: 1rem;
        border: none;
    }

    .modern-table td[b-ss96r33c0z] {
        padding: 1rem;
        vertical-align: middle;
        border-bottom: 1px solid #f1f3f4;
    }

    .modern-table tbody tr:hover[b-ss96r33c0z] {
        background-color: rgba(102, 126, 234, 0.05);
        transition: background-color 0.2s ease;
    }

/* 操作按钮 */
.action-buttons[b-ss96r33c0z] {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.edit-btn[b-ss96r33c0z] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

    .edit-btn:hover[b-ss96r33c0z] {
        transform: scale(1.05);
        box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
    }

.delete-btn[b-ss96r33c0z] {
    background: linear-gradient(135deg, #dc3545 0%, #e83e8c 100%);
    border: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

    .delete-btn:hover[b-ss96r33c0z] {
        transform: scale(1.05);
        box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
    }

/* 分页区域 */
.pagination-section[b-ss96r33c0z] {
    display: flex;
    justify-content: center;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* 模态框样式 */
.custom-modal .modal-content[b-ss96r33c0z] {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: none;
}

.modal-content-area[b-ss96r33c0z] {
    padding: 1rem 0;
}

.form-group[b-ss96r33c0z] {
    margin-bottom: 1.5rem;
}

.form-label[b-ss96r33c0z] {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
}

.custom-textarea[b-ss96r33c0z] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    resize: vertical;
}

    .custom-textarea:focus[b-ss96r33c0z] {
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        outline: none;
    }

.modal-actions[b-ss96r33c0z] {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.cancel-btn[b-ss96r33c0z] {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    background: #6c757d;
    border: none;
    transition: all 0.2s ease;
}

    .cancel-btn:hover[b-ss96r33c0z] {
        background: #5a6268;
        transform: translateY(-1px);
    }

.save-btn[b-ss96r33c0z] {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    transition: all 0.2s ease;
}

    .save-btn:hover[b-ss96r33c0z] {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    }

/* 响应式设计 */
@media (max-width: 768px) {
    .thoughts-container[b-ss96r33c0z] {
        padding: 1rem;
        gap: 1rem;
    }

    .header-section[b-ss96r33c0z] {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem;
    }

    .toolbar-left[b-ss96r33c0z] {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .action-buttons[b-ss96r33c0z] {
        flex-direction: column;
        gap: 0.25rem;
    }

    .modal-actions[b-ss96r33c0z] {
        flex-direction: column-reverse;
    }
}

/* 滚动条美化 */
.table-wrapper[b-ss96r33c0z]::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.table-wrapper[b-ss96r33c0z]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.table-wrapper[b-ss96r33c0z]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

    .table-wrapper[b-ss96r33c0z]::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    }

/* 动画效果 */
@keyframes fadeInUp-b-ss96r33c0z {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-section[b-ss96r33c0z], .toolbar-section[b-ss96r33c0z], .table-section[b-ss96r33c0z], .pagination-section[b-ss96r33c0z] {
    animation: fadeInUp-b-ss96r33c0z 0.6s ease-out;
}

.table-section[b-ss96r33c0z] {
    animation-delay: 0.1s;
}

.pagination-section[b-ss96r33c0z] {
    animation-delay: 0.2s;
}
/* /Pages/Rambling.razor.rz.scp.css */
/* Rambling.razor.css */
.rambling-container[b-6u13n65smj] {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header[b-6u13n65smj] {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f2f5;
}

    .header h2[b-6u13n65smj] {
        color: #4361ee;
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .header p[b-6u13n65smj] {
        color: #6c757d;
        font-size: 1.1rem;
    }

.timeline[b-6u13n65smj] {
  
}

    .timeline[b-6u13n65smj]::before {
        content: '';
        position: absolute;
        left: 10px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: #e9ecef;
    }

.timeline-item[b-6u13n65smj] {
    position: relative;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

    .timeline-item:hover[b-6u13n65smj] {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

.timeline-marker[b-6u13n65smj] {
    position: absolute;
    left: -40px;
    top: 20px;
    z-index: 10;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot[b-6u13n65smj] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #4361ee;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #4361ee;
}

.timeline-content[b-6u13n65smj] {
    padding: 20px;
}

.timeline-header[b-6u13n65smj] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f5f7fa;
}

.date[b-6u13n65smj] {
    color: #4361ee;
    font-weight: 500;
    font-size: 0.95rem;
}

.id[b-6u13n65smj] {
    color: #6c757d;
    font-size: 0.85rem;
    background: #f8f9fa;
    padding: 3px 8px;
    border-radius: 12px;
}

.content[b-6u13n65smj] {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.timeline-actions[b-6u13n65smj] {
    display: flex;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #f5f7fa;
}

.action-btn[b-6u13n65smj] {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

    .action-btn:hover[b-6u13n65smj] {
        background: #f0f2f5;
        color: #4361ee;
    }

    .action-btn .icon[b-6u13n65smj] {
        font-size: 1.1rem;
    }

.no-thoughts[b-6u13n65smj] {
    text-align: center;
    padding: 40px 20px;
}

.empty-state[b-6u13n65smj] {
    max-width: 400px;
    margin: 0 auto;
}

    .empty-state .icon[b-6u13n65smj] {
        font-size: 4rem;
        margin-bottom: 20px;
        color: #adb5bd;
    }

    .empty-state h3[b-6u13n65smj] {
        color: #495057;
        margin-bottom: 10px;
    }

    .empty-state p[b-6u13n65smj] {
        color: #6c757d;
    }

/* 分页样式 */
.pagination[b-6u13n65smj] {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 5px;
    flex-wrap: wrap;
}

.pagination-btn[b-6u13n65smj] {
    padding: 8px 15px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

    .pagination-btn:hover:not(:disabled)[b-6u13n65smj] {
        background-color: #e9ecef;
        border-color: #dee2e6;
    }

    .pagination-btn:disabled[b-6u13n65smj] {
        opacity: 0.6;
        cursor: not-allowed;
    }

    .pagination-btn.active[b-6u13n65smj] {
        background-color: #4361ee;
        color: white;
        border-color: #4361ee;
    }

@media (max-width: 768px) {
    .rambling-container[b-6u13n65smj] {
        padding: 15px;
    }

    .timeline[b-6u13n65smj] {
        padding-left: 20px;
    }

    .timeline-marker[b-6u13n65smj] {
        left: -30px;
    }

    .timeline-content[b-6u13n65smj] {
        padding: 15px;
    }

    .header h2[b-6u13n65smj] {
        font-size: 1.8rem;
    }

    .content[b-6u13n65smj] {
        font-size: 1rem;
    }

    .timeline-actions[b-6u13n65smj] {
        flex-wrap: wrap;
    }
}
