/* 现代化科技主题样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* 科技背景动画 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 150, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 200, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 200, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: techGlow 8s ease-in-out infinite alternate;
}

@keyframes techGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* 容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 顶部导航 */
.header {
    background: rgba(15, 20, 25, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 150, 255, 0.2);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #00c8ff;
}

.logo i {
    font-size: 28px;
    margin-right: 10px;
    color: #00ff88;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00c8ff;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00c8ff, #00ff88);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* 主要内容区域 */
.main-content {
    padding: 60px 0;
}

/* 标题区域 */
.title-section {
    text-align: center;
    margin-bottom: 60px;
}

.main-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, #00c8ff 0%, #00ff88 50%, #0096ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(20deg);
    }
}

.subtitle {
    font-size: 1.2rem;
    color: #a0a9b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 解析表单 */
.parse-form {
    margin-bottom: 40px;
}

.form-card {
    background: rgba(26, 35, 50, 0.8) !important;
    border: 1px solid rgba(0, 150, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    border-radius: 16px !important;
    overflow: hidden;
}

.form-card .el-card__header {
    background: rgba(0, 150, 255, 0.1) !important;
    border-bottom: 1px solid rgba(0, 150, 255, 0.2) !important;
    padding: 20px !important;
}

.card-header {
    font-size: 18px;
    font-weight: 600;
    color: #00c8ff !important;
}

.card-header i {
    margin-right: 8px;
    color: #00ff88;
}

.form-card .el-card__body {
    padding: 30px !important;
}

/* Element UI 组件样式覆盖 */
.el-form-item__label {
    color: #ffffff !important;
    font-weight: 500;
}

.el-input__inner {
    background: rgba(15, 20, 25, 0.8) !important;
    border: 1px solid rgba(0, 150, 255, 0.3) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    transition: all 0.3s ease;
}

.el-input__inner:focus {
    border-color: #00c8ff !important;
    box-shadow: 0 0 0 2px rgba(0, 200, 255, 0.2) !important;
}

.el-input__inner::placeholder {
    color: #6b7280 !important;
}

.el-textarea__inner {
    background: rgba(15, 20, 25, 0.8) !important;
    border: 1px solid rgba(0, 150, 255, 0.3) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
}

.el-textarea__inner:focus {
    border-color: #00c8ff !important;
    box-shadow: 0 0 0 2px rgba(0, 200, 255, 0.2) !important;
}

.parse-btn {
    background: linear-gradient(135deg, #00c8ff 0%, #0096ff 100%) !important;
    border: none !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 200, 255, 0.3) !important;
}

.parse-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 200, 255, 0.4) !important;
}

.el-button--large {
    border-radius: 8px !important;
    font-weight: 500 !important;
}

/* 结果区域 */
.result-section {
    margin-top: 40px;
}

.result-card {
    background: rgba(26, 35, 50, 0.8) !important;
    border: 1px solid rgba(0, 255, 136, 0.2) !important;
    backdrop-filter: blur(10px);
    border-radius: 16px !important;
}

.result-card .el-card__header {
    background: rgba(0, 255, 136, 0.1) !important;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2) !important;
}

.el-table {
    background: transparent !important;
    color: #ffffff !important;
}

.el-table th {
    background: rgba(0, 150, 255, 0.1) !important;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(0, 150, 255, 0.2) !important;
}

.el-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #000000 !important;
}

.el-table td span {
    color: #000000 !important;
}

.el-table .cell {
    color: #000000 !important;
}

.el-table__body .cell {
    color: #000000 !important;
}

.el-table__body td .cell {
    color: #000000 !important;
}

.el-table tbody td {
    color: #000000 !important;
}

.el-table tbody td * {
    color: #000000 !important;
}

.el-table--striped .el-table__body tr.el-table__row--striped td {
    background: rgba(0, 150, 255, 0.05) !important;
}

.el-table__body tr:hover > td {
    background: rgba(0, 200, 255, 0.1) !important;
}

.no-data {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.no-data i {
    font-size: 48px;
    margin-bottom: 16px;
    color: #374151;
}

/* 特性介绍 */
.features-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 60px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #ffffff;
    font-weight: 700;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(26, 35, 50, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(0, 150, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 200, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 200, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00c8ff 0%, #00ff88 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 200, 255, 0.3);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
}

.feature-item p {
    color: #a0a9b8;
    line-height: 1.6;
    font-size: 1rem;
}

/* 底部 */
.footer {
    background: rgba(15, 20, 25, 0.9);
    border-top: 1px solid rgba(0, 150, 255, 0.2);
    padding: 30px 0;
    text-align: center;
    color: #6b7280;
}

/* 批量操作工具栏样式 */
.batch-toolbar {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 150, 255, 0.1);
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.batch-actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.batch-actions .el-button {
    background: rgba(0, 150, 255, 0.2) !important;
    border-color: rgba(0, 150, 255, 0.5) !important;
    color: #ffffff !important;
}

.batch-actions .el-button:hover {
    background: rgba(0, 150, 255, 0.4) !important;
    border-color: rgba(0, 150, 255, 0.8) !important;
    transform: translateY(-2px);
}

.batch-actions .el-button--success {
    background: rgba(0, 255, 136, 0.2) !important;
    border-color: rgba(0, 255, 136, 0.5) !important;
}

.batch-actions .el-button--success:hover {
    background: rgba(0, 255, 136, 0.4) !important;
    border-color: rgba(0, 255, 136, 0.8) !important;
}

/* 下载弹窗样式优化 */
.el-dialog {
    background: rgba(15, 20, 25, 0.95) !important;
    border: 1px solid rgba(0, 150, 255, 0.3) !important;
    backdrop-filter: blur(20px) !important;
}

.el-dialog__header {
    background: rgba(0, 150, 255, 0.1) !important;
    border-bottom: 1px solid rgba(0, 150, 255, 0.3) !important;
}

.el-dialog__title {
    color: #ffffff !important;
    font-weight: 600 !important;
}

.el-dialog__body {
    background: transparent !important;
    color: #ffffff !important;
}

.el-dialog .el-table {
    background: rgba(15, 20, 25, 0.8) !important;
}

.el-dialog .el-table th {
    background: rgba(0, 150, 255, 0.2) !important;
    color: #ffffff !important;
    border-color: rgba(0, 150, 255, 0.3) !important;
}

.el-dialog .el-table td {
    background: rgba(15, 20, 25, 0.6) !important;
    color: #ffffff !important;
    border-color: rgba(0, 150, 255, 0.2) !important;
}

.el-dialog .el-table--striped .el-table__body tr.el-table__row--striped td {
    background: rgba(0, 150, 255, 0.05) !important;
}

.el-dialog .el-input__inner {
    background: rgba(15, 20, 25, 0.8) !important;
    border-color: rgba(0, 150, 255, 0.3) !important;
    color: #ffffff !important;
}

.el-dialog .el-input-group__append {
    background: rgba(0, 150, 255, 0.2) !important;
    border-color: rgba(0, 150, 255, 0.3) !important;
}

.el-dialog .el-input-group__append .el-button {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
}

.el-dialog .el-input-group__append .el-button:hover {
    background: rgba(0, 150, 255, 0.3) !important;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-item {
        margin-bottom: 30px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .batch-actions {
        flex-direction: column;
    }
    
    .batch-actions .el-button {
        width: 100%;
    }
    
    .el-dialog {
        width: 95% !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .parse-btn {
        width: 100%;
        margin-bottom: 10px !important;
    }
    
    .el-button--large {
        width: 100%;
    }
}

/* 加载动画 */
.el-loading-mask {
    background: rgba(15, 20, 25, 0.8) !important;
}

.el-loading-spinner .circular {
    stroke: #00c8ff !important;
}

/* 消息提示样式 */
.el-message {
    background: rgba(26, 35, 50, 0.95) !important;
    border: 1px solid rgba(0, 150, 255, 0.3) !important;
    color: #ffffff !important;
    backdrop-filter: blur(10px);
}

.el-message--success {
    border-color: rgba(0, 255, 136, 0.5) !important;
}

.el-message--error {
    border-color: rgba(255, 77, 77, 0.5) !important;
}

/* 科技线条装饰 */
.tech-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.tech-lines::before,
.tech-lines::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, #00c8ff 50%, transparent 100%);
    animation: techLineMove 4s linear infinite;
}

.tech-lines::before {
    left: 20%;
    animation-delay: 0s;
}

.tech-lines::after {
    right: 20%;
    animation-delay: 2s;
}

@keyframes techLineMove {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(100%);
    }
}

/* 登录相关样式 */
.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.username {
    color: #00d4ff;
    font-weight: 500;
    font-size: 14px;
}

.login-btn, .logout-btn {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.login-btn:hover, .logout-btn:hover {
    background: linear-gradient(135deg, #0099cc 0%, #007399 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.logout-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #cc5555 100%);
    border-color: rgba(255, 107, 107, 0.3);
}

.logout-btn:hover {
    background: linear-gradient(135deg, #cc5555 0%, #994444 100%);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* 登录提示卡片 */
.login-notice-card {
    margin-bottom: 30px;
}

.login-notice {
    text-align: center;
    padding: 40px 20px;
}

.login-notice i {
    font-size: 48px;
    color: #ffa726;
    margin-bottom: 20px;
    display: block;
}

.login-notice-card .el-card__body .login-notice h3 {
    color: #ffffff !important;
    font-size: 24px !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
    margin-top: 0 !important;
}

.login-notice-card .el-card__body .login-notice p {
    color: #b0bec5 !important;
    font-size: 16px !important;
    margin-bottom: 30px !important;
    line-height: 1.6 !important;
    margin-top: 0 !important;
}

/* 额外的强制样式 */
.login-notice h3,
.login-notice p {
    color: #ffffff !important;
}

.login-notice p {
    color: #b0bec5 !important;
}

.login-notice .el-button {
    font-size: 16px;
    padding: 12px 30px;
    border-radius: 25px;
}

/* 面包屑导航样式 */
.breadcrumb-nav {
    margin-bottom: 20px;
    padding: 15px 20px;
    background: rgba(0, 150, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 150, 255, 0.1);
}

.breadcrumb-nav .el-breadcrumb {
    font-size: 14px;
}

.breadcrumb-nav .el-breadcrumb__item {
    color: #b0bec5;
}

.breadcrumb-nav .el-breadcrumb__item a {
    color: #00c8ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-nav .el-breadcrumb__item a:hover {
    color: #00ff88;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
}

.breadcrumb-nav .el-breadcrumb__item:last-child a {
    color: #ffffff;
    cursor: default;
}

.breadcrumb-nav .el-breadcrumb__item:last-child a:hover {
    color: #ffffff;
    text-shadow: none;
}

/* 卡片头部样式 */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-actions .el-button {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: white;
}

.header-actions .el-button:hover {
    background: linear-gradient(135deg, #0099cc 0%, #007399 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

/* 分页组件样式 */
.pagination-wrapper {
    margin-top: 20px;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 150, 255, 0.1);
}

.pagination-wrapper .el-pagination {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pagination-wrapper .el-pagination .el-pager li {
    background: rgba(0, 150, 255, 0.1);
    border: 1px solid rgba(0, 150, 255, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
}

.pagination-wrapper .el-pagination .el-pager li:hover {
    background: rgba(0, 200, 255, 0.2);
    color: #00c8ff;
}

.pagination-wrapper .el-pagination .el-pager li.active {
    background: linear-gradient(135deg, #00c8ff 0%, #0099cc 100%);
    color: white;
    border-color: #00c8ff;
}

.pagination-wrapper .el-pagination .btn-prev,
.pagination-wrapper .el-pagination .btn-next {
    background: rgba(0, 150, 255, 0.1);
    border: 1px solid rgba(0, 150, 255, 0.2);
    color: #ffffff;
}

.pagination-wrapper .el-pagination .btn-prev:hover,
.pagination-wrapper .el-pagination .btn-next:hover {
    background: rgba(0, 200, 255, 0.2);
    color: #00c8ff;
}

.pagination-wrapper .el-pagination .el-select .el-input__inner {
    background: rgba(0, 150, 255, 0.1);
    border: 1px solid rgba(0, 150, 255, 0.2);
    color: #ffffff;
}

.pagination-wrapper .el-pagination .el-input__inner {
    background: rgba(0, 150, 255, 0.1);
    border: 1px solid rgba(0, 150, 255, 0.2);
    color: #ffffff;
}

.pagination-wrapper .el-pagination .el-pagination__total,
.pagination-wrapper .el-pagination .el-pagination__jump {
    color: #b0bec5;
}