
/* 新闻列表样式优化 */
.list-box {
    padding: 10px;
}
.list-box .item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.list-box .item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}
.list-box .item .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}
.list-box .item .img-box img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}
.list-box .item:hover .img-box img {
    transform: scale(1.05);
}
.list-box .item .icon-box {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.list-box .item .text-box {
    padding: 15px;
}
.list-box .item .info {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 12px;
    color: #666;
}
.list-box .item .info .date {
    margin-right: 15px;
}
.list-box .item .info .type {
    padding: 2px 8px;
    background-color: #e6f7ff;
    color: #1890ff;
    border-radius: 4px;
    margin-right: 10px;
}
.list-box .item .info .icon-new {
    padding: 2px 6px;
    background-color: #fff1f0;
    color: #ff4d4f;
    border-radius: 4px;
    font-weight: bold;
}
.list-box .item h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.list-box .item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.list-box .item .btn-more-text {
    display: flex;
    align-items: center;
    color: #001E50;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}
.list-box .item .btn-more-text svg {
    margin-left: 5px;
    transition: transform 0.3s ease;
}
.list-box .item .btn-more-text:hover svg {
    transform: translateX(3px);
}
/* 优化页面整体样式 */
body {
    background-color: #f5f5f5;
}
.content {
    max-width: 750px;
    margin: 0 auto;
    padding-bottom: 40px;
}