
.block {
    width: 1200px;
    display: flex;
    flex-direction: row;
}
.map-content #map {

    width: 700px;
    height: 400px;
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(0,0,0,0.06);

}

.text {
    margin-left: 30px;
}

.text .label {
    font-size: 14px;
    color: #666;
    letter-spacing: 2px;
    line-height: 1.6;
}

.text .label.name {
    font-size: 18px;
    font-weight: bold;
    color: #303030;
}

.text .label.en {
    letter-spacing: normal;

}

.service-list {
    width: 1200px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

}

.service-item {
    display: flex;
    flex-direction: row;
    min-width: 600px;
    justify-content: center;
    position: relative;
    padding: 10px 0;
    margin-bottom: 20px;
}

.service-item:after {
    content: "";
    position: absolute;
    height: 80%;
    margin: auto 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #e5e5e5;
    right: 0;
}

.service-item:nth-child(2n):after {
    content: none;
}

.service-item .avatar {
    width: 80px;
    height: 80px;

}
.service-item .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
    border: 2px solid #e5e5e5;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.service-item .info {
    margin-left: 20px;
    line-height: 1.6;
}

.service-item .name {
    font-size: 18px;
    color: #303030;
}
.service-item .mobile {
    font-size: 16px;
    color: #666;
    font-weight: bold;
}
