/* 重置默认样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
    /* min-height: 100vh; */
    /* padding: 20px; */
}

/* 容器样式 */
.container {
    width: 100%;
	
    /* max-width: 400px; */
}

/* 投诉弹窗样式 */
.complaint-modal {
    background-color: #ffffff;
    /* border-radius: 12px; */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    width: 100%;
}

/* 页面标题样式 */
.header {
    padding: 20px 20px 16px 20px;
    /* border-bottom: 1px solid #f5f5f5; */
	background-color: #f8f9fa;
	border-bottom: 1px solid #e9ecef;
}

.header h2 {
    font-size: 14px;
    font-weight: 500;
    color: #777777;
    line-height: 1.4;
    margin: 0;
}

/* 投诉列表样式 */
.complaint-list {
    padding: 0;
    font-size: 16px;
    color: #303133;
}

/* 投诉项目样式 */
.complaint-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s ease;
    min-height: 52px;
}

.complaint-item:last-child {
    border-bottom: none;
}

.complaint-item:hover {
    background-color: #f8f9fa;
}

.complaint-item:active {
    background-color: #e9ecef;
}

/* 投诉原因文字样式 */
.reason-text {
    font-size: 15px;
    color: #333333;
    line-height: 1.4;
    flex: 1;
}

/* 右箭头样式 */
.chevron {
    font-size: 14px;
    color: #999999;
    font-weight: 300;
    margin-left: 12px;
}

/* 底部样式 */
.footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
	/* border-top: 1px solid #e9ecef; */
	background-color: #f8f9fa;
    font-size: 14px;
    color: #2B85E4;
	}


/* 投诉须知链接样式 */
.complaint-notice {
    color: #007aff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.complaint-notice:hover {
    color: #0056cc;
}

.complaint-notice:active {
    color: #004499;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .container {
        max-width: 100%;
        /* margin: 0 16px; */
    }
    
    .complaint-modal {
        border-radius: 8px;
    }
    
    .header {
        padding: 16px 16px 12px 16px;
    }
    
    .complaint-item {
        padding: 14px 16px;
        min-height: 48px;
    }
    
    .footer {
        padding: 16px;
    }
}

/* 选中状态样式 */
.complaint-item.selected {
    background-color: #e3f2fd;
}

.complaint-item.selected .reason-text {
    color: #1976d2;
}

.complaint-item.selected .chevron {
    color: #1976d2;
}
