/* 举报弹窗样式 */
.report-popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
}

.report-popup-wrapper .van-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.report-popup-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    background: #1a1a1a;
    border-radius: 12px;
    z-index: 2;
    margin: 0;
}

.report-popup-container {
    padding: 1.5rem;
    color: #fff;
}

.report-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.report-popup-title h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
}

.report-subtitle {
    font-size: 0.9rem;
    color: #eee;
    margin: 0 0 0 0.5rem;
    font-weight: 400;
}

.report-popup-close {
    cursor: pointer;
    font-size: 1.5rem;
    color: #eee;
    transition: color 0.3s;
    padding: 0.2rem;
    line-height: 1;
}

.report-popup-close:hover {
    color: #fff;
}

.report-popup-body {
    margin-bottom: 1.5rem;
}

.report-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.report-option-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s;
}

.report-option-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.report-option-item input[type="radio"] {
    margin-top: 0.3rem;
    width: 1.2rem;
    height: 1.2rem;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--primary-text-color); 
}

.report-option-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.report-tips {
    font-size: 0.85rem;
    color: #eee;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.report-textarea {
    width: 100%;
    min-height: 8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.6;
    resize: vertical;
    box-sizing: border-box;
}

.report-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.report-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.report-popup-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.report-popup-btn {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    min-width: 8rem;
}

.report-btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}


.report-btn-submit {
    background: var(--primary-text-color);
    color: #fff;
}


.report-btn-submit:active {
    transform: scale(0.98);
}
.report-detail-section{
    position: relative;
}
.report-textarea-count{
    position: absolute;
    bottom: 0.8rem;
    right: 0.6rem;
    font-size: 0.7rem;
    color: #eee;
}

/* PC端样式优化 */
@media (min-width: 961px) {
    .report-popup-dialog {
        max-width: 450px;
    }
    
    .report-popup-container {
        padding: 0.8rem;
    }
    
    .report-popup-header {
        margin-bottom: 0.8rem;
        padding-bottom: 0.6rem;
    }
    
    .report-popup-title h3 {
        font-size: 0.9rem;
    }
    
    .report-subtitle {
        font-size: 0.65rem;
    }
    
    .report-popup-close {
        font-size: 1.1rem;
    }
    
    .report-popup-body {
        margin-bottom: 0.8rem;
    }
    
    .report-options {
        gap: 0.6rem;
        margin-bottom: 0.8rem;
    }
    
    .report-option-item {
        padding: 0.6rem;
        gap: 0.5rem;
    }
    
    .report-option-item input[type="radio"] {
        width: 0.9rem;
        height: 0.9rem;
        margin-top: 0.15rem;
    }
    
    .report-option-text {
        font-size: 0.7rem;
        line-height: 1.4;
    }
    
    .report-tips {
        font-size: 0.65rem;
        margin-bottom: 0.6rem;
    }
    
    .report-textarea {
        min-height: 5rem;
        padding: 0.5rem;
        font-size: 0.7rem;
    }
    
    .report-popup-footer {
        gap: 0.6rem;
    }
    
    .report-popup-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
        min-width: 5rem;
    }
}

/* 移动端适配 */
@media (max-width: 960px) {
    .report-popup-container {
        padding: 1.2rem;
    }
    
    .report-popup-title h3 {
        font-size: 1.8rem;
    }
    
    .report-subtitle {
        font-size: 1rem;
    }
    
    .report-option-text,
    .report-tips {
        font-size: 1.1rem;
    }
    
    .report-textarea {
        min-height: 6rem;
        font-size: 1.1rem;
    }
    
    .report-btn {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
        min-width: 6rem;
    }
    .report-textarea-count{
        font-size: 0.88rem;
    }
}
