<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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;
    overflow: hidden;
}

.link-list.type2 .item .pic: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.type2 .item .box:hover .pic:before {
    transition: all .2s;
    opacity: 1;
}

.link-list.type2 .item .box .pic img {
    transition: all .2s;
    transform: scale(1);
}

.link-list.type2 .item .box:hover .pic img {
    transform: scale(1.05);
}

.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: #444444;
}

.link-list.type2 .item .txt {
    margin: 0;
}

.link-list.type2 .item:hover .url{
    color: #444444;
}

.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: #DA251C;
}

.link-list.type2 .item .box:hover .name {
    color: #fff;
    background: #DA251C;
}

.link-list.type1 .item .txt {
    background: #DA251C;
}

.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;
    }
}</pre></body></html>