/* 微信分享引导样式 */
.wechat-share-guide {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide-content {
    background-color: #fff;
    border-radius: 12px;
    width: 85%;
    max-width: 320px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.guide-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 0;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.guide-preview {
    padding: 15px;
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    background-color: #f9f9f9;
}

.preview-image {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-text {
    flex: 1;
    overflow: hidden;
}

.preview-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.preview-desc {
    font-size: 12px;
    color: #999;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.guide-instruction {
    padding: 15px;
}

.instruction-step {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.step-number {
    width: 24px;
    height: 24px;
    background-color: #07c160;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    margin-right: 10px;
    flex-shrink: 0;
}

.step-text {
    font-size: 14px;
    color: #333;
}

.dots {
    letter-spacing: 2px;
    font-weight: bold;
}

.guide-close {
    display: block;
    width: calc(100% - 30px);
    margin: 0 15px 15px;
    padding: 10px 0;
    background-color: #07c160;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

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

.qrcode-container {
    background-color: #fff;
    border-radius: 12px;
    width: 85%;
    max-width: 320px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.qrcode-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.close-btn {
    font-size: 24px;
    color: #999;
    cursor: pointer;
}

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

.qrcode-content p {
    margin-top: 15px;
    color: #666;
    font-size: 14px;
}

#qrcode {
    display: inline-block;
}

#qrcode img {
    display: block;
    margin: 0 auto;
}

/* 提示信息样式 */
.toast-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    z-index: 1001;
    font-size: 14px;
}