
/*------------ link ------------*/
.link-list .pic {
    overflow: hidden;
    position: relative;
}
.link-list .box .pic img {
    transition: all ease 0.3s;
}
.link-list .box:hover .pic img {
    transform: scale(1.2);
}
.link-list .item .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:100;
}
.link-list .item .pic{
    position: relative;
}
.link-list .item .name{
    transition: all .2s;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.link-list.type2 .item .name{
    padding: 7px 15px 7px 45px;
    line-height: 1.4;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    margin: 1px 0 0 0;
    color: #4e4e4e;
}
.link-list.type2 .item .txt{
    margin: 0;
}
.link-list.type2 .item .name:before{
    content: "\e1010";
    font-family: 'icon-font' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 36px;
    height: 36px;
    line-height: 36px;
    display: block;
    font-size: 15px;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    color: #FFC10E;
}
.link-list.type2 .item .box:hover .name{
    color: #fff;
    background: #FFC10E;
}
.link-list.type1 .item .txt{
    background: #FFC10E;
    border-radius: 0 0 14px 14px;
}
.link-list .box:hover .name:before{
    color: #fff;
}

/*------------ rwd ------------*/
@media screen and (max-width: 767px){
    .link-list .item .name:before{
        display: none;
    }
    .link-list .item .name{
        padding: 7px 5px 7px 5px;
        text-align: center;
    }
}
