.sss-share-box {
    margin-top: 24px;
    padding-top: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    position: relative;
}

.sss-label {
    font-weight: bold;
    color: #444;
}

.sss-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.sss-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    color: #fff;
    border-color: transparent;
}

/* 微博按钮样式 */
.sss-weibo:hover {
    background: #e6162d;
}

/* 微信按钮样式 */
.sss-wechat:hover {
    background: #09bb07;
}

/* QQ按钮样式 */
.sss-qq:hover {
    background: #12b7f5;
}

/* 豆瓣按钮样式 */
.sss-douban:hover {
    background: #007722;
}

/* Facebook按钮样式 */
.sss-facebook:hover {
    background: #1877f2;
}

/* 复制链接按钮样式 */
.sss-copy:hover {
    background: #555;
}

.sss-icon {
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sss-qrcode-box {
    position: absolute;
    margin-top: 10px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 100;
    top: 100%;
    left: 0;
}

.sss-qrcode-box img {
    width: 150px;
    height: 150px;
    border: 1px solid #eee;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
}

.sss-qrcode-inner {
    text-align: center;
}

.sss-qrcode-tip {
    font-size: 11px;
    color: #666;
    margin-top: 10px;
    margin-bottom: 0;
}
