/* WeChat Tip Component Styles */
#weixin-tip {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    z-index: 9999;
    text-align: center;
    font-size: 18px;
    padding-top: 50px;
}

#close-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

/* 弯曲箭头容器 */
#arrow-container {
    position: absolute;
    top: 0;
    right: 20px;
    width: 100px;
    height: 100px;
    z-index: 10000;
}

/* 调整箭头在不同屏幕中的大小 */
#arrow-container svg {
    width: 100%;
    height: 100%;
} 