.branch-list {
    margin: 0 -10px;
}
.branch-list .item {
    width: 33.33%;
    padding: 0 10px;
}
.branch-list .item:nth-child(3n+1) {
    clear: left;
}
.branch-list .box {
    margin: 0 auto 20px;
    max-width: 350px;
    border: 1px solid #80CAA5;
    background: #fff;
    position: relative;
}
.branch-list .box a.cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}
.branch-list .box:hover {
    background: #F2FAF6;
}
.branch-list .pic {
    position: relative;
    overflow: hidden;
}
.branch-list .pic:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.3);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.branch-list .box:hover .pic:before {
    opacity: 1;
}
.branch-list .txt {
    padding: 10px 15px;
}
.branch-list .name {
    color: #444;
    font-size: 15px;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 24px;
}
.branch-list .box:hover .name {
    color: #80CAA5;
}
.branch-list .description{
    color: #8B8B8B;
    font-size: 14px;
    line-height: 1.45;
    position: relative;
    z-index: 50;
}
.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 auto;
    color: #80CAA5;
    border: 1px solid #80CAA5;
    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{
    color: #fff;
    background-color: #80CAA5;
}
@media screen and (max-width: 1260px) {
    .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: 767px) {
    .branch-list {
        margin: 0 -7px;
    }
    .branch-list .item {
        padding: 0 7px;
    }
}
@media screen and (max-width: 600px) {
    .branch-list .item {
        width: 100%;
    }
    .branch-list .item:nth-child(n) {
        clear: none;
    }
}