/* 应用组件样式 */

/* 顶部导航栏 */
.app-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1890ff 0%, #00b0ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.user-role {
    font-size: 12px;
    color: #b0bec5;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.current-date {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.current-date i {
    color: #1890ff;
    font-size: 14px;
}

.current-date span {
    font-size: 12px;
    color: #b0bec5;
}

.header-btn {
    background: none;
    border: none;
    color: #b0bec5;
    font-size: 18px;
    padding: 8px;
    position: relative;
    cursor: pointer;
    transition: color 0.3s;
}

.header-btn:hover {
    color: white;
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
    height: 18px;
    background: #ff4d4f;
    color: white;
    font-size: 10px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(25%, -25%);
}

/* 主内容区域 */
.app-main {
    min-height: calc(100vh - 120px);
    padding: 20px;
    background: #0f172a;
}

.content-page {
    display: none;
    animation: fadeIn 0.3s ease;
}

.content-page.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 底部导航栏 */
.bottom-nav {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    position: sticky;
    bottom: 0;
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #64748b;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.nav-item i {
    font-size: 20px;
    transition: all 0.3s;
}

.nav-item span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.nav-item:hover {
    color: #b0bec5;
    background: rgba(255, 255, 255, 0.05);
}

.nav-item.active {
    color: #1890ff;
    background: rgba(24, 144, 255, 0.1);
}

.nav-item.active i {
    transform: translateY(-2px);
}

/* 打卡页面样式 */
.clock-container {
    max-width: 600px;
    margin: 0 auto;
}

/* 时间显示 */
.current-time-display {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.current-time-display .time {
    font-family: 'Courier New', monospace;
    font-size: 48px;
    font-weight: 700;
    color: #1890ff;
    text-shadow: 0 0 10px rgba(24, 144, 255, 0.5);
    margin-bottom: 8px;
}

.current-time-display .date {
    color: #b0bec5;
    font-size: 14px;
    letter-spacing: 1px;
}

/* 打卡按钮区域 */
.clock-circle-container {
    text-align: center;
    margin: 40px 0;
}

.clock-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1890ff 0%, #00b0ff 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 
        0 0 30px rgba(24, 144, 255, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.clock-circle::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: rotate 4s linear infinite;
}

.clock-circle:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 40px rgba(24, 144, 255, 0.7),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
}

.clock-circle:active {
    transform: scale(0.98);
}

.clock-circle.clocked-in {
    background: linear-gradient(135deg, #52c41a 0%, #73d13d 100%);
    box-shadow: 0 0 30px rgba(82, 196, 26, 0.5);
}

.clock-circle.clocked-out {
    background: linear-gradient(135deg, #8c8c8c 0%, #bfbfbf 100%);
    box-shadow: 0 0 30px rgba(140, 140, 140, 0.5);
    cursor: not-allowed;
}

.clock-icon {
    font-size: 48px;
    margin-bottom: 12px;
    z-index: 1;
}

.clock-status {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    z-index: 1;
}

.clock-time {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    z-index: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 今日统计 */
.today-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: #1890ff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(24, 144, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1890ff;
}

.stat-content {
    flex: 1;
}

.stat-title {
    font-size: 12px;
    color: #b0bec5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

/* 今日打卡记录 */
.today-record {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.record-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.record-item:last-child {
    border-bottom: none;
}

.record-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b0bec5;
    font-size: 14px;
}

.record-label i {
    width: 24px;
    color: #64748b;
}

.record-value {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-normal {
    background: rgba(0, 200, 83, 0.1);
    color: #00c853;
    border: 1px solid rgba(0, 200, 83, 0.3);
}

.status-late {
    background: rgba(255, 171, 0, 0.1);
    color: #ffab00;
    border: 1px solid rgba(255, 171, 0, 0.3);
}

.status-early-leave {
    background: rgba(255, 171, 0, 0.1);
    color: #ffab00;
    border: 1px solid rgba(255, 171, 0, 0.3);
}

.status-absence {
    background: rgba(255, 23, 68, 0.1);
    color: #ff1744;
    border: 1px solid rgba(255, 23, 68, 0.3);
}

/* 薪资页面样式 */
.salary-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 月份选择器 */
.month-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 16px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.month-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #b0bec5;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.month-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: #1890ff;
}

.current-month {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.current-month i {
    color: #1890ff;
    font-size: 20px;
}

/* 统计卡片网格 */
.summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.summary-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0.8;
}

.summary-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.card-primary::before {
    background: linear-gradient(90deg, #1890ff 0%, #00b0ff 100%);
}

.card-success::before {
    background: linear-gradient(90deg, #00c853 0%, #64dd17 100%);
}

.card-warning::before {
    background: linear-gradient(90deg, #faad14 0%, #ffc53d 100%);
}

.card-danger::before {
    background: linear-gradient(90deg, #ff4d4f 0%, #ff7875 100%);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.card-primary .card-icon {
    background: rgba(24, 144, 255, 0.1);
    color: #1890ff;
}

.card-success .card-icon {
    background: rgba(0, 200, 83, 0.1);
    color: #00c853;
}

.card-warning .card-icon {
    background: rgba(250, 173, 20, 0.1);
    color: #faad14;
}

.card-danger .card-icon {
    background: rgba(255, 77, 79, 0.1);
    color: #ff4d4f;
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 12px;
    color: #b0bec5;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.card-value {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

/* 工资预估卡片 */
.salary-estimate {
    margin-bottom: 30px;
}

.estimate-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.estimate-content {
    max-width: 400px;
    margin: 0 auto;
}

.estimate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: #b0bec5;
    font-size: 14px;
}

.estimate-item.total {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.estimate-value {
    font-weight: 600;
    color: white;
}

.total-value {
    font-size: 24px;
    color: #1890ff;
}

.estimate-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    margin: 16px 0;
}

/* 工资明细 */
.salary-details {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.detail-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b0bec5;
    font-size: 14px;
}

.detail-label i {
    width: 24px;
    color: #64748b;
}

.detail-value {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

/* 补贴页面样式 */
.subsidy-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 补贴统计卡片 */
.subsidy-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.subsidy-stat-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.subsidy-stat-card:hover {
    transform: translateY(-2px);
    border-color: #1890ff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.stat-icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(24, 144, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: #1890ff;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #b0bec5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 补贴筛选器 */
.subsidy-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.filter-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #b0bec5;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.filter-btn.active {
    background: rgba(24, 144, 255, 0.1);
    border-color: #1890ff;
    color: #1890ff;
}

/* 补贴列表 */
.subsidy-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.subsidy-item {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.subsidy-item:hover {
    transform: translateY(-2px);
    border-color: #1890ff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.subsidy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.subsidy-type .type-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(24, 144, 255, 0.1);
    border: 1px solid rgba(24, 144, 255, 0.3);
    border-radius: 20px;
    color: #1890ff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.amount-value {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.subsidy-body {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subsidy-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0bec5;
    font-size: 13px;
}

.info-item i {
    width: 16px;
    color: #64748b;
}

.subsidy-footer {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subsidy-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 12px;
}

/* 统计页面样式 */
.statistics-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 时间范围选择器 */
.time-range-selector {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.time-range-btn {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #b0bec5;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.time-range-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.time-range-btn.active {
    background: rgba(24, 144, 255, 0.1);
    border-color: #1890ff;
    color: #1890ff;
}

/* 年份选择器 */
.year-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 16px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.year-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #b0bec5;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.year-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: #1890ff;
}

.current-year {
    font-size: 18px;
    font-weight: 600;
    color: white;
    min-width: 100px;
    text-align: center;
}

/* 统计图表容器 */
.chart-wrapper {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    height: 400px;
    position: relative;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.chart-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.chart-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chart-type-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    padding: 6px 12px;
    font-size: 13px;
}

.chart-canvas-container {
    height: calc(100% - 60px);
    position: relative;
}

/* 统计表格 */
.stats-table-container {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow-x: auto;
}

.stats-table {
    width: 100%;
    min-width: 600px;
}

.stats-table th {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.stats-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* 我的页面样式 */
.profile-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 个人资料卡片 */
.profile-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 768px) {
    .profile-card {
        flex-direction: column;
        text-align: center;
    }
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1890ff 0%, #00b0ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    overflow: hidden;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 16px;
}

.profile-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0bec5;
    font-size: 14px;
}

.profile-meta-item i {
    color: #64748b;
}

.profile-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* 统计网格 */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-2px);
    border-color: #1890ff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.stat-item i {
    font-size: 32px;
    color: #1890ff;
    margin-bottom: 12px;
}

.stat-item h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 12px;
    color: #b0bec5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 设置区域 */
.settings-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.settings-section h2 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.settings-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.setting-info {
    flex: 1;
}

.setting-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.setting-desc {
    font-size: 12px;
    color: #b0bec5;
}

/* 帮助链接 */
.help-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: #b0bec5;
    transition: all 0.3s;
}

.help-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #1890ff;
    color: white;
}

.help-link i {
    font-size: 24px;
    color: #1890ff;
}

.help-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.help-content p {
    font-size: 12px;
    color: #b0bec5;
    margin: 0;
}

/* 退出按钮 */
.logout-section {
    text-align: center;
    padding: 30px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .app-main {
        padding: 16px;
    }
    
    .bottom-nav {
        padding: 8px 0;
    }
    
    .nav-item {
        padding: 6px 8px;
    }
    
    .nav-item i {
        font-size: 18px;
    }
    
    .nav-item span {
        font-size: 9px;
    }
    
    .clock-circle {
        width: 160px;
        height: 160px;
    }
    
    .clock-icon {
        font-size: 36px;
    }
    
    .clock-status {
        font-size: 16px;
    }
    
    .today-stats {
        grid-template-columns: 1fr;
    }
    
    .summary-cards {
        grid-template-columns: 1fr;
    }
    
    .subsidy-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .app-header {
        padding: 12px 16px;
    }
    
    .user-name {
        font-size: 13px;
    }
    
    .user-role {
        font-size: 11px;
    }
    
    .current-date span {
        display: none;
    }
    
    .subsidy-stats {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .help-links {
        grid-template-columns: 1fr;
    }
}