/*------------ branch ------------*/

.branch-list {
    margin: 0 -15px;
}

.branch-list li {
    width: 50%;
    padding: 0 15px;
}

.branch-list li:nth-child(2n+1) {
    clear: left;
}

.branch-list li .box {
    transition: all .2s;
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    box-sizing: border-box;
}
.branch-list .box .cover2{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}
.branch-list li .box:hover {}

.branch-list li .text-box {
    padding: 10px 15px;
    background: #f5f5f5;
}

.branch-list li .pic {
    position: relative;
    box-sizing: border-box;
}

.branch-list .pic {
    position: relative;
    box-sizing: border-box;
    z-index: 1;
    transition: all .2s;
    overflow: hidden;
}

.branch-list li .box .pic img{
  -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;

}
.branch-list li .box:hover .pic img{
        -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);

}

.branch-list .pic .cover {
    opacity: 0;
    transition: all .2s;
        position: absolute;
    width: 100%;
    height: 100%;
}



.branch-list li .box:hover .cover {
    opacity: 1;
}

.branch-list li .name {
    font-size: 16px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 22px;
    font-weight: bold;
    padding: 0 0 10px;
    margin: 0px 0 5px;
    color: #9A7F64;
}

.branch-list .description  {
    font-size: 14px;
    display: -webkit-box;
    margin: 10px 0 5px;
    width: 100%;
    color: #616161;
}

.branch-list .map_box {
    display: block;
    transition: all .2s;
    line-height: 1.2;
    font-size: 18px;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    padding: 7px 0 5px 0;
    position: relative;
    color: #fff;
    font-size: 13px;
    text-align: center;
    margin: 0 auto 30px;
    background: rgb(96,76,65); /* Old browsers */
    background: -moz-linear-gradient(left, rgba(96,76,65,1) 0%, rgba(179,146,101,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(96,76,65,1) 0%,rgba(179,146,101,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(96,76,65,1) 0%,rgba(179,146,101,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#604c41', endColorstr='#b39265',GradientType=1 ); /* IE6-9 */
}

.branch-list .map_box:before {
    content: "\e1001";
    font-size: 15px;
    font-family: 'icon-font' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px 2px 0;

}

.branch-list .map_box:hover{
    opacity: 0.8;
}


/*------------ rwd ------------*/

@media screen and (max-width: 900px) {
    .branch-list li {
        width: 50%;
    }
    .branch-list li:nth-child(3n+1) {
        clear: none;
    }
    .branch-list li:nth-child(2n+1) {
        clear: left;
    }
}

@media screen and (max-width: 520px) {
    .branch-list {
        margin: 0;
    }
    .branch-list li {
        width: 100%;
        padding: 0;
    }
}
