/* 分享弹窗 */
#shareModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
#shareModal .mc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}
.share-buttons {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    z-index: 1001;
    min-width: 300px;
    justify-content: center;
}
.share-buttons button {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    color: #666;
    gap: 5px;
}
.share-buttons .icon {
    width: 40px;
    height: 40px;
}

.message-modal {
    position: fixed;
    left: 50%;
    top: 15px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 9999;
    max-width: 90%;
    padding: 12px;
    background-color: #fff;
    border: 1px solid #ebeef5;
    border-radius: 8px;
    -webkit-box-shadow: 0px 0px 12px rgba(0,0,0,.12);
    box-shadow: 0px 0px 12px rgba(0,0,0,.12);
    font-size: 14px;
    line-height: 20px;
    color: #606266;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease
}

.message-modal.show {
    -webkit-animation: slideIn .3s ease-out forwards;
    animation: slideIn .3s ease-out forwards;
    opacity: 1
}