.honor-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none; /* 重置列表样式 */
}
.honor-item {
    width: 50%;
    padding: 10px;
    text-align: center;
    box-sizing: border-box;
}

.honor-item img {
    display: block;
    width: 100%;
    height: 270px;
    border: 10px solid transparent;
    border-image: url('/public/static/images/lawyer/b.jpg') 40 round;
    box-shadow: 0 2px 5px rgba(139, 69, 19, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 添加悬停效果 */
.honor-item img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(139, 69, 19, 0.5);
}

/* 为荣誉描述文字添加样式 */
.honor-item p {
    margin-top: 10px;
    color: #5a3921;
    font-weight: 500;
    font-size: 16px;
}
