.list-page {
    padding: 24px 0 40px;
}

.list-layout {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.list-left {
    width: 270px;
    flex: 0 0 270px;
}

.left-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.breadcrumb .home-icon {
    width: 21px;
    height: 21px;
}

.breadcrumb .crumb-link {
    color: #333;
    text-decoration: none;
}

.breadcrumb .sep {
    color: #999;
    margin: 0 4px;
}

.breadcrumb .current {
    color: #000;
    font-weight: 600;
}

.left-breadcrumb {
    margin-bottom: 14px;
    padding-left: 0 !important;
    background-color: transparent !important;
}

.right-breadcrumb {
    margin-bottom: 16px;
}

.left-tabs {
    display: flex;
    flex-direction: column;
    margin-top: 8px;
}

.left-tabs .tab {
    display: block;
    padding: 10px 12px;
    background: #fff;
    color: #333;
    text-decoration: none;
    transition: color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.left-tabs .tab.active {
    color: #fff;
    background-color: var(--mainColor);
}

.list-right {
    flex: 1 1 auto;
    min-width: 0;
}

.news-list {
    list-style: none;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #fff;
}

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
    border-top: 1px solid #eee;
}

.news-item:first-child {
    border-top: none;
}

.date-group {
    display: flex;
    align-items: stretch;
    gap: 12px;
    flex: 0 0 auto;
    border-right: 1px solid #eee;
}

.date-box {
    width: 80px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.date-box .md {
    font-size: 20px;
    font-weight: 700;
    color: var(--mainColor, #2D87DF);
    line-height: 1.2;
}

.date-box .year {
    font-size: 13px;
    color: #666;
    line-height: 1.2;
    margin-top: 4px;
}

.date-sep {
    width: 1px;
    background: var(--mainColor, #2D87DF);
    height: 100%;
}

.item-content {
    flex: 1 1 auto;
    min-width: 0;
}

.item-title {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    margin-bottom: 6px;
}

.item-desc {
    font-size: 14px;
    color: #666;
    margin: 0 0 8px;
}

.item-more {
    font-size: 14px;
    color: var(--mainColor, #2D87DF);
    text-decoration: none;
}

.pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.image-grid {
    list-style: none;
    margin: 0;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background-color: #fff;
}

.image-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
}

.image-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.image-title {
    display: block;
    padding: 10px 12px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
