/* 列表页面样式 */

/* 页面标题 */
.list-title-section {
    padding: 40px 0 20px;
    background: #fff;
}

.page-main-title {
    text-align: center;
    font-size: 40px;
    color: #931d22;
    margin: 0 auto;
    position: relative;
    padding-bottom: 20px;
    border-bottom: 3px solid #a9e0e7;
    width: 160px;
    min-width: 160px;
    width: auto; /* 自适应宽度 */
    display: inline-block;
}

.page-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #931d22;
}

/* 内容列表 */
.content-list-section {
    padding: 20px 0 40px;
    background: #fff;
}

.content-item {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 4px;
}

.item-image {
    width: 375px;
    height: 200px;
    flex-shrink: 0;
    margin-right: 30px;
    background: #931d22;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-image img {
    width: 375px;
    height: 200px;
    
}

.item-content {
    flex: 1;
}

.item-title {
    font-size: 36px;
    color: #000;
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

.item-desc {
    font-size: 12px;
    color: #000;
    line-height: 2;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

.item-meta {
    display: flex;
    gap: 30px;
    font-size: 16px;
    color: #000;
}

.meta-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 5px;
}

.view-btn {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background: #931d22;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    margin-left: 20px;
    flex-shrink: 0;
}

.view-btn:hover {
    background: #7a181d;
}

/* 分页 */
.pagination-section {
    padding: 20px 0 60px;
    background: #fff;
}

.pagination-section .container {
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 5px;
}

.pagination li {
    list-style: none;
}

.pagination li a,
.pagination li span {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #ddd;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
}

.pagination li.active span {
    background: #931d22;
    color: #fff;
    border-color: #931d22;
}

.pagination li a:hover {
    background: #f5f5f5;
}

.about-page .container{
    text-align: center;
}

/* 1600px 以下适配 */
@media (max-width: 1600px) {
    body{
        min-width: 1600px;
    }

    .about-page .container {
        width: 1400px !important;
        margin: 0 auto;

    }
}

/* 1440px 以下适配 */
@media (max-width: 1440px) {
    body {
        min-width: 1440px;
    }
    .main-content{
        width: 1440px;
    }
    .about-page .container {
        width: 1280px !important;
        margin: 0 auto;
    }

    .news-content {
        padding: 0;
    }

    .news-title {
        font-size: 24px;
    }

    .news-image-large img {
        width: 368px;
        height: 275px;
        object-fit: cover;
    }

}