/* 列表页样式 */
.list-container {
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
}

/* 面包屑导航样式 */
.breadcrumb {
    width: 100%;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb .layui-breadcrumb {
    visibility: visible;
}

.breadcrumb .layui-breadcrumb a {
    color: #666;
    font-size: 16px;
}

.breadcrumb .layui-breadcrumb a:hover {
    color: #5daf62;
}

.breadcrumb .layui-breadcrumb cite {
    color: #333;
    font-size: 16px;
}

/* 栏目列表样式 */
.column-list {
    width: 25%;
    margin-right: 2%;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.column-title {
    padding: 22px 20px;
    border-bottom: 1px solid #eee;
    background-color: #f9f9f9;
}

.column-title h2 {
    font-size: 22px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.column-items {
    padding: 15px;
    margin: 0;
    list-style: none;
}

.column-items li {
    margin-bottom: 5px;
}

.column-items li:last-child {
    margin-bottom: 0;
}

.column-items a {
    display: block;
    padding: 15px 20px;
    color: #666;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s;
}

.column-items a:hover {
    background: #f2f2f2;
    color: #5daf62;
}

.column-items li.active a {
    background: #5daf62;
    color: #fff;
}

/* 新闻列表样式 */
.news-list {
    width: 73%;
    margin-bottom: 20px;
}

.news-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-item {
    display: flex;
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.news-list ul li:last-child .news-item{
    margin-bottom: 0px;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.news-date {
    display: flex;
    flex-shrink: 0;
    width: 80px;
    text-align: center;
    padding-right: 20px;
    border-right: 1px solid #eee;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.news-date .day {
    display: block;
    font-size: 24px;
    color: #5daf62;
    font-weight: bold;
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}

.news-content {
    flex: 1;
    display: flex;
    padding-left: 20px;
    flex-direction: column;
    justify-content: center;
}

.news-content h3 {
    font-size: 18px;
}

.news-content h3 a {
    color: #333;
    line-height: 1.6;
    transition: color 0.3s;
}

.news-content h3 a:hover {
    color: #5daf62;
}

.news-content p {
    margin-top: 10px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* 分页样式 */
.pagination {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.layui-laypage {
    margin: 0;
}

.layui-laypage a {
    margin: 0 5px;
    padding: 0 12px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #e2e2e2;
    color: #666;
    border-radius: 2px;
    transition: all 0.3s;
}

.layui-laypage a.on {
    background-color: #5daf62;
    color: #ffffff;
    border-color: #5daf62;
}

.layui-laypage a.on:hover {
    color: #ffffff;
}

.layui-laypage a:hover {
    color: #5daf62;
    border-color: #5daf62;
}

.layui-laypage-curr {
    background-color: #5daf62 !important;
    border-color: #5daf62 !important;
}

.layui-laypage-curr em {
    color: #fff !important;
}

.layui-laypage-prev,
.layui-laypage-next {
    padding: 0 15px;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .list-container {
        padding: 15px;
    }

    .column-title h2{
        font-size: 18px;
    }

    .column-list {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .column-items a{
        font-size: 14px;
    }

    .news-list {
        width: 100%;
        margin-bottom: 10px;
    }

    .news-item {
        flex-direction: column;
        padding: 15px;
    }

    .news-date {
        width: auto;
        padding-right: 0;
        padding-bottom: 15px;
        border-right: none;
        border-bottom: 1px solid #eee;
        margin-bottom: 15px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-end;
    }

    .news-date .day {
        font-size: 20px;
        margin-right: 10px;
    }

    .news-date .month {
        margin-top: 0;
    }

    .news-content {
        padding-left: 0;
    }

    .pagination{
        margin-top: 20px;
        margin-bottom: 20px;
    }
} 