/*------------ link ------------*/

.link-list {
    margin: 0 -13px;
}

.link-list li {
    width: 33.33%;
    padding: 0 13px;
}

.link-list li:nth-child(3n+1) {
    clear: left;
}

.link-list li .box{
    transition: all .2s;
    margin: 0 auto 30px;
    position: relative;
    max-width: 330px;
    box-sizing: border-box;
}

.link-list li .pic {
    position: relative;
}

.link-list li .pic a:before {
    content: "";
    position: absolute;
    display: block;
    transition: all .2s;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .3);
    z-index: 100;
}

.link-list li .box:hover .pic a:before {
    transition: all .2s;
    opacity: 1;
}

.link-list li .name{
    padding: 7px 15px 7px 45px;
    line-height: 1.4;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    margin: 1px 0 0 0;
    transition: all .2s;
    /*background: #F2F4F9;*/
    color: #1388ca;
}

.link-list li .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: #1388ca;
    background: url('../../images/common/bg/bg01.jpg');
}

.link-list li .name a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.link-list li .box:hover .name{
    color: #fff;
 background: rgb(37,207,115); /* Old browsers */
    background: -moz-linear-gradient(left, rgba(180,214,239,1) 0%, rgba(19,136,202,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(180,214,239,1) 0%,rgba(19,136,202,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(180,214,239,1) 0%,rgba(19,136,202,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#B4D6EF', endColorstr='#27A6E0',GradientType=1 ); /* IE6-9 */
}

.link-list .box:hover .name:before{
    color: #fff;
}

/*------------ rwd ------------*/


@media screen and (max-width: 767px) {
    .link-list li {
        width: 50%;
    }
    .link-list li:nth-child(3n+1) {
        clear: none;
    }
    .link-list li:nth-child(2n+1) {
        clear: left;
    }
}

@media screen and (max-width: 480px) {
    .link-list{
        margin: 0;
    }
    .link-list li {
        width: 100%;
        padding: 0;
    }
    .link-list li a{
        margin: 0 auto 0px;
    }
}
