.links-list {
    margin: 0 -10px;
}
.links-list .item {
    width: 33.33%;
    padding: 0 10px;
}
.links-list .item:nth-child(3n+1) {
    clear: left;
}
.links-list .box {
    margin: 0 auto 20px;
    max-width: 350px;
    /*background: #fff;*/
    position: relative;
}
.links-list .box:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: solid 1px #DCE9E0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 2;
}
.links-list .item:hover .box:before{
    border: solid 1px #c3d5c8;
}
.links-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}

.links-list .box:hover {
}
.links-list .pic {
    position: relative;
    overflow: hidden;
}
.links-list .pic:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.3);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.links-list .box:hover .pic:before {
    opacity: 1;
}
.links-list .txt {
    padding: 10px 15px;
}
.links-list .name {
    color: #196539;
    font-size: 24px;
    font-weight: bold;
    font-family: "Noto Serif TC", serif;
    margin-bottom: 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 35px;
}
.links-list .box:hover .name {
   
}
.links-list .url {
      color: #959995;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media screen and (max-width: 1260px) {
    .links-list .item {
        width: 50%;
    }
    .links-list .item:nth-child(3n+1) {
        clear: none;
    }
    .links-list .item:nth-child(2n+1) {
        clear: left;
    }
}
@media screen and (max-width: 767px) {
    .links-list {
        margin: 0 -7px;
    }
    .links-list .item {
        padding: 0 7px;
    }
}
@media screen and (max-width: 600px) {
    .links-list .item {
        width: 100%;
    }
    .links-list .item:nth-child(n) {
        clear: none;
    }
}