.branch-list {
    margin: 0 -6px;
}
.branch-list .box{
    position: relative;
}
.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 .item {
    width: 100%;
    padding: 0 6px;
}
.branch-list .branch_box{
    background: #f6f6f6;
    margin: 0 auto 40px;
    padding: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: solid 1px #f6f6f6;
    -webkit-transition: alll .3s;
    transition: alll .3s;
}
.branch-list .branch_box:hover {
}
.branch-list .pic{
    position: relative;
    overflow: hidden;
    float: left;
}
.branch-list .box .pic:before {
    content: 'MORE';
    display: block;
    font-family: 'Poppins', sans-serif;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 80px;
    height: 35px;
    line-height: 27px;
    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    font-size: 14px;
    color: #fff;
    background: #646665;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    text-align: center;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    opacity: 0;
    -webkit-transform: translate(0,-40px);
    transform: translate(0,-40px);
}
.branch-list .box:hover .pic:before{
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
    opacity: 1;
}
.branch-list .branch_map {
    position: relative;
    overflow: hidden;
    float: left;
    z-index: 9;
    padding: 10px;
    margin-left: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: calc(100% - 310px);
	background: #fff;
    height: 200px;
    border: 1px solid #eaeaea;
    box-sizing: border-box;
    z-index: 60;
}

.branch-list .txt {
    padding: 2% 0px 0px;
    display: inline-block;
    width: 100%;
}
.branch-list .name{
    border: 1px solid #d1d1d1;
    font-size: 17px;
    padding: 5px 0;
    border-width: 1px 0;
    font-weight: bold;
    line-height: 1.5;
    color: #4e4e4e;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.branch-list .branch_box:hover .name{
    color: #2a59a7;
}
.branch-list .description{
    font-size: 14px;
    line-height: 1.5;
    margin: 8px 0 ;
}


@media screen and (max-width: 850px) {

}
@media screen and (max-width: 590px) {

    .branch-list .branch_box {
        max-width: 320px;
        margin: 0 auto 40px;
        padding-bottom: 20px;
    }
    .branch-list .pic {
        display: none;
    }
    .branch-list .branch_map {
        width: 100%;
        margin-left: 0;
    }
    .branch-list .txt {
        padding: 20px 0 0 0;
    }
    .branch-list {
        margin: 0 -6px;
    }
    .branch-list .item {
        width: 100%;
    }
    .branch-list .item:nth-child(n) {
        clear: none;
    }

}
@media screen and (max-width: 480px) {

}