.branch-list {
    margin: 0 -40px;
}
.branch-list li+li {
    border-left: dashed #dcdcdc 1px;
}
.branch-list li:nth-child(5) {
    border-left: none;
}
.branch-list .item {
    width: 25%;
    padding: 0 20px;
}
.branch-list .item:nth-child(4n+1) {
    clear: left;
}
.branch-list .box {
    max-width: 300px;
    margin: 0 auto 50px;
    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 .pic {
    position: relative;
    overflow: hidden;
    /* margin-bottom: 14px; */
}
.branch-list .box .pic:after{
    content:'MORE';
    font-family: 'Hind', sans-serif;
    font-size:15px;
    color:#ffdb0f;
    font-style:italic;
    font-weight:bold;
    vertical-align:middle;
    display:block;
    position:absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background:rgba(0,0,0,0.67);
    opacity:0;
    z-index: 1;
    transition:all .5s ease;
    display:flex;
    justify-content:center;
    align-items:center;
}
.branch-list .box:hover .pic:after{
    opacity:1;   
    transform: rotate(0) scale(1);
}
.branch-list .box .pic img{
    transform: scale(1);
    transition:all .5s ease;
}
.branch-list .box:hover .pic img{
    transform: scale(1.2);
}
.branch-list .txt {
    padding: 16px 16px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    pointer-events: none;
    background: rgba(0,0,0,0.87);
    text-align: left;
    transition: all .5s ease;
}
.branch-list .box:hover  .txt {
    background:#081c35;
}
.branch-list .name {
    color: #FFDB0F;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 22px;
    transition: all .5s ease;
}
.branch-list .box:hover .name{
    color: #fff;
}
.branch-list .description {
    color: #888;
    font-size: 14px;
    line-height: 1.8;
    margin: 10px 0 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: 100%;
    margin: 0px auto;
    color: #363636;
    background: #FFDB0F;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding: 10px 0;
    font-family: 'Hind', sans-serif;
    box-sizing: border-box;
    transition:all .5s ease;
}
.branch-list li a.map_box:hover{
    background: #363636;
    color: #fff;
}
.branch-list .more {
    background: url(../../images/common/_icon/btn.png);
    width: 89px;
    height: 24px;
    text-indent: -5000px;
    margin-top: 10px;
    margin-left: 15px;
}
.branch-list .box:hover .more {
    background-position: 0 100%;
}

@media screen and (max-width: 1300px) {
    .branch-list {
        margin: 0 -7px;
    }
    .branch-list .item {
        padding: 0 7px;
    }
}
@media screen and (max-width: 1000px) {
    .branch-list .item {
        width: 50%;
    }
    .branch-list .item:nth-child(4n+1) {
        clear: none;
    }
    .branch-list .item:nth-child(2n+1) {
        clear: left;
    }
    .branch-list .item:nth-child(odd){
        border-left:none;
    }
}
@media screen and (max-width: 767px) {
    .branch-list .box {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 580px) {
    .branch-list .item {
        width: 100%;
    }
    .branch-list .item:nth-child(n) {
        clear: none;
    }
    .branch-list li+li {
        border-left: none;
    }

}