/*----- list -----*/
.branch-list {
    margin: 0 -20px;
}
.branch-list .item {
    width: 25%;
    padding: 0 20px;
}
.branch-list .item:nth-child(4n+1) {
    clear: left;
}
.branch-list .box {
    position: relative;
    margin: 0 auto 40px;
    max-width: 332px;
}
.branch-list .item a.cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 30;
}
.branch-list .pic {
    display: block;
    position: relative;
    overflow: hidden;
}
.branch-list .txt {
    position: relative;
    box-sizing: border-box;
    margin: 9px 0 0;
    padding: 0 5px;
}
.branch-list .name {
    position: relative;
    box-sizing: border-box;
    display: block;
    color: #2C2D30;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 15px;
    margin: 0 0 10px;
    transition: all 0.3s ease;
    border-left: 2px solid #e40011;
}

.branch-list li a.map_box{
    position: relative;
    box-sizing: border-box;
    display: block;
    text-align: center;
    height: 45px;
    line-height: 45px;
    margin: 10px 5px 0;
    color: #fff;
    letter-spacing: 0.1em;
    background: #2C2D30;
    font-family: "Montserrat", sans-serif;
    font-weight:900;
    transition: all 0.3s ease;
    z-index: 35;
}
.branch-list li a.map_box:hover{
    color: #fff;
    background: #e40011;
}
.branch-list .description{
    color: #616266;
    font-size: 15px;
    line-height: 1.45;
    position: relative;
    z-index: 50;
    border: 1px solid #E3E4E6;
    padding: 15px;
}
.branch-list .url{
    padding: 10px 15px;
    background: #eee;
     transition: all 0.3s ease;
}
.branch-list .url a:hover {
     transition: all 0.3s ease;
    color: #e40011;
}
/*----- rwd -----*/
@media screen and (max-width: 1440px) {
    .branch-list {
        margin: 0 -15px;
    }
    .branch-list .item {
        padding: 0 15px;
    }
}
@media screen and (max-width: 1000px) {
    .branch-list .item {
        width: 33.33%;
    }
    .branch-list .item:nth-child(4n+1) {
        clear: none;
    }
    .branch-list .item:nth-child(3n+1) {
        clear: left;
    }
    .branch-list .txt {
        margin: 20px 0 0;
    }
    .branch-list .name {
        font-size: 16px;
        line-height: 1;
        margin: 0 0 15px;
    }
    .branch-header .title {
        font-size: 20px;
    }
}
@media screen and (max-width: 767px) {
    .branch-list .item {
        width: 50%;
    }
    .branch-list .item:nth-child(3n+1) {
        clear: none;
    }
    .branch-list .item:nth-child(2n+1) {
        clear: left;
    }
}
@media screen and (max-width: 600px) {
    .branch-list .item {
        width: 100%;
    }
    .branch-list .item:nth-child(n) {
        clear: none;
    }
    .branch-list li a.map_box {
        height: 33px;
        line-height: 33px;
    }    
}