/* static/css/common.css */

/* 公共主内容区样式 */
.main-content {
     width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 其他可能复用的公共样式 */
.gap-view {
    height: 10px;
}

.loading-state {
    text-align: center;
    padding: 60px;
    color: #999;
}

/* type样式 */
.series-group{
    background: white;
    padding-top:15px;
    padding-bottom:10px;
    margin-bottom:20px;
}
.item-title {
    font-size: 1.2rem;
    font-weight: 700;
    padding-left: 15px;
    margin-bottom:15px;
    color: #1f2d3d;
}

.item-columns {
    display: flex;
    flex-wrap: wrap;
}

.calendar-item {
    background: #fefefe;
    padding: 10px;
    height: 100%;
    border: 1px solid #edf2f7;
    display: flex;
    cursor: pointer;
    transition: all 0.25s ease;
}

.calendar-item:hover {
    border-color: #5eceff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.tile-left {
    flex-shrink: 0;
    width: 85px;
    margin-right: 15px;
    padding-top:10px;
}

.tile-left img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 14px;
}

.tile-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.calendar-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1e2a3a;
    margin-bottom: 8px;
    display: block;
}

.calendar-info {
    font-size: 0.75rem;
    color: #5a6e7c;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.show-more-btn {
    background: #fff;
    border: 1px solid #5eceff;
    border-radius: 40px;
    padding: 8px 24px;
    font-weight: 600;
    margin: 20px auto 10px;
    display: block;
    cursor: pointer;
    color: #5eceff;
}

.show-more-btn:hover {
    background: #5eceff;
    color: white;
}

.column-3 {
    width: 25%;
    padding: 0 10px;
    margin-bottom: 10px;
}

.item-columns .column-3.hidden {
    display: none;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
    font-size: 1rem;
}
/* ========== 新增：面包屑导航样式 ========== */
.breadcrumb {
    padding: 20px;
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom:15px;
    background: white;
}

.breadcrumb a {
    color: #5eceff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 6px;
    color: #cbd5e1;
}

.breadcrumb .current {
    color: #1f2d3d;
    font-weight: 500;
}
