@charset "utf-8";
.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 .3s ease;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*------------ link ------------*/
/*l_typ1*/
.link-list.type1 .item .txt{
    color: #fff;
    background: #FD6880;
    background: -moz-linear-gradient(350deg, #FD6880 0%, #F99900 33.33%, #56C056 66.66%, #0DBACB 100%);
    background: -webkit-linear-gradient(350deg, #FD6880 0%, #F99900 33.33%, #56C056 66.66%, #0DBACB 100%);
    background: linear-gradient(to 350deg, #FD6880 0%, #F99900 33.33%, #56C056 66.66%, #0DBACB 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FD6880', endColorstr='#0DBACB',GradientType=1);
}
.link-list.type1 .item .name,
.link-list.type1 .item .box:hover .name {
    font-weight: normal;
    letter-spacing: 1px;
}
/*/l_typ1*/
/*l_typ2*/
.link-list.type2 .item .box {
    margin: 0 auto 40px;
}
.link-list.type2 .item .name{
    padding: 7px 15px 7px 45px;
    line-height: 1.4;
    font-size: 16px;
    font-weight: normal;
    position: relative;
    margin: 0;
    color: #444;
}
.link-list.type2 .item .txt{
    margin: 0;
}
.link-list.type2 .item .name:before{
    content: "\e1010";
    font-family: 'icon-font' !important;
    speak: none;
    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: #F99900;
}
.link-list.type2 .box:hover .name:before{
    color: #fff;
}
.link-list.type2 .item .box:hover .name{
    color: #fff;
    background: #FD6880;
    background: -moz-linear-gradient(350deg, #FD6880 0%, #F99900 33.33%, #56C056 66.66%, #0DBACB 100%);
    background: -webkit-linear-gradient(350deg, #FD6880 0%, #F99900 33.33%, #56C056 66.66%, #0DBACB 100%);
    background: linear-gradient(to 350deg, #FD6880 0%, #F99900 33.33%, #56C056 66.66%, #0DBACB 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FD6880', endColorstr='#0DBACB',GradientType=1);
}
/*/l_typ2*/
/*------------ /link ------------*/
/*------------ 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;
    }
}