/*基本*/
.link-list {
    margin: 0 -13px;
}
.link-list .item {
     padding: 0 13px;
}
.link-list .item .box{
    position: relative;
    box-sizing: border-box;
    transition: all .2s;
}
.link-list .item .box .pic img{
    width: 100%;
}
.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 .box .name{
    display: block;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    text-overflow: ellipsis;
}
/*------------ 33.3% ------------*/
/*3欄*/
.link-list.column3 .item {
    width: 33.3%;
}

.link-list.column3 .item:nth-child(3n+1) {
    clear: left;
}

/* 4欄*/
.link-list.column4 .item {
    width: 25%;
}

.link-list.column4 .item:nth-child(4n+1) {
    clear: left;
}


/*- 樣式1 */
.link-list.type1 .item .box {
    margin: 0 auto 30px;
    max-width: 410px;
}

.link-list.type1 .item .box .url {
    display: none;
}

.link-list.type1 .item .name,.link-list.type1 .item .box:hover .name {
    color: #fff;
    font-weight: bold;
    padding: 7px 45px 7px 20px;
    margin: 0;
    font-size: 18px;
}

.link-list.type1 .item .txt {
    background: rgba(102, 102, 102, .95);
    position: absolute;
    width: 100%;
    margin-bottom: -50px;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 5px 0;
    transition:all .3s;
    opacity: 0;
    overflow:hidden;
}

.link-list.type1 .item .box:hover .txt {
    margin-bottom: 0;
    opacity: 1;
}


.link-list.type1 .item .box .name:after{
    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;
    font-size: 25px;
    position: absolute;
    text-align: center;
    line-height: 25px;
    right: 15px;
    z-index: 2;
    color: #ffffff;
}

/*------------ 25% ------------*/
/*- 樣式2 */

.link-list.type2 .item .box {
    margin: 0 auto 50px;
    max-width: 300px;
}

.link-list.type2 .item .txt {
    margin: 20px 7px;
}
.link-list .item .name {
    color: #24262C;
}
.link-list.type2 .item .name {
    padding: 0;
    line-height: 1.4;
    font-size: 18px;
    position: relative;
    margin: 0;
    transition: all .2s;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*.link-list.type2 .item .box:hover .name {
    color: #929292;
}*/

/*---------- 25% end -----------*/
.link-list .url{
    word-break: break-all; 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*------------ rwd ------------*/

@media screen and (max-width: 1280px) {

    /*------------ 25% ------------*/
    .link-list.column4 .item {
        width: 33.33%;
    }

    .link-list.column4 .item:nth-child(n) {
        clear: none;
    }

    .link-list.column4 .item:nth-child(3n+1) {
        clear: left;
    }

    /*------------ 25% end------------*/
}
@media screen and (max-width: 1000px) {
    .link-list.type1 .item .box:hover .txt,
    .link-list.type1 .item .box .txt{
        bottom: 0;
        opacity: 1;
        padding: 7px 5px;
        box-sizing: border-box;

    }
    .link-list.type1 .item .name, .link-list.type1 .item .box:hover .name{
        padding: 0;
        font-size: 16px;
        text-align: center;
    }
    .link-list.type1 .item .box .name:after{
        display: none;
    }

}
@media screen and (max-width: 767px) {

    /*------------ 33.3% -----------*/
    .link-list.column3 .item {
        width: 50%;
    }

    .link-list.column3 .item:nth-child(3n+1) {
        clear: none;
    }

    .link-list.column3 .item:nth-child(2n+1) {
        clear: left;
    }

    /*------------ 25% ------------*/
    .link-list.column4 .item {
        width: 50%;
    }

    .link-list.column4 .item:nth-child(n) {
        clear: none;
    }

    .link-list.column4 .item:nth-child(2n+1) {
        clear: left;
    }

    .link-list.type2 .item .box {
        margin: 0 auto 30px;
    }

    .link-list.type2 .item .name {
        font-size: 16px;
    }

    .link-list.type2 .item .txt {
        margin: 7px 0;
    }

    /*------------ 25% end------------*/
}