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

body {
    font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

/* 顶部导航栏样式 */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header .back-button {
    padding: 0;
    background-color: transparent;
    border-bottom: none;
    margin-right: 10px;
}

.header .back-button i {
    font-size: 20px;
    color: white;
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.location i {
    margin-right: 5px;
}

.search-box {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 5px 15px;
    margin: 0 15px;
}

.search-box i {
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.header-actions {
    display: flex;
    align-items: center;
}

.header-actions i {
    margin-left: 20px;
    font-size: 18px;
    cursor: pointer;
}

/* 主要内容区域样式 */
.main-content {
    padding-bottom: 70px; /* 为底部导航栏预留空间 */
}

/* 横幅区域样式 */
.banner {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

/* 功能图标按钮区域样式 */
.function-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px;
    background-color: white;
    margin-bottom: 10px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.icon-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e8f5e9;
    color: #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.icon-item:hover i {
    background-color: #c8e6c9;
    transform: scale(1.1);
}

.icon-item span {
    font-size: 12px;
    color: #555;
}

/* 通用区域头部样式 */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: white;
    border-bottom: 1px solid #f0f0f0;
}

.section-header h2 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.section-header .more {
    color: #888;
    text-decoration: none;
    font-size: 14px;
}

/* 信息发布功能区域样式 */
.info-section {
    background-color: white;
    margin-bottom: 10px;
}

.info-list {
    padding: 0 15px 15px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e3f2fd;
    color: #2196F3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #333;
}

.info-content .info-time {
    font-size: 12px;
    color: #888;
}

/* 图文新闻区域样式 */
.news-section {
    background-color: white;
    margin-bottom: 10px;
}

.news-list {
    padding: 0 15px 15px;
}

.news-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.news-item:hover {
    background-color: #f5f5f5;
}

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

.news-image {
    width: 100px;
    height: 80px;
    margin-right: 12px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}

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

.news-content {
    flex: 1;
    min-width: 0;
}

.news-content h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #333;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-time {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
    display: block;
}

.news-summary {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 会议标签页样式 */
.meeting-tabs {
    display: flex;
    background-color: white;
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    overflow-x: auto;
}

.meeting-tabs::-webkit-scrollbar {
    display: none;
}

.tab-item {
    flex: 1;
    min-width: 80px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.tab-item.active {
    color: #4CAF50;
    border-bottom-color: #4CAF50;
    font-weight: 500;
}

.tab-item:hover {
    background-color: #f5f5f5;
}

/* 会议管理区域样式 */
.meeting-section {
    background-color: white;
    margin-bottom: 10px;
}

.meeting-list {
    padding: 0 15px 15px;
}

.meeting-list.active {
    display: block;
}

.meeting-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.meeting-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff3e0;
    color: #FF9800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}

.meeting-content {
    flex: 1;
}

.meeting-content h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #333;
}

.meeting-content .meeting-time,
.meeting-content .meeting-location {
    font-size: 12px;
    color: #888;
    margin-bottom: 2px;
}

.meeting-status {
    display: flex;
    align-items: flex-start;
}

.status-upcoming {
    background-color: #ffebee;
    color: #f44336;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.status-normal {
    background-color: #e8f5e9;
    color: #4CAF50;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.status-past {
    background-color: #f5f5f5;
    color: #888;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

/* 统计数据区域样式 */
.statistics-section {
    background-color: white;
    margin-bottom: 10px;
}

/* 统计卡片网格 */
.statistics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
}

/* 统计卡片样式 */
.statistic-card {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.statistic-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 统计图标 */
.statistic-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e3f2fd;
    color: #2196F3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 4px;
}

/* 统计内容 */
.statistic-content {
    flex: 1;
}

.statistic-number {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.statistic-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-bottom: 6px;
}

.statistic-description {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
}

/* 图表区域 */
.chart-section {
    padding: 0 15px 15px;
    margin-bottom: 20px;
}

.chart-header {
    margin-bottom: 15px;
}

.chart-header h3 {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* 图表容器 */
.chart-container {
    height: 200px;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
}

/* 饼状图样式 */
.pie-chart-container {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.pie-chart {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
}

.pie-slice {
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 50%);
    transform-origin: 50% 50%;
}

.slice-1 {
    background-color: #4CAF50;
    transform: rotate(0deg) skewY(0deg);
    clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 100%, 50% 100%);
}

.slice-2 {
    background-color: #2196F3;
    transform: rotate(135deg);
    clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 50%);
}

.slice-3 {
    background-color: #FF9800;
    transform: rotate(360deg) skewY(-90deg);
    clip-path: polygon(50% 50%, 50% 0%, 100% 0%);
}

.slice-4 {
    background-color: #F44336;
    transform: rotate(360deg) skewY(-85deg);
    clip-path: polygon(50% 50%, 50% 0%, 100% 0%);
}

.slice-5 {
    background-color: #9C27B0;
    transform: rotate(360deg) skewY(-80deg);
    clip-path: polygon(50% 50%, 50% 0%, 100% 0%);
}

.pie-center {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
}

.pie-legend {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.color-1 { background-color: #4CAF50; }
.color-2 { background-color: #2196F3; }
.color-3 { background-color: #FF9800; }
.color-4 { background-color: #F44336; }
.color-5 { background-color: #9C27B0; }

.legend-text {
    font-size: 12px;
    color: #666;
}

/* 曲线图样式 */
.line-chart-container {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.line-chart svg {
    width: 100%;
    height: 100%;
}

/* 柱状图容器 */
.chart-bar-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    width: 100%;
    height: 100%;
}

/* 柱状图样式 */
.chart-bar {
    flex: 1;
    margin: 0 8px;
    background-color: #4CAF50;
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.chart-bar:hover {
    background-color: #45a049;
    transform: scaleY(1.05);
}

/* 柱状图标签 */
.chart-bar-label {
    position: absolute;
    bottom: -25px;
    font-size: 12px;
    color: #666;
}

/* 投票系统区域样式 */
.voting-section {
    background-color: white;
    margin-bottom: 10px;
}

/* 投票类型筛选区样式 */
.voting-filter {
    display: flex;
    overflow-x: auto;
    padding: 10px 15px;
    background-color: white;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 15px;
}

.voting-filter::-webkit-scrollbar {
    display: none;
}

.voting-filter span {
    padding: 6px 12px;
    margin-right: 10px;
    background-color: #f5f5f5;
    border-radius: 15px;
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.voting-filter span.active {
    background-color: #4CAF50;
    color: white;
}

.voting-list {
    padding: 0 15px 15px;
}

.voting-item {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.voting-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.voting-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f3e5f5;
    color: #9C27B0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}

.voting-content {
    flex: 1;
}

.voting-content h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #333;
}

.voting-content .voting-type {
    font-size: 12px;
    color: #FF9800;
    margin-bottom: 2px;
    font-weight: 500;
}

.voting-content .voting-deadline {
    font-size: 12px;
    color: #888;
}

/* 投票状态样式 */
.voting-status {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 500;
    margin-top: 5px;
    display: inline-block;
}

.voting-status.active {
    background-color: #e8f5e9;
    color: #4CAF50;
}

.voting-status.ended {
    background-color: #f5f5f5;
    color: #888;
}

/* 投票规则和结果样式 */
.voting-rule {
    font-size: 12px;
    color: #888;
    margin-top: 3px;
    line-height: 1.4;
}

.voting-result {
    font-size: 12px;
    color: #4CAF50;
    margin-top: 3px;
    font-weight: 500;
}

.voting-progress {
    margin-top: 10px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress {
    height: 100%;
    background-color: #4CAF50;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 12px;
    color: #666;
    text-align: right;
}

/* 页面标题样式 */
.page-title {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.page-title .title-content {
    display: flex;
    align-items: center;
}

.page-title .title-icon {
    font-size: 20px;
    color: #4CAF50;
    margin-right: 10px;
    background-color: #e8f5e9;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-title h1 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* 财务查询区域样式 */
.finance-overview {
    background-color: white;
    margin-bottom: 10px;
}

.finance-section {
    background-color: white;
    margin-bottom: 10px;
}

.finance-summary {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
}

.finance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.finance-label {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

.finance-value {
    font-size: 18px;
    font-weight: 600;
    color: #4CAF50;
}

/* 财务类型筛选区样式 */
.finance-filters {
    display: flex;
    overflow-x: auto;
    padding: 10px 15px;
    background-color: white;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 10px;
}

.finance-filters::-webkit-scrollbar {
    display: none;
}

.finance-filters .filter-item {
    padding: 6px 12px;
    margin-right: 10px;
    background-color: #f5f5f5;
    border-radius: 15px;
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.finance-filters .filter-item.active {
    background-color: #4CAF50;
    color: white;
}

/* 财务记录列表样式 */
.finance-list {
    padding: 0 15px 15px;
}

.finance-list .finance-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.finance-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e3f2fd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}

.finance-content {
    flex: 1;
}

.finance-content h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #333;
}

.finance-time, .finance-type {
    font-size: 12px;
    color: #888;
    margin-bottom: 2px;
}

.finance-amount {
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.amount-in {
    color: #4CAF50;
}

.amount-out {
    color: #f44336;
}

/* 财务报表样式 */
.finance-reports {
    padding: 0 15px 15px;
}

.report-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}

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

.report-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff3e0;
    color: #FF9800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}

.report-content {
    flex: 1;
}

.report-content h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #333;
}

.report-date {
    font-size: 12px;
    color: #888;
}

.report-action {
    color: #4CAF50;
    font-size: 18px;
}

/* 选举页面样式 */
.election-section {
    background-color: white;
    margin-bottom: 10px;
}

.election-notice {
    padding: 15px;
    background-color: #f0fff4;
    border-left: 4px solid #4CAF50;
    margin-bottom: 10px;
}

.election-notice h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1b5e20;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.election-notice h3 i {
    margin-right: 8px;
    font-size: 18px;
}

.election-notice p {
    font-size: 14px;
    color: #2e7d32;
    line-height: 1.5;
    margin-bottom: 10px;
}

.election-notice .notice-date {
    font-size: 12px;
    color: #66bb6a;
    font-style: italic;
}

.announcement-list {
    padding: 0 15px 15px;
}

.announcement-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

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

.announcement-item:hover {
    background-color: #fafafa;
}

.announcement-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #e8f5e9;
    color: #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}

.announcement-content {
    flex: 1;
}

.announcement-content h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #333;
    line-height: 1.4;
}

.announcement-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.announcement-date {
    font-size: 12px;
    color: #888;
}

.status {
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status.upcoming {
    background-color: #e3f2fd;
    color: #1976d2;
}

.status.active {
    background-color: #e8f5e9;
    color: #4CAF50;
}

.status.completed {
    background-color: #f5f5f5;
    color: #666;
}

.announcement-preview {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.announcement-item:last-child {
    margin-bottom: 0;
}

/* 文本颜色样式 */
.text-success {
    color: #4CAF50;
}

.text-danger {
    color: #f44336;
}

/* 底部导航栏样式 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #888;
    padding: 5px 10px;
}

.nav-item i {
    font-size: 20px;
    margin-bottom: 3px;
}

.nav-item span {
    font-size: 10px;
}

.nav-item.active {
    color: #4CAF50;
}

.nav-item.add-post {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #4CAF50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.5);
}

.nav-item.add-post i {
    font-size: 24px;
    margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 320px) {
    .search-box {
        margin: 0 10px;
    }
    
    .function-icons {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        padding: 15px;
    }
    
    .icon-item i {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    body {
        max-width: 768px;
        margin: 0 auto;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .header {
        width: 100%;
        margin: 0;
    }
    
    .bottom-nav {
        width: 100%;
        margin: 0;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header,
.info-item,
.meeting-item,
.voting-item {
    animation: fadeIn 0.3s ease-in;
}

/* 加载状态样式 */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #4CAF50;
}

.loading i {
    margin-right: 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 空状态样式 */
.empty-state {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    color: #888;
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ddd;
}

.empty-state p {
    font-size: 14px;
}

/* 反馈页面专用样式 */
/* 反馈区域样式 */
.feedback-section {
    background-color: white;
    margin-bottom: 10px;
}

/* 反馈区域头部样式 */
.feedback-section .section-header {
    border-bottom: none;
}

/* 新增反馈按钮样式 */
.add-feedback-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 15px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.add-feedback-btn i {
    margin-right: 5px;
}

.add-feedback-btn:hover {
    background-color: #45a049;
}

/* 反馈状态筛选样式 */
.feedback-filters {
    display: flex;
    overflow-x: auto;
    background-color: white;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.filter-item {
    flex-shrink: 0;
    padding: 8px 15px;
    margin-right: 10px;
    background-color: #f5f5f5;
    border-radius: 15px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-item.active {
    background-color: #4CAF50;
    color: white;
}

.filter-item:hover {
    background-color: #e0e0e0;
}

.filter-item.active:hover {
    background-color: #45a049;
}

/* 反馈列表样式 */
.feedback-list {
    padding: 0 15px;
}

/* 反馈项样式 */
.feedback-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

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

.feedback-item:hover {
    background-color: #fafafa;
}

/* 反馈图标样式 */
.feedback-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e3f2fd;
    color: #2196F3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}

/* 反馈内容样式 */
.feedback-content {
    flex: 1;
}

.feedback-content h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.feedback-time {
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
    display: inline-block;
    margin-right: 10px;
}

/* 反馈状态样式 */
.feedback-status {
    display: inline-block;
}

.status-pending {
    background-color: #fff3e0;
    color: #FF9800;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.status-processing {
    background-color: #e3f2fd;
    color: #2196F3;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.status-resolved {
    background-color: #e8f5e9;
    color: #4CAF50;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.status-closed {
    background-color: #f5f5f5;
    color: #9e9e9e;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.feedback-preview {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
    line-height: 1.4;
}

/* 反馈操作样式 */
.feedback-action {
    color: #ccc;
    font-size: 18px;
    margin-left: 10px;
    display: flex;
    align-items: center;
}