@charset "UTF-8";

.info-box ul {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding: 0;
}

.info-box li {
    text-align: center;
    background: #F3F6FA;
    flex: 0 0 calc(50% - 12px);
    padding: 0 30px;
    box-sizing: border-box;
    overflow: hidden;
}

.info-box li img {
    display: inline-block;
    height: 43px;
    padding: 40px 0 25px;
}

.info-box li p {
    min-height: 60px;
    margin-bottom: 30px;
}

.info-box li .half-box {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.info-box li .half-box > div,
.info-box li p {
    line-height: 30px;
}

.info-box li .half-box > div {
    flex: 0 0 calc(50% - 10px);
    white-space: nowrap;
}

.info-box li .half-box > div:nth-child(2n + 1) {
    text-align: right;
}

.info-box li .half-box > div:nth-child(2n) {
    text-align: left;
    margin-left: 20px;
    position: relative;
}

.info-box li .half-box > div:nth-child(2n)::before {
    content: '/';
    position: absolute;
    left: -12px;
    top: 0;
}

@media (max-width: 1024px) {
    .info-box li .half-box > div {
        flex: 100%;
        text-align: left !important;
        text-indent: 15%;
    }

    .info-box li .half-box > div:nth-child(2n) {
        margin-left: 0;
    }

    .info-box li .half-box > div:nth-child(2n)::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .info-box li .half-box > div {
        text-indent: 0;
    }
}

@media (max-width: 640px) {
    .info-box ul {
        gap: 5px;
    }

    .info-box li {
        flex: 0 0 100%;
        display: flex;
        align-items: center;
        padding: 20px;
    }

    .info-box li img {
        padding: 0 20px 0 0;
        height: 20px;
    }

    .info-box li p, .info-box li .half-box {
        margin-bottom: 0;
        min-height: unset;
        text-align: left;
        line-height: 1.4;
    }
}

/*联系表单*/
.contact {
    background: #f7f8fc;
}

.contact-form .cf-bg {
    position: absolute;
    right: 0;
    top: 20px;
    bottom: 0;
    width: 32%;
}

.contact-form .cf-form {
    margin-left: 0;
    width: 68%;
}

.contact-form form {
    margin-right: 20px;
}

@media (max-width: 1024px) {
    .contact-form .cf-bg {
        width: 40%;
    }

    .contact-form .cf-form {
        margin-left: 0;
        width: 60%;
    }
}

@media (max-width: 768px) {
    .contact-form .cf-bg {
        width: 50%;
    }

    .contact-form .cf-form {
        width: 50%;
    }
}

@media (max-width: 640px) {
    .contact-form .cf-bg {
        display: none;
    }
    .contact-form .cf-form {
        margin-right: 0;
        width: 100%;
    }
}

.contact-right img {
    display: block;
    width: 100%;
}

/*地图*/
.map-wrap {
    position: relative;
}
.contact-map {
    height: 400px;
}

@media (max-width: 1024px) {
    .contact-map {
        height: 300px;
    }
}

.map-wrap .loading {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    color: #999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-marker {
    position: relative;
    z-index: 1;
    width: 74px;
    height: 74px
}

.map-marker::before, .map-marker::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    border-radius: 50%;
    background-image: radial-gradient(closest-side at 40px 40px, rgba(255, 255, 255, 0.36) 0, rgba(255, 255, 255, 0.33) 70%, #c91b1d 100%);
}

.map-marker::before {
    animation: scaleMap 2s infinite linear;
}

.map-marker::after {
    animation: scaleMapSmall 2s infinite linear 1s;
}

.map-marker span {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    background: url('../images/common/map_ico.png') center center / contain no-repeat;
}