.branch-list {
    margin: 0 -15px;
}
.branch-list .item {
    width: 33.3%;
    padding: 0 15px;
}
.branch-list .item:nth-child(3n+1) {
    clear: left;
}
.branch-list .branch_box{
    position: relative;
    box-sizing: border-box;
    margin: 0 auto 40px;
    padding: 0px;
    border: 1px solid #a8a8a8;
}
.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-bottom: 0px;
}
.branch-list .pic img{
    width: 100%;
}
.branch-list a:hover .pic:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background: url(../../images/common/branch/hover.png) 50% 50% no-repeat rgba(0, 0, 0, 0.5);
    opacity: 1;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}
.branch-list .branch_map {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    float: left;
    padding: 0;
    width: 100%;
    height: 200px;
    z-index: 99;
}
.branch-list .txt {
    box-sizing: border-box;
    padding: 15px 15px 15px;
    display: inline-block;
    width: 100%;
}
.branch-list .name {
    position: relative;
    box-sizing: border-box;
    color: #fff;
    font-size: 18px;
    font-weight: normal;
    line-height: 27px;
    transition: all 0.3s ease;
}
.branch-list .branch_box:hover .name {
    color: #92C02B;
}
.branch-list .description {
    position: relative;
    box-sizing: border-box;
    color: #a7a7a7;
    font-size: 14px;
    letter-spacing: 0.8px;
    line-height: 1.5;
    margin: 10px 0;
}
.branch-list .description span {
    position: relative;
    font-weight: bold;
    font-family: "Alan Sans", sans-serif;
}
.branch-list .branch_btn{
    position: relative;
    display: flex;
    box-sizing: border-box;
    padding: 15px 15px 15px;
    margin-bottom: 20px;
    justify-content: space-between;
}
.branch-list .branch_btn .map_box,
.branch-list .branch_btn .line_box{
    position: relative;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
    border-bottom: 2px solid #92C02B;
    padding: 5px 0;
    width: 45%;
    transition: all .3s ease;
}
.branch-list .branch_btn .map_box:hover,
.branch-list .branch_btn .line_box:hover{
    color: #92C02B;
}
/* --------- rwd --------- */
@media screen and (max-width: 769px) {
    .branch-list .item {
        width: 50%;
        padding: 0 6px;
    }
    .branch-list .item:nth-child(3n+1) {
        clear: none;
    }
    .branch-list .item:nth-child(2n+1) {
        clear: left;
    }
    .branch-list .branch_btn{
        padding: 0 15px 0px;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }
    .branch-list .branch_btn .map_box, .branch-list .branch_btn .line_box{
        width: 100%;
    }
    .branch-list .branch_btn .line_box{
        margin-top: 15px;
    }
}
@media screen and (max-width: 480px) {
    .branch-list .branch_box {
        margin: 0 auto 20px;
        padding-bottom: 10px;
    }
    .branch-list .branch_map {
        width: 100%;
        margin-left: 0;
    }
    .branch-list .txt {
        padding: 3px 0 0 0;
    }
    .branch-list {
        margin: 0 -6px;
    }
    .branch-list .item {
        width: 100%;
    }
    .branch-list .item:nth-child(n) {
        clear: none;
    }
    .branch-list .name {
        font-size: 16px;
    }
}