body{  background: url(../images/listbg.png) no-repeat;
    background-size: 100%;
    background-position: bottom;
    }

.page-banner {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.listcolumn-container {
    max-width: 1200px;
    margin: -60px auto 0;
    padding: 20px;
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 10;
}

.sidebar {
    width: 220px;
    flex-shrink: 0;
}

.sidebar-title {
    background: #ab2a84;
    color: #fff;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    border-radius: 4px 4px 0 0;
}

.sidebar-menu {
    background: #f8f4fa;
    border: 1px solid #e8e0e8;
    border-top: none;
    border-radius: 0 0 4px 4px;
}

.sidebar-menu li {
    position: relative;
}

.sidebar-menu li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px dashed #e8e0e8;
    transition: all 0.3s ease;
}

.sidebar-menu li:last-child a {
    border-bottom: none;
}

.sidebar-menu li a:hover {
    background: #ab2a84;
    color: #fff;
    padding-left: 25px;
}

.sidebar-menu li.active a {
    background: #ab2a84;
    color: #fff;
}

.sidebar-menu li .arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
}

.main-content {
    flex: 1;
    margin-top:100px;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 600px;
  
}

.content-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 14px;
    color: #666;
    flex-shrink: 0;
}

.breadcrumb a {
    color: #ab2a84;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.content-header {
    border-bottom: 2px solid #ab2a84;
    padding-bottom: 15px;
    flex: 1;
}

.content-header h2 {
    color: #ab2a84;
    font-size: 24px;
    margin: 0;
    font-weight: bold;
}

.content-header h3 {
    color: #666;
    font-size: 16px;
    margin: 5px 0 0 0;
    font-weight: normal;
}

.news-list-container {
    margin-bottom: 30px;
}

.news-item-list {
    background: #fff;
    border: 1px solid #e8e0e8;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.news-item-list:hover {
    background: #ab2a84;
    border-color: #ab2a84;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.news-item-list:hover .news-date{
    color: #fff;
}
.news-item-list:hover .news-title a{
    color: #fff;
}
   .news-item-list:hover .news-desc a{
    color: #fff;
}

 .news-desc  a:hover{color:#fff}

.news-item-list:hover .news-date .day {
 color: #fff;
}
.news-item-list:hover .news-date .month {
 color: #fff;
}

.news-item-list:hover .news-link {
    color: #fff;
    border-color: #fff;
}

.news-item-list:hover .news-link:hover {
    background: #fff;
    color: #ab2a84;
}

.news-item-flex {
    display: flex;
    gap: 20px;
}

.news-date {
    width: 60px;
    text-align: center;
    padding: 10px;

    border-radius: 4px;
    flex-shrink: 0;
}

.news-date .day {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #ab2a84;
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}



.news-content-list {
    flex: 1;
}

.news-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
}

.news-title:hover {
    color: #ab2a84;
}

.news-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    display: inline-block;
    padding: 6px 15px;
    border: 1px solid #ab2a84;
    color: #ab2a84;
    text-decoration: none;
    font-size: 13px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.news-link:hover {
    background: #ab2a84;
    color: #fff;
}

.pagination {
    text-align: center;
    padding: 20px 0;
    border-top: 1px dashed #e8e0e8;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 3px;
    text-decoration: none;
    color: #666;
    border: 1px solid #e8e0e8;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: #ab2a84;
    color: #fff;
    border-color: #ab2a84;
}

.pagination span.current {
    background: #ab2a84;
    color: #fff;
    border-color: #ab2a84;
}

.pagination span.disabled {
    color: #ccc;
    border-color: #eee;
}

@media (max-width: 768px) {
    .listcolumn-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .news-item-flex {
        flex-direction: column;
    }

    .news-date {
        width: 100%;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .news-date .day {
        font-size: 32px;
    }
}

.detail_title {
    font-size: 1.6rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 1.8rem;
    text-align: center;
}

.detail_meta {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8rem;
    color: #999999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
margin-bottom:20px;
}
