/* CSS Document */
.map-content {
    padding: 30px;
    background: #ffffff;
    scroll-behavior: smooth;
}
.map-module {
    margin: 0 auto;
    position: relative;
    transition: all .3s ease;
}

.map-content-info {
    position: relative;
    margin-bottom: 30px;
}
.branch-map-l {
    height: 700px;
    position: relative;
}
.map-content-box {
    width: 100%;
    height: 100%;
    background: url("../images/map/map.png") no-repeat center;
    position: relative;
}
.map-dot {
    position: absolute;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    line-height: 28px;
}

.wyq {
    left: 690px;
    top: 238px;
}
.hyq {
    left: 506px;
    top: 450px;
}
.zzx {
    left: 220px;
    top: 480px;
}
.ltq {
    right: 280px;
    top: 180px;
}
.glq {
    left: 790px;
    top: 145px;
}
.ylq {
    left: 900px;
    top: 66px;
}
.ltx {
    right: 270px;
    top: 390px;
}
.ytq {
    right: 390px;
    top: 270px;
}
.lhq {
    right: 518px;
    top: 280px;
}
.caq {
    right: 505px;
    top: 420px;
}
.xcq {
    right: 442px;
    top: 282px;
}
.blq {
    right: 480px;
    top: 297px;
}
.bqq {
    right: 510px;
    top: 320px;
}
.map-dot:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    margin: 0px auto;
    background-color: #ca1c1d;
    border-radius: 50%;
    cursor: pointer;
}
.branch-map-data {
    position: absolute;
    box-sizing: border-box;
    width: 320px;
    background-color: #fff;
    z-index: 10;
    display: none;
    border-radius: 4.8px;
}
.branch-map-data .close{
    font-size: 14px;
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,.7);
    border-radius: 4px;
    padding: 4px;
}
.branch-map-data .branch-map-data-info {
    left: 0;
    top: 0;
    overflow: hidden;
    background-color: #f4f4f4;
    border-radius: 4.8px;
    transition: 330ms;
}
.data-info-img {
    height: 176px;
}
.data-info-img > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-user-drag: none;
    -moz-user-select: none;
    user-select: none;
}
.data-des {
	height: 100%;
}
.data-des {
    padding: 0 16px;
    box-sizing: border-box;
}
.data-des .data-name {
    padding-top: 16px;
    font-size: 20px;
    font-weight: 600;
    color: #424242;
}
.data-des .data-content {
    padding-top: 16px;
    height: 70px;
    font-size: 14px;
    color: #777;
    text-align: justify;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: pre;
}
.data-des .data-label {
    display: block;
    font-size: 14px;
    color: #555;
    padding: 14px 0;
}
.data-des .data-label:hover{
    color: #ca1c1d;
}
a, button, input, textarea {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.branch-map-data:before {
    content: "";
    position: absolute;
    left: -16px;
    top: 57%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 8px solid;
    border-color: transparent transparent transparent;
}
.branch-map-data:after {
    content: "";
    position: absolute;
    left: -16px;
    top: 57%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 8px solid;
    border-color: transparent #f4f4f4 transparent transparent;
}

.map-dot:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #ca1c1d;
    animation: dot 4s infinite;
    cursor: pointer;

}
@keyframes dot {
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) scale(1.5);
    opacity: .1;
  }
}