.contact-box {
    display: flex;
    align-items: center;
    background-color: #FCF9F6;
}
.contact-box>div {
    flex: 1;
}
.contact-info {
    padding: .4rem;
}
.contact-info h2 {
    font-size: .24rem;
    padding-bottom: .4rem;
    margin-bottom: .4rem;
    border-bottom: 1px solid #E6E6E6;
}
.contact-info dl {
    font-size: .24rem;
    color: #616161;
    line-height: 2.5em;
}
.contact-info dl dt {
    float: left;
}
.contact-info dl dd b {
    color: #FF7600;
}
.map {
    height: 3.96rem;
    overflow: hidden;
}
.bg {
    background-color: #FCF9F6;
}
.media-row {
    margin-top: .5rem;
    /* height: 2rem; */
    display: flow-root;
}
.media-row .item {
    width: calc(100%/5 - .3rem);
    margin-right: .3rem;
    position: relative;
    float: left;
    height: 1.65rem;
    margin-bottom: .3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
}
.media-row .item:nth-child(5n) {
    margin-right: 0rem;
}
.media-row .item .icon {
    width: 1rem;
    height: 1rem;
}
.media-row .item span {
    position: absolute;
    width: 1.2rem;
    height: 1.2rem;
    bottom: 0rem;
    background-color: #fff;
    padding: .1rem;
    border-radius: .2rem;
    opacity: 0;
    z-index: 2;
    transition: all .5s;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}
.media-row .item span img {
    width: 100%;
    height: 100%;
    border-radius: .2rem;
}
.media-row .item:hover span {
    opacity: 1;
    bottom: 1.7rem;
}
@media screen and (max-width:768px) {
    .contact-box {
        flex-direction: column;
    }
    .contact-box>div {
        flex: none;
        width: 100%;
        box-sizing: border-box;
    }
    .contact-box .map {
        width: 100%;
    }
    .media-row {
        margin-top: .7rem;
        display: inline-block;
    }
    .media-row .item {
        width: calc(100%/3 - .3rem);
    }
    .media-row .item:nth-child(5n) {
        margin-right: .3rem;
    }
    .media-row .item:nth-child(3n) {
        margin-right: 0rem;
    }
}