@charset "utf-8";
/*------------ list ------------*/
.branch-list {
    max-width: 1240px;
    margin: 0 auto;
}
.branch-list .item {
    width: 50%;
    padding: 0 20px;
}
.branch-list .item:nth-child(2n+1) {
    clear: left;
}
.branch-list .box {
    position: relative;
    margin: 0 auto 40px;
}
.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: 10px;
}
.branch-list .txt {
    position: relative;
    box-sizing: border-box;
    margin: 15px 0 0;
    padding: 0 5px;
}
.branch-list .name,
.branch-list .url {
    margin: 0 5px;
}
.branch-list .name {
    position: relative;
    box-sizing: border-box;
    display: block;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
    margin: 0 0 10px;
    transition: all 0.3s ease;
}
.branch-list .box:hover .name {
    color: #262C81;
}
.branch-list .url {
    color: #8B8B8B;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 22px;
}
.branch-list a:hover .url {
    text-decoration: underline;
}
.branch_map{
    position: relative;
    height: 200px;
    z-index: 35;
}
/*------------ /list ------------*/
/*------------ rwd ------------*/
@media screen and (max-width: 1280px) {
    .branch-list {
        margin: 0 -15px;
    }
    .branch-list .item {
        padding: 0 15px;
    }
}
@media screen and (max-width: 1000px) {
    .branch-list {
        margin: 0 -10px;
    }
    .branch-list .item {
        padding: 0 10px;
    }
}
@media screen and (max-width: 600px) {
    .branch-list {
        margin: 0;
    }
    .branch-list .item {
        width: 100%;
        padding: 0;
    }
}