@charset "utf-8";
.words_img{ 
    padding: 2px;
          overflow: hidden; /* 隐藏超出容器部分的内容 */
    position: relative; /* 设置定位为相对定位，以便于图片定位 */
     
}
.words_img:hover{ 
    border-color: #2878ff;
}
.words_img img{
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease; /* 添加过渡效果 */
     display: block; /* 确保图片以块级元素显示 */
}
 
.words_img:hover img {
    transform: scale(1.4); /* 鼠标悬停时放大 1.2 倍 */
}
.word_title a{ 
    display: block;
    overflow: hidden;
    height: 25px;
    font-weight: normal;

}
.word_title a:hover{ 
    color: #2878ff;;
}
.words_img_url{
    position: relative;
}
.words_img_url .icon { 
    position: absolute;
    bottom: 5px;
    width: 26px;
    height: 26px;
    right: 5px;

}