@charset "utf-8";
/*------------ link ------------*/
.link-list {
    margin: 0 -10px;
}
.link-list .item {
    padding: 0 10px;
}
.link-list .item .name{
    color: #222;
    font-weight: 600;
    letter-spacing: 1px;
    -webkit-line-clamp: 1;
    font-family: 'Noto Serif TC', serif;
    transition: all 0.3s ease;
}
.link-list .item .box:hover .name{
    color: #E9B62E;
}
.link-list .url{
    padding: 0 5px;
    color: #878787;
    font-family: 'Cardo', serif;
}
/*l_type1*/
.link-list.type1 .item .txt{
    color: #222;
    font-weight: 600;
    letter-spacing: 1px;
    background: #E9B62E;
}
.link-list.type1 .item .name,
.link-list.type1 .item .box:hover .name {
    color: #222;
    font-weight: bold;
    padding: 7px 45px 7px 20px;
    margin: 0;
    font-size: 18px;
}
.link-list.type1 .item .box .name:after {
    color: #222;
}
/*/l_type1*/
/*l_type2*/
.link-list.type2 .item .box {
    margin: 0 auto 40px;
}
.link-list.type2 .pic{
    background: #e6e6e6;
    padding: 6px;
    transition: all .3s ease;
}
.link-list.type2 .box:hover .pic{
    background: #b5c356;
}
.link-list.type2 .item .txt{
    margin: 0;
}
.link-list.type2 .item .pic:before{
    content: "";
    position: absolute;
    display: block;
    transition: all 0.3s ease;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .4);
    z-index: 100;
}
.link-list.type2  .item .box:hover .pic:before{
    transition: all 0.3s ease;
    opacity: 1;
}
.link-list.type2 .item .name{
    padding: 7px 5px ;
    line-height: 1.4;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    margin: 1px 0 0 0;
}
/*/l_type2*/
/*------------ /link ------------*/
/*------------ rwd ------------*/
@media screen and (max-width: 767px){
    .link-list .item .name{
        padding: 7px 5px 7px 5px;
        text-align: center;
    }
}