/* ============图片列表============== */
ul.newspic {
    margin: 0;
    padding: 0;
}

ul.newspic li {
    list-style-type: none;
    margin: 0px 5px 5px 0px;
    text-align: center;
    float: left;
}

ul.newspic div.fang {
    background: #fff;
    padding: 3px;
    text-align: center;
    border-radius:10px; /* 增加圆角效果 */
}

ul.newspic div.picFit {
    overflow: hidden;
    border-radius: 10px; /* 图片容器也增加圆角 */
}

ul.newspic div.picFit img {
    transition: transform 0.3s ease; /* 添加过渡效果 */
    border-radius: 10px; /* 图片圆角 */
}

ul.newspic div.picFit img:hover {
    transform: scale(1.09); /* 鼠标悬停时放大5% */
}

ul.newspic div.title {
    display: none; /* 取消标题显示 */
}

/* 由于标题已隐藏，以下样式可以保留或删除 */
ul.newspic a.title:link, 
ul.newspic a.title:visited, 
ul.newspic a.title:active {
    color: #555;
    font: 12px/25px simsun;
    text-decoration: none;
}

ul.newspic a.title:hover {
    color: #ff0000;
    text-decoration: underline;
    font: 12px/25px simsun;
}