.branch-list {
    margin: 0 -25px;
}
.branch-list .item {
    width: 25%;
    padding: 0 25px;
}
.branch-list .box {
    margin: 0 auto 40px;
    line-height: 1.65;
    overflow: hidden;
    max-width: 320px;
}
.branch-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}
.branch-list .pic {
    position: relative;
    overflow: hidden;
    margin: 0 0 20px  0;
}
.branch-list .pic:before {
    content: '';
    display: block;
    border: 5px solid #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    z-index: 5;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.branch-list .box:hover .pic:before {
    opacity:0.6;
}
.branch-list .box:hover .txt {
    background: #F2FAF6;
}
.branch-list .name {
    display: block;
    color: #5F5F5F;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 29px;
}
.branch-list .box:hover .name {
    color: #4D8C83;
}
.branch-list .description {
    color: #888;
    letter-spacing: 0;
    position: relative;
    z-index: 35;
}
.branch-list .description a{
    position: relative;
    z-index: 35;
    display: inline-block;
}
.branch-list li a.map_box{
    display: block;
    position: relative;
    z-index: 35;
    width: 120px;
    margin: 10px 0;
    color: #4D8C83;
    border:solid 1px #4D8C83;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.1em;
}
.branch-list li a.map_box:hover{
    background: #4D8C83;
    color: #fff;
}
@media screen and (max-width: 1000px) {
    .branch-list .item {
        width: 33.33%;
    }
}
@media screen and (max-width: 767px) {
    .branch-list {
        margin: 0 -7px;
    }
    .branch-list .item {
        float: left;
        width: 50%;
        padding: 0 7px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .branch-list .box {
        max-width: 320px;
        text-align: center;
    }
    .branch-list .pic {
        float: none;
        width: auto;
    }
    .branch-list .txt {
        margin: 5px 0 0;
        padding: 15px 15px 20px;
    }
}
@media screen and (max-width: 520px) {
    .branch-list .item {
        width: 100%;
    }
}