@charset "utf-8";
/*------------ link ------------*/
.link-list  {
    margin: 0 -15px;
}
.link-list .item {
    padding: 0 15px;
}
/*l_type1*/
.link-list.type1  {
    margin: 0 -15px 10px;
}
.link-list.type1 .item .txt {
    background: rgb(0, 0, 0, 0.55);
    transition: all 0.3s ease; 
}
.link-list.type1 .item .name, .link-list.type1 .item .box:hover .name {
    font-weight: normal;
    letter-spacing: 1px;
}
/*/l_type1*/
/*l_type2*/
.link-list.type2 .item .box {
    margin: 0 auto 40px;
}
.link-list.type2 .item .name{
    padding: 7px 15px 7px 45px;
    line-height: 1.4;
    font-size: 16px;
    font-weight: normal;
    position: relative;
    margin: 0;
    color: #32302D;
    background: #fff;
    transition: all 0.3s ease;
}
.link-list.type2 .item .txt{
    margin: 0;
}
.link-list.type2 .item .name:before{
    content: "\e1037";
    font-family: 'icon-font2' !important;
    font-size: 16px;
    color: #fff;
    background: #D4AA56;
    position: absolute;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    top: 0;
    left: 0;
}
.link-list.type2 .item .box:hover .name{
    color: #fff;
    background: #6A080C; 
}
.link-list.type2 .item .box:hover .name:before{
    color: #fff;
}
/*/l_type2*/
/*------------ /link ------------*/
/*------------ rwd ------------*/
@media screen and (max-width: 1000px){
    .link-list.type2 .item .name{
        padding: 7px 15px 7px 15px;
        text-align: center;
    }
    .link-list.type2 .item .name:before{
        display: none;
    }
}