/**
 * 登录反馈弹窗组件样式
 */

.login-feedback-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.login-feedback-modal {
    width: 640px;
    height: 358px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(100px);
    border-radius: 16px;
    box-shadow: 0px 4px 24px 0px rgba(136, 104, 87, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
    transition: all 0.3s ease-out;
}

.login-feedback-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px 0 24px;
    height: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.login-feedback-modal-title {
    font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: #1D2129;
    margin: 0;
}

.login-feedback-close-button {
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.04);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.login-feedback-close-button:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: scale(1.05);
}

.login-feedback-close-icon {
    width: 16px;
    height: 16px;
    stroke: #86909C;
    stroke-width: 1.33px;
}

.login-feedback-modal-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    gap: 24px;
}

.login-feedback-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 600px;
}

.login-feedback-icon-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.login-feedback-warning-icon {
    width: 88.53px;
    height: 98.75px;
}

.login-feedback-description-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 535px;
}

.login-feedback-main-title {
    font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: #1D2129;
    text-align: center;
}

.login-feedback-sub-title {
    font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #4E5969;
    text-align: center;
}

.login-feedback-modal-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.login-feedback-btn {
    font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 16px;
    height: 32px;
    border-radius: 16px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.login-feedback-btn-secondary {
    background: rgba(255, 255, 255, 0.85);
    color: #4E5969;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.login-feedback-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

.login-feedback-btn-primary {
    background: #FF8200;
    color: #FFFFFF;
}

.login-feedback-btn-primary:hover {
    background: #e67300;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 130, 0, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .login-feedback-modal {
        width: 90%;
        max-width: 480px;
        height: auto;
        min-height: 300px;
    }

    .login-feedback-content-wrapper,
    .login-feedback-description-section {
        width: 100%;
    }

    .login-feedback-modal-footer {
        flex-direction: column;
        gap: 12px;
    }

    .login-feedback-btn {
        width: 100%;
    }
} 