.branch-list {
    margin: 0 -10px;
}

.branch-list li:nth-child(3n+1) {
    clear: left;
}

.branch-list .item {
    width: calc((100% / 3) - 0.1px);
    padding: 0 8px 35px;
    position: relative;
}

.branch-list .box {
    max-width: 504px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.branch-list .pic {
    position: relative;
    overflow: hidden;
}

.branch-list a .pic:before {
    content: '';
    display: block;
    background:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 252, 103, 0.05)), to(rgba(116, 137, 44, 0.7)));
    background:linear-gradient(rgba(255, 252, 103, 0.05), rgba(116, 137, 44, 0.7));
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s cubic-bezier(.62,.08,.64,.92);
    transition: all 0.4s cubic-bezier(.62,.08,.64,.92);
    width: 100%;
    height: 0;
}

.branch-list a:hover .pic:before {
    opacity: 1;
    height: 80%;
}

.branch-list .pic:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.branch-list .txt {
    padding: 10px;
    background:#eae5e1;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.branch-list .name {
    display: inline-block;
    vertical-align: middle;
    font-size: 17px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.branch-list a:hover .txt {
    background: #74892c;
}

.branch-list a:hover .name {
    color: #fffc67;
}

.branch-list .description {
    background: #fdfdfd;
    border: 1px solid #eae5e1;
    border-top: none;
    padding: 10px;
    color: #454545;
    font-size: 14px;
}

.branch-list .map_box {
    position: absolute !important;
}

.map .ic13-map-mark {
    font-size: 22px;
    padding: 11px;
}

@-webkit-keyframes pop {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    90% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pop {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    90% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes pulse {
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 1;
    }
    70% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 1;
    }
    70% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.map_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 3%;
    left: 6%;
    margin-left: 0px;
    margin-top: 0px;
    width: 45px;
    height: 45px;
    text-align: center;
}

.map_box:hover {
    fill: #fff;
}

.map_box:hover .ic13-map-mark {
    color: #a9906f;
}

.map_box:hover,
.map_box:hover .ic13-map-mark {}

.map_box:hover:before {
    -webkit-animation: pop 0.5s;
    animation: pop 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.map_box:hover:after {
    -webkit-animation: pulse 0.5s;
    animation: pulse 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.map_box:before,
.map_box:after {
    content: "";
    top: 0;
    left: 0;
    width: 45px;
    height: 45px;
    position: absolute;
    border: 1px solid #f0efe9;
    border-radius: 100%;
    background-color: #a49387;
}

.map_box:after {
    background: rgba(240, 239, 233, 0.8);
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0;
}

.map_box svg,
.map_box .ic13-map-mark {
    z-index: 1;
}

.map_box {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.map_box .ic13-map-mark {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #fff;
    font-size: 20px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    position: absolute;
    top: 13px;
    right: 12px;
}


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

@media screen and (max-width: 767px) {
    .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: 530px) {
    .branch-list .item {
        width: 100%;
    }
}