
a {
    text-decoration: none;
/*    color:black;
*/}

.footer a {
    color: lightgray;
    font-size: 14px;
}

.nopic .onepic .mpic {
    height: 200px;
    width: 100%;
}

.smal {
    font-size: 18px;
    font-weight: bold;
    color: #808080;
}


/* 自定义列表项样式 */
.custom-list {
    width: 100%;
}

.custom-list li {
    border-bottom: 1px solid #e9ecef;
    padding: 1.2rem 0;
    transition: background-color 0.3s ease;
}

    .custom-list li:last-child {
        border-bottom: none;
    }

    .custom-list li:hover {
        background-color: #f8f9fa;
    }

/* 图片样式 */
.list-image {
    width: 100%;
    height: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.custom-list li:hover .list-image {
    transform: scale(1.05);
}

/* 标题样式 */
.list-title {
    font-size: 1.25rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.custom-list li:hover .list-title {
    color: #0d6efd;
}

/* 元信息样式 */
.meta-info {
    font-size: 0.9rem;
    color: #6c757d;
}