.page-common-title{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 28px;
}
.page-common-msg-out{
    background: #0a5cff;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 100px;
}
.page-common-msg{
    background: linear-gradient(90deg, #ffffff 0%, #fafcff 100%);
    padding: 12px 20px;
    font-size: 14px;
    border: 1px solid #eef4ff;
    border-radius: 100px;
    position: relative;
    left: 3px;
}
.contact-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.contact-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 23.5%;
    height: 130px;
    padding: 6px 10px;
    text-align: center;
    background-size: 20%;
    background-position: center 90%;
    background-repeat: no-repeat;
    box-shadow: 0px 2px 20px 0px rgba(183, 196, 211, 0.25);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}
.contact-item>div:nth-child(1){
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 14px;
}
.contact-item>div:nth-child(2){
    font-size: 13px;
    color: #4b5563;
    line-height: 20px;
}
.contact-item-hover{
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.501);
}
.contact-item-hover a{
    display: block;
    height: fit-content;
    width: fit-content;
    padding: 5px 16px;
    background: #0a5cff;
    color: white;
    font-size: 13px;
    border-radius: 60px;
}
.contact-item:hover .contact-item-hover{
    display: flex;
}
.contact-item-placeholder{
    width: 23.5%;
}
.contact-item-hover a:hover{
    background: #2169fa;
}

/* 手机样式 */
@media (max-width: 1024px) {
    .contact-item{
        width: 48%;
    }
    .page-common-title{
        font-size: 16px;
        text-align: center;
    }
    .page-common-msg{
        font-size: 12px;
        line-height: 20px;
    }
    .contact-item>div:nth-child(1){
        font-size: 14px;
    }
}