/*2022-11-15新增 facebook/what's app*/
.contactContent{
    display: flex;
    flex-direction: column;
    padding: 100PX 50PX;
    background-color: white;
    text-align: center;
    height: 230PX;
}
.socialFacebook{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    color: #4267B2;
    border: 2PX solid #4267B2;
    border-radius: 80PX;
    cursor: pointer;
    margin: 0 auto 20PX;
    padding: 8PX 24PX;
    font-style: normal;
    font-weight: 600;
    font-size: 16PX;
    line-height: 130%;
    transition: all 0.3s;
}
.socialFacebook:hover{
    background: #4267B2;
    color: #FFFFFF;
    transition: all 0.3s;
}
.socialFacebookIcon>svg{
    fill: currentColor;
}
.socialFacebookIcon{
    height: 24px;
    width: 24px;
    color: #4267B2;
    margin-right: 8PX;
    transition: all 0.3s;
}
.socialFacebook:hover{
    transition: all 0.3s;
}
.socialFacebook:hover .socialFacebookIcon{
    color: #FFFFFF;
    transition: all 0.3s;
}

.socialWhatApp{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    color: #25D366;
    border: 2PX solid #25D366;
    border-radius: 80PX;
    cursor: pointer;
    padding: 8PX 24PX;
    margin: 0 auto 16PX;
    font-style: normal;
    font-weight: 600;
    font-size: 16PX;
    line-height: 130%;
    transition: all 0.3s;
}
.socialWhatApp:hover{
    background: #25D366;
    color: #FFFFFF;
    transition: all 0.3s;
}
.socialWhatAppIcon>svg{
    fill: currentColor;
}
.socialWhatAppIcon{
    height: 24px;
    width: 24px;
    color: #25D366;
    margin-right: 8PX;
    transition: all 0.3s;
}
.socialWhatApp:hover{
    transition: all 0.3s;
}
.socialWhatApp:hover .socialWhatAppIcon{
    color: #FFFFFF;
    transition: all 0.3s;
}
