/* 分享按钮样式 */
.article-share {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.article-share span {
    margin-right: 10px;
}

.article-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin: 0 5px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-share a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.share-weixin {
    background-color: #07C160;
}

.share-weibo {
    background-color: #E6162D;
}

.share-qq {
    background-color: #12B7F5;
}

.share-copy {
    background-color: #6c757d;
}

/* 二维码弹窗样式 */
.qrcode-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.qrcode-container {
    background-color: #fff;
    border-radius: 8px;
    width: 300px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.qrcode-header {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qrcode-header h5 {
    margin: 0;
    font-size: 1.1rem;
}

.qrcode-header .close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.qrcode-body {
    padding: 20px;
    text-align: center;
}

.qrcode-body p {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #6c757d;
}

#qrcode {
    display: inline-block;
}

#qrcode img {
    margin: 0 auto;
}

/* 提示信息样式 */
.toast-message {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background-color: rgba(0,0,0,0.8);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1060;
}

.toast-message.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}