* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.phone-container {
    width: 375px;
    height: 812px;
    background: #000;
    border-radius: 40px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.status-bar {
    height: 44px;
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.status-left {
    display: flex;
    align-items: center;
}

.status-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

.battery {
    width: 25px;
    height: 12px;
    border: 1px solid #fff;
    border-radius: 2px;
    position: relative;
}

.battery::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 3px;
    width: 2px;
    height: 6px;
    background: #fff;
    border-radius: 0 1px 1px 0;
}

.battery-level {
    height: 100%;
    width: 80%;
    background: #fff;
    border-radius: 1px;
}

.main-content {
    flex: 1;
    background: #f5f5f5;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

/* 顶部导航栏 */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 5px;
}

.nav-back {
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-back:hover {
    background: rgba(102, 126, 234, 0.1);
}

.back-icon {
    font-size: 20px;
    color: #667eea;
    font-weight: 600;
}

.nav-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.action-btn {
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 20px;
    background: #667eea;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #5a6fd8;
    transform: translateY(-1px);
}

.action-btn.checkin {
    background: #667eea;
}

.action-btn.leave {
    background: #ffc107;
    color: #333;
}

.action-btn.complete {
    background: #dc3545;
}

.action-btn.completed {
    background: #28a745;
}

/* 工单基本信息 */
.order-basic-info {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.order-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.order-status {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.order-status.pending {
    background: #fff3cd;
    color: #856404;
}

.order-status.in-progress {
    background: #667eea;
    color: #fff;
    padding: 6px 12px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
    white-space: nowrap;
}

.order-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-item.full-width {
    grid-column: 1 / -1;
}

.label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.value {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.phone-number {
    color: #667eea;
    cursor: pointer;
    text-decoration: underline;
}

.location {
    color: #667eea;
    cursor: pointer;
    text-decoration: underline;
}

/* Tab切换样式 */
.tab-container {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tab-header {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.tab-header .tab-item {
    flex: 1;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    white-space: nowrap;
}

.tab-header .tab-item.active {
    color: #667eea;
    border-bottom-color: #667eea;
    background: #fff;
}

.tab-content {
    display: none;
    padding: 20px;
}

.tab-content.active {
    display: block;
}

/* 通用容器样式 */
.section-container {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.section-count {
    font-size: 14px;
    color: #666;
}

/* 工序清单 */
.process-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.process-item {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

.process-item.level-1 {
    background: #f8f9fa;
}

.process-item.level-2 {
    background: #fff;
    margin-left: 20px;
    margin-top: 8px;
}

.process-item.level-3 {
    background: #fff;
    margin-left: 20px;
    margin-top: 8px;
}

.process-item.level-3 .process-header {
    cursor: default;
}

.process-item.level-2:not(.has-children) .process-header {
    cursor: default;
}

.process-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.process-header .process-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.process-header .process-requirements {
    display: flex;
    gap: 8px;
    margin-left: 8px;
}

.process-header .process-status {
    margin-left: 8px;
}

/* 最后一层级工序头部样式 */
.process-item.level-3 .process-header,
.process-item.level-2:not(.has-children) .process-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    transition: all 0.3s ease;
}

.process-item.level-3 .process-header .process-info,
.process-item.level-2:not(.has-children) .process-header .process-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.process-item.level-3 .process-header .process-requirements,
.process-item.level-2:not(.has-children) .process-header .process-requirements {
    display: flex;
    gap: 8px;
    margin-left: 8px;
}

.process-item.level-3 .process-header .process-status,
.process-item.level-2:not(.has-children) .process-header .process-status {
    margin-left: 8px;
}

.process-header:hover {
    background: rgba(102, 126, 234, 0.05);
}

.process-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.process-icon {
    font-size: 18px;
}

.process-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.process-arrow {
    font-size: 12px;
    color: #666;
    transition: transform 0.3s ease;
}

.process-arrow.rotated {
    transform: rotate(180deg);
}

.process-content {
    display: none;
    border-top: 1px solid #e9ecef;
}

.process-content.show {
    display: block;
}

.process-requirements {
    display: flex;
    gap: 8px;
}

.requirement {
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 500;
}

.requirement.must-complete {
    background: #d4edda;
    color: #155724;
}

.requirement.must-photo {
    background: #d1ecf1;
    color: #0c5460;
}

.requirement.optional {
    background: #e9ecef;
    color: #666;
}

.process-description {
    padding: 16px;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    background: #f8f9fa;
}

.process-status {
    margin-left: 8px;
}

.process-actions {
    padding: 12px 16px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

/* 工序状态徽章样式 */
.process-status .status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
}

.process-status .status-badge.completed {
    background: #d4edda;
    color: #155724;
}

.process-status .status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

/* 工序操作按钮样式 */
.process-actions .btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.process-actions .btn-primary {
    background: #667eea;
    color: #fff;
}

.process-actions .btn-primary:hover {
    background: #5a6fd8;
}

.process-actions .btn-secondary {
    background: #f8f9fa;
    color: #667eea;
    border: 1px solid #667eea;
}

.process-actions .btn-secondary:hover {
    background: #e9ecef;
}

/* 移动端按钮优化 */
@media (max-width: 400px) {
    .process-actions .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .process-actions {
        padding: 16px;
        gap: 12px;
    }
}

/* 底部菜单样式 */
.bottom-menu {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e9ecef;
    display: flex;
    padding: 8px 0;
    z-index: 1000;
    border-radius: 0 0 32px 32px;
}

.bottom-menu .menu-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bottom-menu .menu-item.active {
    color: #667eea;
}

.bottom-menu .menu-item:not(.active) {
    color: #666;
}

.bottom-menu .menu-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.bottom-menu .menu-text {
    font-size: 10px;
    font-weight: 500;
}

/* 调整主内容区域，为底部菜单留出空间 */
/* .phone-screen {
    padding-bottom: 80px;
} */

/* 功能入口样式 */
.function-entries {
    padding: 16px 16px 32px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.entry-item {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
}

.entry-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.entry-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 12px;
    flex-shrink: 0;
}

.entry-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.entry-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.entry-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.entry-arrow {
    font-size: 18px;
    color: #ccc;
    font-weight: 300;
}

/* 跟进页面样式 */
.follow-up-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
}

.follow-up-item {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.follow-up-header {
    margin-bottom: 12px;
}

.publisher-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.publisher-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.publisher-role {
    background: #667eea;
    color: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.publish-time {
    font-size: 12px;
    color: #666;
    margin-left: auto;
}

.follow-up-content {
    margin-bottom: 12px;
}

.content-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
}

.content-images {
    margin-top: 8px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
    max-width: 100%;
}

.content-image {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.content-image:hover {
    transform: scale(1.05);
}

.reply-content {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    margin-top: 12px;
    border-left: 3px solid #667eea;
}

.reply-header {
    margin-bottom: 8px;
}

.reply-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.reply-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.reply-role {
    background: #28a745;
    color: #fff;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 500;
}

.reply-time {
    font-size: 11px;
    color: #666;
    margin-left: auto;
}

.reply-text {
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 8px;
}

.reply-images {
    margin-top: 8px;
}

/* 发布页面样式 */
.publish-form {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-section {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.content-input {
    width: 100%;
    min-height: 120px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    font-family: inherit;
}

.content-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.char-count {
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-top: 8px;
}

.current-count {
    color: #667eea;
    font-weight: 600;
}

.image-upload-area {
    margin-top: 12px;
}

.upload-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 8px;
}

.upload-item {
    aspect-ratio: 1;
    border: 2px dashed #ddd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.upload-item:hover {
    border-color: #667eea;
    background: #f0f2ff;
}

.upload-item.add-upload {
    border-style: dashed;
}

.upload-item.uploaded {
    border-style: solid;
    border-color: #667eea;
    background: #fff;
    position: relative;
}

.upload-icon {
    font-size: 24px;
    margin-bottom: 4px;
    color: #666;
}

.upload-text {
    font-size: 12px;
    color: #666;
}

.uploaded-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.remove-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: #ff4757;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.upload-tip {
    font-size: 12px;
    color: #666;
    text-align: center;
}

.setting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-info {
    flex: 1;
    margin-right: 16px;
}

.setting-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}

.setting-desc {
    display: block;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #667eea;
}

input:checked + .slider:before {
    transform: translateX(20px);
}

/* 设备清单 */
.equipment-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.equipment-item {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

.equipment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #f8f9fa;
}

.equipment-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.equipment-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.equipment-status.normal {
    background: #d4edda;
    color: #155724;
}

.equipment-status.warning {
    background: #fff3cd;
    color: #856404;
}

.equipment-status.uninstalled {
    background: #f8d7da;
    color: #721c24;
}

.equipment-details {
    padding: 16px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-row .label {
    color: #666;
    font-weight: 500;
}

.detail-row .value {
    color: #333;
    text-align: right;
}

.status-normal {
    color: #155724;
    font-weight: 500;
}

.status-warning {
    color: #856404;
    font-weight: 500;
}

.status-uninstalled {
    color: #721c24;
    font-weight: 500;
}

/* 人员信息 */
.personnel-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.personnel-item {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    background: #fff;
}

/* 移除头像相关样式 */

.personnel-info {
    flex: 1;
    min-width: 0;
}

.personnel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.personnel-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.personnel-role {
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 500;
}

.personnel-role.leader {
    background: #667eea;
    color: #fff;
}

.personnel-role.member {
    background: #e9ecef;
    color: #666;
}

.personnel-contact {
    margin-bottom: 8px;
}

.personnel-contact .phone-number {
    font-size: 14px;
    color: #667eea;
    cursor: pointer;
}

.personnel-status {
    display: flex;
    justify-content: flex-end;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 500;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.status-badge.confirmed {
    background: #d1ecf1;
    color: #0c5460;
}

.status-badge.checked-in {
    background: #d4edda;
    color: #155724;
}

.status-badge.left {
    background: #f8d7da;
    color: #721c24;
}

/* 打卡记录样式 */
.checkin-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkin-item {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.checkin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.checkin-type {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.checkin-type.confirmed {
    background: #d4edda;
    color: #155724;
}

.checkin-type.checked-in {
    background: #d1ecf1;
    color: #0c5460;
}

.checkin-type.left {
    background: #f8d7da;
    color: #721c24;
}

.type-icon {
    font-size: 14px;
}

.type-text {
    font-weight: 600;
}

.checkin-time {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.checkin-info {
    padding: 16px;
}

.checkin-person {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.checkin-person .label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.checkin-person .value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.role-badge {
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 500;
}

.role-badge.leader {
    background: #667eea;
    color: #fff;
}

.role-badge.member {
    background: #e9ecef;
    color: #666;
}

.checkin-remark {
    display: flex;
    gap: 8px;
}

.checkin-remark .label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
}

.checkin-remark .value {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    flex: 1;
}

/* 底部Tabbar */
.tabbar {
    height: 60px;
    background: #fff;
    border-top: 1px solid #e9ecef;
    display: flex;
    flex-shrink: 0;
}

.tabbar .tab-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #999;
}

.tabbar .tab-item.active {
    color: #667eea;
}

.tabbar .tab-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.tabbar .tab-text {
    font-size: 12px;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 400px) {
    .phone-container {
        width: 100%;
        height: 100vh;
        border-radius: 0;
        padding: 0;
    }
    
    .phone-screen {
        border-radius: 0;
    }
}

/* 滚动条样式 */
.main-content::-webkit-scrollbar {
    width: 4px;
}

.main-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.main-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

.main-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 自定义对话框样式 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-dialog {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    width: 300px;
    max-width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    text-align: center;
}

.modal-content {
    margin-bottom: 20px;
}

.modal-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
    box-sizing: border-box;
}

.modal-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.modal-buttons {
    display: flex;
    gap: 12px;
}

.modal-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn.primary {
    background: #667eea;
    color: #fff;
}

.modal-btn.primary:hover {
    background: #5a6fd8;
}

.modal-btn.secondary {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
}

.modal-btn.secondary:hover {
    background: #e9ecef;
}

/* 消息提醒红点 */
.message-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    min-width: 20px;
}

/* 跟进操作按钮 */
.follow-up-actions {
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
    margin-top: 10px;
}

.reply-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.reply-btn:hover {
    background: #0056b3;
}

/* 回复对话框 */
.reply-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.reply-dialog-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    max-height: 80%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.reply-dialog-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reply-dialog-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.reply-dialog-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.reply-dialog-body {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

.reply-textarea {
    width: 100%;
    min-height: 120px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    resize: vertical;
    margin-bottom: 15px;
}

.reply-textarea:focus {
    outline: none;
    border-color: #007bff;
}

.reply-image-upload {
    margin-bottom: 15px;
}

.reply-upload-btn {
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s;
}

.reply-upload-btn:hover {
    border-color: #007bff;
}

.reply-upload-icon {
    font-size: 24px;
    color: #999;
    margin-bottom: 8px;
}

.reply-upload-text {
    font-size: 14px;
    color: #666;
}

.reply-dialog-footer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 10px;
}

.reply-submit-btn {
    flex: 1;
    background: #007bff;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.reply-submit-btn:hover {
    background: #0056b3;
}

.reply-cancel-btn {
    flex: 1;
    background: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.reply-cancel-btn:hover {
    background: #e9ecef;
}

/* 个人中心页面样式 */
.profile-sections {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

/* 菜单分组样式 */
.menu-group {
    margin-bottom: 16px;
}

.menu-group-title {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
    padding-left: 4px;
}

/* 简洁菜单列表样式 */
.menu-list {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background-color: #f8f9fa;
}

.menu-icon {
    font-size: 20px;
    margin-right: 12px;
    width: 24px;
    text-align: center;
}

.menu-text {
    flex: 1;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.menu-arrow {
    font-size: 16px;
    color: #999;
    margin-left: 8px;
}

.menu-badge {
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-left: 8px;
    min-width: 20px;
}

.menu-value {
    font-size: 14px;
    color: #666;
    margin-left: 8px;
}

/* 退出登录按钮样式 */
.logout-section {
    margin-top: 16px;
}

.logout-btn {
    width: 100%;
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}

.logout-btn:hover {
    background: #e63946;
}

/* 工单转移页面样式 */
.tab-container {
    margin-bottom: 16px;
}

.tab-header {
    display: flex;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 16px;
}

.tab-header .tab-item {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.tab-header .tab-item.active {
    background: #007bff;
    color: white;
}

.tab-header .tab-text {
    font-size: 14px;
    font-weight: 500;
}

.tab-header .tab-count {
    font-size: 12px;
    opacity: 0.8;
}

/* 工单转移列表样式 */
.transfer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transfer-item {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s;
}

.transfer-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.transfer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.transfer-info {
    flex: 1;
}

.transfer-id {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.transfer-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.transfer-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.transfer-status.confirming {
    background: #fff3cd;
    color: #856404;
}

.transfer-status.transferred {
    background: #d4edda;
    color: #155724;
}

.transfer-status.rejected {
    background: #f8d7da;
    color: #721c24;
}

.transfer-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-row {
    display: flex;
    align-items: flex-start;
}

.detail-row .label {
    font-size: 14px;
    color: #666;
    min-width: 80px;
    margin-right: 8px;
}

.detail-row .value {
    font-size: 14px;
    color: #333;
    flex: 1;
}

/* 筛选区域样式 */
.filter-section {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.filter-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 120px;
}

.filter-item label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.filter-item select,
.filter-item input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: white;
}

.filter-item select:focus,
.filter-item input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* 工单转移详情页面样式 */
.transfer-basic-info {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.transfer-basic-info .transfer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.transfer-basic-info .transfer-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.transfer-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.transfer-info-grid .info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.transfer-info-grid .info-item.full-width {
    grid-column: 1 / -1;
}

.transfer-info-grid .label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.transfer-info-grid .value {
    font-size: 14px;
    color: #333;
}

.work-order-detail-info {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.work-order-detail-info .section-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.info-grid .info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-grid .info-item.full-width {
    grid-column: 1 / -1;
}

.info-grid .label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.info-grid .value {
    font-size: 14px;
    color: #333;
}

.action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.action-buttons .btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.action-buttons .btn-primary {
    background: #007bff;
    color: white;
}

.action-buttons .btn-primary:hover {
    background: #0056b3;
}

.action-buttons .btn-secondary {
    background: #6c757d;
    color: white;
}

.action-buttons .btn-secondary:hover {
    background: #545b62;
}

/* 拒绝转移对话框样式 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    max-height: 80%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.modal-close {
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #f8f9fa;
    color: #333;
}

.modal-body {
    padding: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.char-count {
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.modal-footer {
    display: flex;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid #e9ecef;
}

.modal-footer .btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-footer .btn-success {
    background: #28a745;
    color: white;
}

.modal-footer .btn-success:hover {
    background: #218838;
}

.modal-footer .btn-danger {
    background: #dc3545;
    color: white;
}

.modal-footer .btn-danger:hover {
    background: #c82333;
}

/* 操作按钮样式增强 */
.action-buttons .btn-success {
    background: #28a745;
    color: white;
}

.action-buttons .btn-success:hover {
    background: #218838;
}

.action-buttons .btn-danger {
    background: #dc3545;
    color: white;
}

.action-buttons .btn-danger:hover {
    background: #c82333;
}

/* 添加转移按钮样式 */
.add-transfer-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 9999;
}

.add-transfer-btn:hover {
    background: #0056b3;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.5);
}

/* 确保按钮在手机容器内正确显示 */
.phone-container .add-transfer-btn {
    position: absolute;
    bottom: 100px;
    right: 20px;
}

.add-icon {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

/* 新增转移页面样式 */
.transfer-form {
    padding: 16px;
}

.form-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.form-section .section-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    font-family: inherit;
}

.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* 工单信息卡片样式 */
.work-order-info {
    margin-bottom: 20px;
}

.info-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #e9ecef;
}

.info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.info-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.status-badge.processing {
    background: #d1ecf1;
    color: #0c5460;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
}

.detail-item .label {
    font-size: 12px;
    color: #666;
    min-width: 80px;
    margin-right: 8px;
}

.detail-item .value {
    font-size: 12px;
    color: #333;
    flex: 1;
}

/* 表单操作按钮样式 */
.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.form-actions .btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.form-actions .btn-primary {
    background: #007bff;
    color: white;
}

.form-actions .btn-primary:hover {
    background: #0056b3;
}

.form-actions .btn-secondary {
    background: #6c757d;
    color: white;
}

.form-actions .btn-secondary:hover {
    background: #545b62;
}

/* 工单跟进记录页面样式 */
.follow-up-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
}

.follow-up-item {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.follow-up-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.work-order-info {
    flex: 1;
}

.work-order-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.work-order-id {
    font-size: 12px;
    color: #666;
    margin-bottom: 2px;
}

.project-name {
    font-size: 12px;
    color: #999;
}

.sender-info {
    text-align: right;
}

.sender-role {
    font-size: 12px;
    color: #007bff;
    background: #e3f2fd;
    padding: 2px 8px;
    border-radius: 8px;
    display: inline-block;
}

.follow-up-content {
    margin-bottom: 12px;
}

.content-text {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 12px;
}

.content-images {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.content-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.content-images img:hover {
    border-color: #007bff;
    transform: scale(1.05);
}

.follow-up-footer {
    display: flex;
    justify-content: flex-end;
}

.send-time {
    font-size: 12px;
    color: #999;
}

/* 图片查看对话框样式 */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.5);
}

.image-modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.image-modal-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* 保留原有样式用于兼容 */
.section-group {
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.section-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f0f0f0;
}

.section-group .function-entries {
    gap: 8px;
}

.section-group .entry-item {
    margin-bottom: 6px;
    padding: 12px 16px;
}

.section-group .entry-item:last-child {
    margin-bottom: 0;
}

.section-group .entry-item .entry-info {
    flex: 1;
}

.section-group .entry-item .entry-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

/* 通知图标样式 */
.notification-icon {
    position: relative;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.notification-icon:hover {
    background: rgba(0, 0, 0, 0.1);
}

.notification-icon .icon {
    font-size: 20px;
    color: #666;
}

.notification-icon .badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    min-width: 16px;
}

/* 项目基本信息 */
.project-basic-info {
    background: #fff;
    border-radius: 12px;
    margin: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-header {
    margin-bottom: 16px;
}

.info-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* 回访记录列表 */
.visit-records-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
}

.visit-record-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.record-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.record-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.record-time {
    font-size: 14px;
    color: #666;
}

.record-submitter {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.record-actions {
    display: flex;
    gap: 8px;
}

.action-btn-small {
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #666;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn-small:hover {
    background: #f5f5f5;
}

.action-btn-small.delete {
    color: #dc3545;
    border-color: #dc3545;
}

.action-btn-small.delete:hover {
    background: #dc3545;
    color: #fff;
}

.record-content {
    margin-top: 12px;
}

.content-text {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 12px;
}

.content-images {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.content-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.content-images img:hover {
    transform: scale(1.05);
}

/* 设备统计信息 */
.equipment-stats {
    display: flex;
    justify-content: space-around;
    background: #fff;
    border-radius: 12px;
    margin: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #666;
}

/* 设备列表 */
.equipment-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
}

.equipment-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.equipment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.equipment-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.equipment-status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.equipment-status.pushed {
    background: #e8f5e8;
    color: #2e7d32;
}

.equipment-status.not-pushed {
    background: #fff3cd;
    color: #856404;
}

.status-normal {
    color: #28a745;
}

.status-warning {
    color: #ffc107;
}

.status-pushed {
    color: #28a745;
}

.status-not-pushed {
    color: #6c757d;
}

/* 导航栏返回按钮 */
.nav-back {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-back:hover {
    background: #f5f5f5;
}

.nav-back span {
    font-size: 18px;
    color: #333;
} 