<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*------------ link ------------*/

.link-list {
    margin: 0 -13px;
}

.link-list li {
    width: 25%;
    padding: 0 13px 50px;
}

.link-list li:nth-child(4n+1) {
    clear: left;
}

.link-list li .box {
    transition: all .2s;
    margin: 0 auto;
    position: relative;
    max-width: 230px;
    box-sizing: border-box;
}

.link-list li .pic {
    position: relative;
}



.link-list li .name a {
    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;
}

.link-list li .name a: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;
}

.link-list li .name a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/*------------ rwd ------------*/

@media screen and (max-width: 900px) {
    .link-list li {
        width: calc((100% / 3) - 0.1px);
    }
    .link-list li:nth-child(4n+1) {
        clear: none;
    }
    .link-list li:nth-child(3n+1) {
        clear: left;
    }
}

@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 li {
        width: 100%;
        padding: 0 0 50px;
    }
}
</pre></body></html>