.branch-list {
    margin: 0 -16px;
}
.branch-list .item {
    width: 25%;
    padding: 0 16px;
}
.branch-list .item:nth-child(4n+1) {
    clear: left;
}
.branch-list .box {
    max-width: 335px;
    margin: 0 auto 45px;
    padding: 6px 6px 10px;
    border: 1px solid #C8C8C8;
    box-shadow:2px 2px 2px rgba(0%,0%,0%,0.2);
    position: relative;
}
.branch-list .pic {
    margin-bottom: 3px;
    position: relative;
}
.branch-list .pic:after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
    opacity: 0;
}
.branch-list .item:hover .pic:after{
    opacity: 1;
    transition: all 0.2s linear;
}
.branch-list .box .btn-group{
    position: absolute;
    top: 50%;
    margin-top: -60px;
    text-align: center;
    z-index: 2;
    width: 100%;
    opacity: 0;
}
.branch-list .item:hover .btn-group{
    margin-top: -35px;
    opacity: 1;
    transition: all 0.3s linear;
}
.branch-list .btn-group a{
    color: #ddd;
    display: inline-block;
    margin: 0 7px;
}
.branch-list .btn-group a:before{
    content: '';
    width: 57px;
    height: 57px;
    background: #A3A3A3 url(../../images/common/branch/btn_icon.svg)0 0;
    display: block;
    border-radius: 100%;
    margin: 0 auto;
}
.branch-list a.branch-web:hover{
    color: #A1D9FF;
}
.branch-list a.branch-web:hover:before{
    background-position: 0 100%;
    background-color: #A1D9FF;
}
.branch-list a.branch-map:hover{
    color: #FFED2A;
}
.branch-list a.branch-map:before{
    background-position: 100% 0;
}
.branch-list a.branch-map:hover:before{
    background-position: 100% 100%;
    background-color: #FFED2A;
    color: #FFED2A;
}
.branch-list .name:before{
    content: '';
    width: 22px;
    height: 22px;
    background: url(../../images/common/reminder.svg);
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    position: relative;
    top: -2px;
}
.branch-list .name {
    color: #060000;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 25px;
    margin-bottom: 3px;
}
.branch-list .txt{
    line-height: 22px;
    padding: 8px 15px 8px 15px;
}
.branch-list .box:hover .name {
    text-decoration: underline;
    color: #0091F0;
}
.branch-list .description a{
    display: inline-block;
    text-decoration:underline;
}
.branch-list .description a:hover{
    color: #000;
}

.branch-list .btn-group {
    overflow: hidden;
}
.branch-list .btn {
    width: 100%;
    line-height: 30px;
    color: #ef907d;
    font-size: 14px;
    padding: 0 12px;
    border-radius: 15px;
}
.branch-list .btn:hover{
    color: #fff;
}
.branch-list .btn.detail {
    background: #ffe8e3;
}
.branch-list .btn.detail:hover {
    background: #ffb9ab;
}
.branch-list a:hover .btn.detail {
    background: #ABB315;
}
.branch-list .btn .ic {
    font-size: 20px;
    width: 20px;
    height: 20px;
    line-height: 16px;
    border: 1px solid transparent;
    padding: 0px 3px 0px 0;
    vertical-align: middle;
}


@media screen and (max-width: 1200px) {
    .branch-list {
        max-width: 900px;
        margin: 0 auto;
    }
    .branch-list .item {
        width: 50%;
        padding: 0 16px;
    }
    .branch-list .item:nth-child(4n+1) {
        clear: none;
    }
    .branch-list .item:nth-child(2n+1) {
        clear: left;
    }
}
@media screen and (max-width: 767px) {
    .branch-list .item {
        width: 100%;
        padding: 0 ;
    }
    .branch-list {
        margin: 0 auto;
        max-width: 320px;
    }
}