/* 容器样式：让图标水平排列并居中 */
.social-media-links {
    display: flex;
    gap: 15px; /* 图标之间的间距，可自行调整 */
    justify-content: center; /* 如果你想靠左对齐，可以改为 flex-start */
    padding: 20px 0;
}

/* 默认图标样式：圆形、深色背景、白色图标 */
.social-media-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background-color: #333333; /* 默认背景色 */
    color: #ffffff; /* 默认图标颜色 */
    border-radius: 50%; /* 把背景变成纯圆形 */
    text-align: center;
    line-height: 45px; /* 确保图标垂直居中，需与 height 一致 */
    text-decoration: none;
    font-size: 22px; /* 图标大小 */
    transition: all 0.3s ease; /* 添加平滑的过渡动画 */
}

/* 鼠标悬停（Hover）时的各品牌专属颜色效果 */
.social-media-links a:hover:nth-child(1) { 
    background-color: #1877f2; /* Facebook 官方蓝 */
    transform: translateY(-3px); /* 鼠标放上去时图标微微上浮 */
}

.social-media-links a:hover:nth-child(2) { 
    background-color: #0a66c2; /* LinkedIn 官方蓝 */
    transform: translateY(-3px);
}

.social-media-links a:hover:nth-child(3) {
    /* Instagram 官方渐变色 */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
    transform: translateY(-3px);
}