.branch-list {
    margin: 0 -20px;
}
.branch-list .item {
    width: 25%;
    padding: 0 20px;
}
.branch-list .item:nth-child(4n+1) {
    clear: left;
}
.branch-list .box {
    max-width: 330px;
    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: 16px;
}
.branch-list .txt {
    position: relative;
    line-height: 1.5;
}
.branch-list li a.map_box{
    position: relative;
    box-sizing: border-box;
    display: block;
    width: 120px;
    color: #555555;
    font-size: 15px;
    text-align: center;
    letter-spacing: 1.9px;
    line-height: 30px;
    border-bottom: 2px solid #52A9A4;
    margin: 20px auto 0;
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.5s ease;
    z-index:35;
}
.branch-list li a.map_box:hover{
    border-bottom-color: rgb(82, 169, 164, 0.3);
    color: #52A9A4;
}
.branch-list .name {
    position: relative;
    color: #333333;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 24px;
    margin: 0 0 16px 0;
    transition: all .5s;
}
.branch-list .box:hover .name {
    color: #52A9A4;
}
.branch-list .description {
    position: relative;
    box-sizing: border-box;
    color: #535353;
    font-size: 14px;
    letter-spacing: 0.8px;
    line-height: 1.5;
}
.branch-list .more {
    display: block;
    width: 170px;
    color: #52A9A4;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    text-align: center;
    line-height: 31px;
    border: 2px solid #52A9A4;
    border-radius: 6px;
    margin: 18px auto 0;
}
.branch-list .box:hover .more {
    background: #52A9A4;
    color: #fff;
}
.branch-list .description a{
    position: relative;
    z-index: 35;
    display: inline-block;
}
@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 .name{
        font-size: 16px;
        margin: 0 0 4px 0;
    }
    .branch-list .item {
        width: 50%;
    }
    .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 .box {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 580px) {
    .branch-list .item {
        width: 100%;
    }
    .branch-list .item:nth-child(n) {
        clear: none;
    }
}