/* 浅色科技感业务查询系统样式 */

/* 全局样式重置和基础设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
    background-attachment: fixed;
    color: #0a2463;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* 科技感背景效果 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(66, 153, 225, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 30%, rgba(52, 168, 83, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 40% 70%, rgba(156, 39, 176, 0.04) 0%, transparent 15%),
        radial-gradient(circle at 90% 90%, rgba(33, 150, 243, 0.03) 0%, transparent 20%);
    pointer-events: none;
    z-index: -1;
}

/* 网格背景 - 浅色风格 */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(66, 153, 225, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(66, 153, 225, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

/* 科技感容器 */
.container {
    position: relative;
    z-index: 1;
}

/* 卡片样式 - 浅色科技感设计 */
.card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(66, 153, 225, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(66, 153, 225, 0.1),
        0 0 30px rgba(66, 153, 225, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(66, 153, 225, 0.2),
        0 0 50px rgba(66, 153, 225, 0.1);
    transform: translateY(-5px);
}

/* 卡片头部 - 浅色科技感渐变 */
.card-header {
    background: linear-gradient(90deg, rgba(66, 153, 225, 0.05), rgba(52, 168, 83, 0.05));
    border-bottom: 1px solid rgba(66, 153, 225, 0.2);
    position: relative;
    overflow: hidden;
}

.card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* 表单样式 */
.form-control {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(66, 153, 225, 0.3);
    color: #0a2463;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.15), 0 0 15px rgba(52, 168, 83, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: rgba(10, 36, 99, 0.4);
}

.form-label {
    color: #2d3748;
    font-weight: 500;
}

/* 输入组样式 */
.input-group-text {
    background: rgba(66, 153, 225, 0.08);
    border: 1px solid rgba(66, 153, 225, 0.3);
    color: #4299e1;
    border-radius: 8px 0 0 8px;
}

.input-group > .form-control {
    border-radius: 0 8px 8px 0;
}

/* 科技感输入框样式 */
.form-control.tech-input {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(66, 153, 225, 0.3);
    color: #0a2463;
    border-radius: 0.5rem;
    font-size: 1rem;
    padding: 0.75rem 1rem;
}

.form-control.tech-input:focus {
    border-color: #4299e1;
    box-shadow: 0 0 15px rgba(66, 153, 225, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.form-control.tech-input::placeholder {
    color: rgba(10, 36, 99, 0.4);
}

.form-control.tech-input.tech-input-active {
    border-color: #4299e1;
    box-shadow: 0 0 20px rgba(66, 153, 225, 0.25);
    transform: translateY(-2px);
}

/* 科技感输入组样式 */
.input-group .tech-input {
    border-left: none;
    border-radius: 0 0.5rem 0.5rem 0;
}

.input-group .tech-input-icon {
    color: #4299e1;
    background: rgba(66, 153, 225, 0.08);
    border: 1px solid rgba(66, 153, 225, 0.3);
    border-right: none;
    border-radius: 0.5rem 0 0 0.5rem;
}

/* 输入框聚焦效果 */
.input-group.tech-input-focus {
    box-shadow: 0 0 20px rgba(66, 153, 225, 0.25);
}

.input-group.tech-input-focus .tech-input-icon {
    background: rgba(66, 153, 225, 0.15);
    border-color: #4299e1;
}

.input-group.tech-input-focus .tech-input {
    border-color: #4299e1;
}

/* 按钮样式 - 浅色科技感设计 */
.btn {
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(90deg, #4299e1, #34a853);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #3182ce, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 153, 225, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline-primary {
    background: transparent;
    border: 1px solid rgba(66, 153, 225, 0.6);
    color: #4299e1;
}

.btn-outline-primary:hover {
    background: rgba(66, 153, 225, 0.08);
    border-color: #4299e1;
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.15);
}

/* 按钮组 */
.btn-group .btn {
    border-radius: 8px;
    margin: 0 4px;
}

/* 标题样式 */
h1, h2, h3, h4, h5, h6 {
    color: #0a2463;
    font-weight: 700;
    position: relative;
}

.card-header h2, .card-header h3 {
    text-shadow: 0 0 10px rgba(66, 153, 225, 0.15);
}

/* 下划线效果 */
h3 {
    position: relative;
    display: inline-block;
}

h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4299e1, transparent);
}

/* 表格样式 */
table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(66, 153, 225, 0.2);
}

th {
    background: rgba(66, 153, 225, 0.1);
    color: #4299e1;
    text-align: left;
    padding: 12px 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(66, 153, 225, 0.2);
}

td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(66, 153, 225, 0.1);
    transition: background-color 0.3s ease;
}

tr:last-child td {
    border-bottom: none;
}

/* 表格行悬停效果 */
tr:hover td {
    background: rgba(66, 153, 225, 0.05);
}

/* 状态标签样式 */
.status-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 加载动画 */
.loader {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(66, 153, 225, 0.2);
    border-radius: 50%;
    border-top-color: #4299e1;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 进度条样式 */
.progress {
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    border: 1px solid rgba(66, 153, 225, 0.2);
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, #4299e1, #34a853);
    height: 100%;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s infinite;
}

/* 提示消息样式 */
.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-left: 4px solid #4299e1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.alert-danger {
    border-left-color: #e53e3e;
}

.alert-success {
    border-left-color: #38a169;
}

.alert-info {
    border-left-color: #3182ce;
}

/* 科技感图标效果 */
.fas, .far {
    text-shadow: 0 0 5px rgba(66, 153, 225, 0.15);
}

/* 链接样式 */
a {
    color: #4299e1;
    transition: all 0.3s ease;
    text-decoration: none;
}

a:hover {
    color: #3182ce;
    text-shadow: 0 0 10px rgba(66, 153, 225, 0.15);
}

/* 标签样式 */
.badge {
    background: rgba(66, 153, 225, 0.1);
    color: #4299e1;
    border: 1px solid rgba(66, 153, 225, 0.3);
    border-radius: 50px;
    padding: 4px 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* 侧边栏样式优化 */
.sidebar {
    background: rgba(255, 255, 255, 0.9);
    border-right: 1px solid rgba(66, 153, 225, 0.2);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.05);
}

.sidebar .nav-link {
    color: #4a5568;
    border-radius: 8px;
    margin: 5px 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sidebar .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #4299e1, #34a853);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.sidebar .nav-link:hover {
    background: rgba(66, 153, 225, 0.05);
    color: #4299e1;
}

.sidebar .nav-link.active {
    background: rgba(66, 153, 225, 0.1);
    color: #4299e1;
}

.sidebar .nav-link.active::before, .sidebar .nav-link:hover::before {
    transform: translateX(0);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .card {
        margin-bottom: 20px;
    }
    
    .btn-group {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-group .btn {
        margin: 5px 0;
    }
    
    .row > * {
        margin-bottom: 15px;
    }
    
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(66, 153, 225, 0.3);
    border-radius: 4px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(66, 153, 225, 0.5);
}

/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.card {
    animation: fadeIn 0.5s ease;
}

/* 数字动画 */
@keyframes countUp {
    from { opacity: 0; }
    to { opacity: 1; }
}

.count-animation {
    animation: countUp 1s ease;
}

/* 悬浮卡片效果 */
.float-card {
    transform: perspective(1000px) rotateX(0deg);
    transition: all 0.3s ease;
}

.float-card:hover {
    transform: perspective(1000px) rotateX(2deg);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(66, 153, 225, 0.2),
        0 0 60px rgba(66, 153, 225, 0.1);
}

/* 玻璃态效果增强 - 浅色风格 */
.glass-effect {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(66, 153, 225, 0.2);
}

/* 边框发光效果 - 浅色风格 */
.glow-border {
    position: relative;
}

.glow-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    border: 2px solid transparent;
    background: linear-gradient(90deg, #4299e1, #34a853) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
}

/* 数据高亮样式 */
.data-highlight {
    color: #4299e1;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(66, 153, 225, 0.1);
}

/* 日期显示样式 */
.date-display {
    color: #718096;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

/* 自定义复选框和单选按钮 */
input[type="checkbox"], input[type="radio"] {
    accent-color: #4299e1;
}

/* 数据表格单元格悬停效果 */
.data-cell {
    position: relative;
    transition: all 0.3s ease;
}

.data-cell:hover {
    color: #4299e1;
}

/* 页面标题样式 */
.page-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #0a2463;
    text-align: center;
    text-shadow: 0 0 10px rgba(66, 153, 225, 0.15);
}

/* 页脚样式 */
footer {
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(66, 153, 225, 0.2);
    padding: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(66, 153, 225, 0.3), transparent);
}

/* 科技感装饰元素 */
.tech-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(66, 153, 225, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.tech-decoration.top-left {
    top: -100px;
    left: -100px;
}

.tech-decoration.bottom-right {
    bottom: -100px;
    right: -100px;
}

/* 查询结果页面特定样式 */
/* 主要卡片样式 */
.tech-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(66, 153, 225, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(66, 153, 225, 0.1),
        0 0 30px rgba(66, 153, 225, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    animation: fadeIn 0.8s ease;
}

.tech-card-header {
    background: linear-gradient(90deg, rgba(66, 153, 225, 0.08), rgba(52, 168, 83, 0.08));
    border-bottom: 1px solid rgba(66, 153, 225, 0.2);
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.tech-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer 3s infinite;
}

.tech-card-body {
    padding: 2rem;
}

.tech-card-footer {
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(66, 153, 225, 0.15);
    padding: 1rem 2rem;
    position: relative;
}

.tech-card-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(66, 153, 225, 0.3), transparent);
}

/* 标题样式 */
.tech-title {
    color: #0a2463;
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    margin-bottom: 0.5rem;
}

.tech-title-glow {
    text-shadow: 0 0 15px rgba(66, 153, 225, 0.2);
    animation: titleGlow 2s infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 15px rgba(66, 153, 225, 0.2); }
    100% { text-shadow: 0 0 25px rgba(52, 168, 83, 0.3); }
}

/* 状态指示器 */
.tech-status-indicator {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    color: #718096;
}

.tech-status-dot {
    width: 8px;
    height: 8px;
    background: #4299e1;
    border-radius: 50%;
    margin-right: 6px;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.8); }
}

/* 信息概览卡片 */
.tech-overview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tech-overview-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(66, 153, 225, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.tech-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4299e1, #34a853);
}

.tech-overview-card.tech-animate-in {
    opacity: 1;
    transform: translateY(0);
}

.tech-overview-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(52, 168, 83, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(66, 153, 225, 0.1);
}

.tech-overview-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.tech-overview-content {
    position: relative;
    z-index: 1;
}

.tech-overview-label {
    font-size: 0.85rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.tech-overview-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a2463;
}

/* 信息区块 */
.tech-section {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.tech-section.tech-animate-in {
    opacity: 1;
    transform: translateY(0);
}

.tech-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a2463;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 0.5rem;
}

.tech-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #4299e1, transparent);
}

.tech-section-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(66, 153, 225, 0.3), transparent);
    margin-left: 1rem;
}

/* 信息网格 */
.tech-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tech-info-item {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(66, 153, 225, 0.15);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.tech-info-item:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(66, 153, 225, 0.3);
}

.tech-info-label {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

.tech-info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a2463;
}

/* 进度条 */
.tech-progress-container {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(66, 153, 225, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.tech-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.tech-progress-title {
    font-size: 1rem;
    color: #718096;
}

.tech-progress-stage {
    color: #4299e1;
    font-weight: 600;
}

.tech-progress-percentage {
    display: flex;
    align-items: baseline;
}

.tech-progress-number {
    font-size: 2rem;
    font-weight: 800;
    color: #4299e1;
    text-shadow: 0 0 10px rgba(66, 153, 225, 0.1);
    animation: countUp 1s ease-out;
}

.tech-progress-symbol {
    font-size: 1rem;
    color: #4299e1;
    margin-left: 2px;
}

.tech-progress-bar-wrapper {
    position: relative;
    height: 12px;
}

.tech-progress-bar-bg {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(66, 153, 225, 0.2);
}

.tech-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #4299e1, #34a853);
    border-radius: 5px;
    position: relative;
    transition: width 1s ease-out;
}

.tech-progress-bar-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s infinite;
}

.tech-progress-bar-glow {
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    bottom: -5px;
    background: linear-gradient(90deg, #4299e1, #34a853);
    filter: blur(10px);
    opacity: 0.3;
    z-index: -1;
}

/* 财务摘要 */
.tech-finance-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tech-finance-item {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(66, 153, 225, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-finance-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(66, 153, 225, 0.08);
}

.tech-finance-label {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-finance-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0a2463;
    text-shadow: 0 0 5px rgba(66, 153, 225, 0.08);
}

.tech-finance-paid {
    color: #38a169;
    text-shadow: 0 0 5px rgba(56, 161, 105, 0.08);
}

.tech-finance-unpaid {
    color: #d69e2e;
    text-shadow: 0 0 5px rgba(214, 158, 46, 0.08);
}

/* 子标题 */
.tech-subsection-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4299e1;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    padding-bottom: 0.3rem;
}

.tech-subsection-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4299e1, transparent);
}

/* 表格样式 */
.tech-table-container {
    overflow-x: auto;
}

.tech-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(66, 153, 225, 0.2);
}

.tech-table th {
    background: rgba(66, 153, 225, 0.1);
    color: #4299e1;
    text-align: left;
    padding: 1rem 1.5rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(66, 153, 225, 0.2);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.tech-table-row td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(66, 153, 225, 0.1);
    transition: all 0.3s ease;
}

.tech-table-row:last-child td {
    border-bottom: none;
}

.tech-table-row:hover td {
    background: rgba(66, 153, 225, 0.05);
    color: #4299e1;
}

/* 按钮样式增强 */
.tech-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    border: none;
    background: linear-gradient(90deg, #4299e1, #34a853);
    color: white;
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.15);
}

.tech-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.tech-button:hover::before {
    left: 100%;
}

.tech-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.25);
}

.tech-button:active {
    transform: translateY(0);
}

.tech-button-outline {
    position: relative;
    background: transparent;
    border: 1px solid rgba(66, 153, 225, 0.6);
    color: #4299e1;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.tech-button-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(66, 153, 225, 0.1), transparent);
    transition: all 0.5s ease;
}

.tech-button-outline:hover {
    background: rgba(66, 153, 225, 0.08);
    border-color: #4299e1;
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.15);
}

.tech-button-outline:hover::before {
    left: 100%;
}

.tech-button-warning {
    background: linear-gradient(90deg, #f6ad55, #ed8936);
    color: white;
    box-shadow: 0 4px 15px rgba(246, 173, 85, 0.15);
}

.tech-button-warning:hover {
    box-shadow: 0 8px 25px rgba(246, 173, 85, 0.25);
}

.tech-button-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(90deg, #f6ad55, #ed8936);
    border-radius: 12px;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
    animation: buttonGlow 2s infinite alternate;
}

@keyframes buttonGlow {
    0% { opacity: 0.2; }
    100% { opacity: 0.5; }
}

.tech-button-loading {
    position: relative;
    pointer-events: none;
}

.tech-button-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* 通知消息 */
.tech-notification {
    display: flex;
    align-items: flex-start;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    max-width: 100%;
}

.tech-notification-show {
    opacity: 1;
    transform: translateY(0);
}

.tech-notification-hide {
    opacity: 0;
    transform: translateY(-20px);
}

.tech-notification-success {
    border-color: rgba(56, 161, 105, 0.3);
    box-shadow: 0 4px 15px rgba(56, 161, 105, 0.08);
}

.tech-notification-error {
    border-color: rgba(229, 62, 62, 0.3);
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.08);
}

.tech-notification-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.tech-notification-success .tech-notification-icon {
    color: #38a169;
}

.tech-notification-error .tech-notification-icon {
    color: #e53e3e;
}

.tech-notification-content {
    flex-grow: 1;
}

.tech-notification-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a2463;
    margin-bottom: 0.3rem;
}

.tech-notification-message {
    font-size: 0.95rem;
    color: #718096;
}

/* 进入动画 */
.tech-animate-in {
    animation: techFadeIn 0.6s ease forwards;
}

@keyframes techFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 页脚样式 */
.tech-footer {
    color: #718096;
    text-align: center;
}

/* 页面装饰元素 */
.tech-decoration-top {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(66, 153, 225, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
}

.tech-bottom-decoration {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 168, 83, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
}

/* 提醒样式 */
.tech-alert {
    background: rgba(255, 255, 255, 0.9);
    border-left: 4px solid #e53e3e;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

/* 当前阶段完成率样式 - 浅色风格 */
.tech-stage-progress {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(66, 153, 225, 0.2);
}

.tech-stage-progress-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.tech-stage-progress-stage {
    color: #4299e1;
    font-weight: bold;
    font-size: 16px;
    margin-left: 8px;
}

.tech-stage-progress-percentage {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.tech-stage-progress-label {
    color: #718096;
    font-size: 14px;
}

.tech-stage-progress-value {
    color: #4299e1;
    font-weight: bold;
    font-size: 18px;
}

.tech-stage-progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(66, 153, 225, 0.1);
}

.tech-stage-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #4299e1, #34a853);
    border-radius: 4px;
    transition: width 0.5s ease;
    position: relative;
}

.tech-stage-progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

/* 倒计时样式 - 浅色风格 */
.tech-countdown {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(66, 153, 225, 0.2);
}

.tech-countdown-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #718096;
    font-size: 14px;
}

.tech-countdown-timer {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    color: #0a2463;
    border: 1px solid rgba(66, 153, 225, 0.2);
}

.tech-countdown-overdue {
    color: #e53e3e !important;
    border-color: rgba(229, 62, 62, 0.2) !important;
}