@charset "utf-8";
/*------------ link ------------*/

.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.type2 .item .pic:before {
    content: "";
    position: absolute;
    display: block;
    transition: all .3s ease;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    z-index: 100;
}

.link-list.type2 .item .box:hover .pic:before {
    transition: all .3s ease;
    opacity: 1;
}

.link-list .item .name {
    transition: all .3s ease;
    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: #333;
}

.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: #3EB134;
}

.link-list.type2 .item .box:hover .name {
    color: #fff;
    background: #007E41;
}

.link-list.type1 .item .txt {
    background: #007E41;
}

.link-list .box:hover .name:before {
    color: #fff;
}

.link-list .url{
    font-family: 'Josefin Sans', serif;
    font-size: 18px;
    color: #71ad90;
}

/*------------ 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;
    }
}