/* 分享提示层样式 */
.share-tip-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 10px 20px;
}

.share-tip-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    margin-top: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.share-tip-content p {
    margin: 8px 0;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.share-tip-content strong {
    font-size: 18px;
    color: #97652B;
}

.share-arrow {
    position: absolute;
    top: -30px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 30px solid #fff;
}

.share-arrow::before {
    content: '';
    position: absolute;
    top: -25px;
    right: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 25px solid rgba(255, 255, 255, 0.3);
}
