.person-box {
    padding-top: 80px;
}
.in-person {
    background-color: #F6F9FC;
}
.person-info {
    padding: 50px 25px;
    background: url(../images/head_border.png) no-repeat center;
    background-size: 100% 100%;
}

.person-info .img-box {
    width: 300px;
    height: 320px;
    overflow: hidden;
    box-shadow: 10px 10px 0 0 #0154AB;
}

.person-info .img-box img {
    width: 100%;
}

.person-info .info-box {
    padding-top: 20px;
    padding-left: 70px;
}

.person-info .info-box h2 {
    margin-bottom: 30px;
    padding: 15px 0;
    border-bottom: 1px dashed #bbb;
    font-size: 20px;
}

.person-info .info-box h2 strong {
    color: #0154AB;
}

.person-info .info-box h2 span {
    display: inline-block;
    margin-left: 15px;
    font-size: 16px;
    vertical-align: baseline;
}

.person-info .info-box li {
    margin-bottom: 26px;
    font-size: 16px;
}

.person-info .info-box li:last-of-type {
    margin-bottom: 0;
}

.person-info .info-box li label {
    color: #999;
}

.person-info .info-box li p {
    margin-top: 8px;
    color: #222;
}

.experience-box {
    margin-top: 120px;
    padding-bottom: 80px;
}

.experience-box .left {
    position: relative;
    width: 200px;
    height: 472px;
    background: url(../images/experience.png) no-repeat center 0;
    background-size: contain;
}

.experience-box .left .e-title {
    padding-top: 20px;
    font-size: 70px;
    color: #0154AB;
}

.experience-box .left .e-title .bg-box {
    position: absolute;
    right: -30px;
    bottom: -110px;
    width: 142px;
    height: 192px;
    background-color: #e4e4e4;
}

.experience-box .left .e-title .en {
    font-size: 28px;
}

.experience-box .right {
    margin-left: 26px;
    width: calc(100% - 230px);
    font-size: 16px;
}

.experience-box .right p {
    margin-bottom: 40px;
    line-height: 40px;
}
.map-point {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #0154AB;
    border-radius: 50%;
}

.map-point:after, .map-point:before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 1px 2px #0154AB;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    z-index: 3;
    opacity: 0;
    animation: halo 2s 1s infinite ease-out;
}
.map-point:after {
    animation-delay: 0s
}
.map-point.m1 {
    left: 208px;
    top: 166px;
}
.map-point.m2 {
    left: 360px;
    top: 360px;
}
.map-point.m3 {
    left: 653px;
    top: 316px;
}
.map-point.m4 {
    left: 722px;
    top: 157px;
}
.map-point.m5 {
    left: 919px;
    top: 149px;
}

@keyframes halo {
    0% {
        opacity: 0;
        transform: scale(0.1);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

@media (max-width: 1460px) {
    .wid {
        width: 1080px;
    }
    .te-wrap.wid, .map-box.wid {
        width: 1200px;
    }
    .pg-header .logo {
        width: 340px;
        padding-left: 50px;
    }
    .pg-header .nav ul li {
        margin-left: 16px;
    }
}