/* 全局样式   */
* {  
    margin: 0;  
    padding: 0;  
    box-sizing: border-box;  
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  
}  
input[type="password"]::-ms-reveal {
    display: none
}
body {  
    background-color: #f9f9f9;  
    color: #333;  
}  
:root {  
    --primary: #1677ff;  
    --primary-dark: #0096c0;  
    --primary-light: #e1f5fa;  
    --text-dark: #2c3e50;  
    --text-light: #ffffff;  
    --text-muted: #718096;  
    --bg-light: #f8fafc;  
    --bg-white: #ffffff;  
    --border-light: #e2e8f0;  
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);  
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);  
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);  
    --radius-sm: 6px;  
    --radius-md: 10px;  
    --radius-lg: 16px;  
    --ge-primary-color: #4dabf7;
    --ge-secondary-color: #228be6;
    --ge-accent-color: #1971c2;
    --ge-light-color: #f8f9fa;
    --ge-dark-color: #212529;
    --de-primary-color: #4dabf7;
    --de-secondary-color: #228be6;
    --de-accent-color: #1971c2;
    --de-light-color: #f8f9fa;
    --de-dark-color: #212529;
}
/* 通知样式 */  
.notification-container {  
    position: fixed;  
    top: 20px;  
    left: 50%;  
    transform: translateX(-50%);  
    z-index: 99999;  
    display: flex;  
    flex-direction: column;  
    align-items: center;  
    gap: 10px;  
    pointer-events: none;  
}  

.notification {  
    background-color: #ffffff;  
    border-radius: 6px;  
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);  
    padding: 12px 16px;  
    display: flex;  
    align-items: center;  
    gap: 10px;  
    min-width: 260px;  
    max-width: 450px;  
    opacity: 0;  
    transform: translateY(-20px);  
    transition: all 0.3s ease;  
    pointer-events: auto;  
}  

.notification.show {  
    opacity: 1;  
    transform: translateY(0);  
}  

.notification.hide {  
    opacity: 0;  
    transform: translateY(-20px);  
}  

.notification-icon {  
    font-size: 18px;  
    display: flex;  
    align-items: center;  
    justify-content: center;  
}  

.notification-text {  
    flex: 1;  
    font-size: 14px;  
    color: #333333;  
}  

.notification-close {  
    background: none;  
    border: none;  
    font-size: 18px;  
    cursor: pointer;  
    color: #999999;  
    padding: 0;  
    display: flex;  
    align-items: center;  
    justify-content: center;  
    width: 20px;  
    height: 20px;  
}  

.notification-close:hover {  
    color: #666666;  
}  

/* 不同类型的通知样式 */  
.notification-info .notification-icon {  
    color: #2196F3; /* 蓝色 */  
}  

.notification-success .notification-icon {  
    color: #4CAF50; /* 绿色 */  
}  

.notification-warning .notification-icon {  
    color: #FFC107; /* 黄色 */  
}  

.notification-error .notification-icon {  
    color: #F44336; /* 红色 */  
}  

.notification-info {  
    border-left: 4px solid #2196F3; /* 蓝色 */  
}  

.notification-success {  
    border-left: 4px solid #4CAF50; /* 绿色 */  
}  

.notification-warning {  
    border-left: 4px solid #FFC107; /* 黄色 */  
}  

.notification-error {  
    border-left: 4px solid #F44336; /* 红色 */  
}  

/* 容器样式 */  
.container {  
    position: relative;  
    width: 100%;  
    min-height: 100vh;  
    display: flex;  
    justify-content: center;  
    align-items: center;  
    overflow-x: hidden;  
    /* background-color: #f0f7ff;   */
    background: white;
}  

/* 暗色遮罩层 */  
.dark {  
    display: none;  
    position: fixed;  
    z-index: 998;  
    top: 0;  
    left: 0;  
    width: 100%;  
    height: 100%;  
    background-color: rgba(0, 0, 0, 0.5);  
    backdrop-filter: blur(3px);  
    transition: opacity 0.3s ease;  
}  

/* 主页样式 */  
.homePage {  
    margin-top: 30px;
    display: flex;  
    flex-direction: column;  
    justify-content: center;  
    align-items: center;  
    width: 100%;  
    animation: fadeIn 0.5s ease;
}  

.vai-container * {  
    margin: 0;  
    padding: 0;  
    box-sizing: border-box;  
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  
}  

.vai-container {  
    width: 100%;  
    max-width: 1200px;  
    margin: 0 auto;  
    padding: 0 20px;  
    color: #333333;  
}  
.vai-login-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 80px;
    height: 40px;
    top: 30px;
    right: 50px;
    background: #0066cc;
    color: white;
    font-size: 18px;
    border-radius: 20px;
    cursor: pointer;
}
.vai-btn {  
    display: inline-flex;  
    align-items: center;  
    justify-content: center;  
    gap: 8px;  
    padding: 10px 24px;  
    font-weight: 600;  
    font-size: 16px;  
    border-radius: 6px;  
    cursor: pointer;  
    transition: all 0.2s ease;  
    border: none;  
    outline: none;  
    text-decoration: none;  
}  

.vai-btn-primary {  
    background: linear-gradient(135deg, #0066cc 0%, #00b8d4 100%);  
    color: #ffffff;  
    box-shadow: 0 3px 12px rgba(0, 102, 204, 0.2);  
}  

.vai-btn-primary:hover {  
    background: linear-gradient(135deg, #004e9e 0%, #0090a8 100%);  
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);  
    transform: translateY(-1px);  
}  

.vai-btn-outline {  
    background: transparent;  
    color: #0066cc;  
    border: 2px solid #0066cc;  
}  

.vai-btn-outline:hover {  
    background: #e6f0ff;  
    transform: translateY(-1px);  
}  

.vai-section {  
    padding: 60px 0;  
}  

.vai-section-title {  
    font-size: 32px;  
    text-align: center;  
    margin-bottom: 60px;  
    position: relative;  
    color: #333333;  
}  

.vai-section-title:after {  
    content: '';  
    position: absolute;  
    bottom: -15px;  
    left: 50%;  
    transform: translateX(-50%);  
    width: 60px;  
    height: 4px;  
    background: linear-gradient(135deg, #0066cc 0%, #00b8d4 100%);  
    border-radius: 2px;  
}  

.vai-text-center {  
    text-align: center;  
}  

.vai-card {  
    background: #ffffff;  
    border-radius: 12px;  
    overflow: hidden;  
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);  
    transition: all 0.3s ease;  
}  

.vai-card:hover {  
    transform: translateY(-5px);  
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);  
}  

.vai-hero-title {  
    font-size: 48px;  
    font-weight: 800;  
    margin-bottom: 20px;  
    background: linear-gradient(135deg, #0066cc 0%, #00b8d4 100%);  
    -webkit-background-clip: text;  
    background-clip: text;  
    color: transparent;  
}  

.vai-hero-subtitle {  
    font-size: 20px;  
    color: #666666;  
    margin-bottom: 40px;  
    line-height: 1.5;  
}  

.vai-hero-buttons {  
    display: flex;  
    gap: 20px;  
}  

.vai-feature-grid {  
    display: grid;  
    grid-template-columns: repeat(2, 1fr);  
    gap: 40px;  
    margin-top: 20px;  
}  

.vai-feature-card {  
    background: #ffffff;  
    border-radius: 16px;  
    overflow: hidden;  
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);  
    transition: all 0.3s ease;  
    height: 100%;  
    display: flex;  
    flex-direction: column;  
}  

.vai-feature-card:hover {  
    transform: translateY(-5px);  
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);  
}  

.vai-feature-image {  
    height: 220px;  
    width: 100%;  
    background-color: #edf0f5;  
    position: relative;  
    overflow: hidden;  
}  

.vai-feature-image i {  
    position: absolute;  
    top: 50%;  
    left: 50%;  
    transform: translate(-50%, -50%);  
    font-size: 80px;  
    color: #0066cc;  
    opacity: 0.8;  
}  

.vai-feature-content {  
    padding: 30px;  
    flex-grow: 1;  
    display: flex;  
    flex-direction: column;  
}  

.vai-feature-title {  
    font-size: 24px;  
    margin-bottom: 15px;  
    color: #0066cc;  
}  

.vai-feature-description {  
    margin-bottom: 25px;  
    color: #666666;  
    flex-grow: 1;  
}  

.vai-feature-button {  
    align-self: flex-start;  
}  

.vai-workflow {  
    background-color: #f7f9fc;  
    padding: 60px 0;  
}  

.vai-workflow-grid {  
    display: grid;  
    grid-template-columns: repeat(3, 1fr);  
    gap: 30px;  
}  

.vai-workflow-item {  
    text-align: center;  
    padding: 30px;  
    background: #ffffff;  
    border-radius: 12px;  
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);  
    position: relative;  
}  

.vai-workflow-item::after {  
    content: '';  
    position: absolute;  
    top: 50%;  
    right: -30px;  
    transform: translateY(-50%);  
    width: 30px;  
    height: 2px;  
    background: #e6f0ff;  
    display: none;  
}  

.vai-workflow-item:not(:last-child)::after {  
    display: block;  
}  

.vai-workflow-icon {  
    background: #e6f0ff;  
    width: 80px;  
    height: 80px;  
    border-radius: 50%;  
    display: flex;  
    align-items: center;  
    justify-content: center;  
    margin: 0 auto 20px;  
}  

.vai-workflow-icon i {  
    font-size: 32px;  
    color: #0066cc;  
}  

.vai-workflow-number {  
    position: absolute;  
    top: -15px;  
    left: -15px;  
    width: 40px;  
    height: 40px;  
    background: linear-gradient(135deg, #0066cc 0%, #00b8d4 100%);  
    color: #ffffff;  
    border-radius: 50%;  
    display: flex;  
    align-items: center;  
    justify-content: center;  
    font-weight: 700;  
    font-size: 18px;  
}  

.vai-workflow-title {  
    font-size: 20px;  
    margin-bottom: 10px;  
}  

.vai-workflow-description {  
    color: #666666;  
    font-size: 15px;  
}  

.vai-benefits {  
    padding: 60px 0;  
}  

.vai-benefits-grid {  
    display: grid;  
    grid-template-columns: repeat(3, 1fr);  
    gap: 30px;  
}  

.vai-benefit-item {  
    text-align: center;  
    padding: 30px;  
    background: #ffffff;  
    border-radius: 12px;  
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);  
    transition: all 0.3s ease;  
}  

.vai-benefit-item:hover {  
    transform: translateY(-5px);  
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);  
}  

.vai-benefit-icon {  
    font-size: 40px;  
    color: #0066cc;  
    margin-bottom: 20px;  
}  

.vai-benefit-title {  
    font-size: 20px;  
    margin-bottom: 15px;  
}  

.vai-benefit-description {  
    color: #666666;  
}  

.vai-faq {  
    background-color: #f7f9fc;  
    padding: 60px 0;  
}  

.vai-faq-list {  
    max-width: 800px;  
    margin: 0 auto;  
}  

.vai-faq-item {  
    background: #ffffff;  
    border-radius: 8px;  
    margin-bottom: 20px;  
    overflow: hidden;  
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);  
}  

.vai-faq-question {  
    padding: 20px 25px;  
    font-weight: 600;  
    cursor: pointer;  
    display: flex;  
    justify-content: space-between;  
    align-items: center;  
}  

.vai-faq-question i {  
    transition: transform 0.3s ease;  
}  

.vai-faq-answer {  
    padding: 0 25px 20px;  
    color: #666666;  
    display: none;  
}  

/* 响应式设计 */  
@media (max-width: 991px) {  
    .vai-feature-grid {  
        grid-template-columns: 1fr;  
    }  

    .vai-workflow-grid {  
        grid-template-columns: 1fr;  
    }  

    .vai-workflow-item::after {  
        display: none;  
    }  

    .vai-benefits-grid {  
        grid-template-columns: repeat(2, 1fr);  
    }  
}  

@media (max-width: 767px) {  
   .vai-benefits-grid {  
        grid-template-columns: 1fr;  
    }  

    .vai-section {  
        padding: 40px 0;  
    }  
}
/* 科技风格的英雄区域背景 - 修复版 */  
.vai-hero {  
    position: relative;  
    background: linear-gradient(135deg, #040b24 0%, #0c1f52 50%, #040b24 100%);  
    overflow: hidden;  
    border-radius: 12px;  
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.3);  
    transition: box-shadow 0.5s ease;  
  }  
  
  .vai-hero:hover {  
    box-shadow: 0 12px 45px rgba(0, 132, 255, 0.4);  
  }  
  
  /* 高科技网格效果 */  
  .vai-hero::before {  
    content: "";  
    position: absolute;  
    top: 0;  
    left: 0;  
    right: 0;  
    bottom: 0;  
    background:   
      linear-gradient(90deg, rgba(30, 87, 153, 0.07) 1px, transparent 1px),  
      linear-gradient(0deg, rgba(30, 87, 153, 0.07) 1px, transparent 1px);  
    background-size: 25px 25px;  
    opacity: 0.4;  
    z-index: 1;  
    transform: perspective(500px) rotateX(5deg);  
    animation: grid-shift 15s infinite linear;  
    pointer-events: none; /* 确保不阻挡点击 */  
  }  
  
  /* 核心光效 */  
  .vai-hero::after {  
    content: "";  
    position: absolute;  
    top: -100%;  
    left: -100%;  
    right: -100%;  
    bottom: -100%;  
    background:   
      radial-gradient(circle at 30% 40%, rgba(0, 132, 255, 0.15) 0%, transparent 40%),  
      radial-gradient(circle at 70% 60%, rgba(83, 0, 221, 0.1) 0%, transparent 50%);  
    opacity: 0.8;  
    filter: blur(5px);  
    animation: pulse-glow 10s infinite ease-in-out;  
    z-index: 0;  
    pointer-events: none; /* 确保不阻挡点击 */  
  }  
  
  /* 确保内容在光效之上 */  
  .vai-hero-content {  
    position: relative;  
    z-index: 10; /* 高Z-index确保在顶层 */  
  }  
  
  /* 特效容器 - 包含所有纯装饰元素 */  
  .vai-hero-effects {  
    position: absolute;  
    top: 0;  
    left: 0;  
    width: 100%;  
    height: 100%;  
    z-index: 2; /* 确保在内容之下 */  
    pointer-events: none; /* 关键：确保所有特效不接收鼠标事件 */  
    overflow: hidden;  
  }  
  
  /* 活跃波浪动画 */  
  .vai-hero-effects .wave {  
    position: absolute;  
    width: 100%;  
    height: 30px;  
    background: linear-gradient(90deg, transparent, rgba(0, 132, 255, 0.1), transparent);  
    z-index: 1;  
    opacity: 0.3;  
    filter: blur(1px);  
    transform: translateY(0);  
    animation: wave-flow 8s infinite ease-in-out;  
  }  
  
  .vai-hero-effects .wave:nth-child(1) {  
    top: 20%;  
    animation-delay: 0s;  
  }  
  
  .vai-hero-effects .wave:nth-child(2) {  
    top: 40%;  
    animation-delay: 0.5s;  
  }  
  
  .vai-hero-effects .wave:nth-child(3) {  
    top: 60%;  
    animation-delay: 1s;  
  }  
  
  .vai-hero-effects .wave:nth-child(4) {  
    top: 80%;  
    animation-delay: 1.5s;  
  }  
  
  /* 动态粒子 */  
  .vai-hero-effects .particle {  
    position: absolute;  
    border-radius: 50%;  
    background-color: rgba(255, 255, 255, 0.4);  
    filter: blur(1px);  
    z-index: 2;  
    box-shadow: 0 0 6px 2px rgba(93, 188, 255, 0.15);  
    animation: particle-fade 7s infinite ease-in-out;  
  }  
  
  .vai-hero-effects .particle:nth-child(1) {  
    top: 15%;  
    left: 10%;  
    width: 6px;  
    height: 6px;  
    animation-delay: 0s;  
  }  
  
  .vai-hero-effects .particle:nth-child(2) {  
    top: 60%;  
    left: 80%;  
    width: 8px;  
    height: 8px;  
    animation-delay: 1s;  
  }  
  
  .vai-hero-effects .particle:nth-child(3) {  
    top: 30%;  
    left: 70%;  
    width: 4px;  
    height: 4px;  
    animation-delay: 2s;  
  }  
  
  .vai-hero-effects .particle:nth-child(4) {  
    top: 70%;  
    left: 25%;  
    width: 7px;  
    height: 7px;  
    animation-delay: 3s;  
  }  
  
  .vai-hero-effects .particle:nth-child(5) {  
    top: 40%;  
    left: 40%;  
    width: 5px;  
    height: 5px;  
    animation-delay: 4s;  
  }  
  
  .vai-hero-effects .particle:nth-child(6) {  
    top: 80%;  
    left: 15%;  
    width: 9px;  
    height: 9px;  
    animation-delay: 5s;  
  }  
  
  .vai-hero-effects .particle:nth-child(7) {  
    top: 20%;  
    left: 85%;  
    width: 6px;  
    height: 6px;  
    animation-delay: 6s;  
  }  
  
  .vai-hero-effects .particle:nth-child(8) {  
    top: 50%;  
    left: 50%;  
    width: 10px;  
    height: 10px;  
    animation-delay: 7s;  
  }  
  
  /* 连接线 */  
  .vai-hero-effects .connector {  
    position: absolute;  
    background: linear-gradient(90deg, transparent, rgba(0, 132, 255, 0.2), transparent);  
    height: 1px;  
    width: 100px;  
    opacity: 0;  
    z-index: 1;  
    filter: blur(1px);  
    transform-origin: left center;  
    animation: connector-appear 10s infinite ease-in-out;  
  }  
  
  .vai-hero-effects .connector:nth-child(9) {  
    top: 20%;  
    left: 15%;  
    width: 150px;  
    transform: rotate(30deg);  
    animation-delay: 1s;  
  }  
  
  .vai-hero-effects .connector:nth-child(10) {  
    top: 60%;  
    left: 70%;  
    width: 120px;  
    transform: rotate(-15deg);  
    animation-delay: 3s;  
  }  
  
  .vai-hero-effects .connector:nth-child(11) {  
    top: 40%;  
    left: 30%;  
    width: 180px;  
    transform: rotate(60deg);  
    animation-delay: 5s;  
  }  
  
  .vai-hero-effects .connector:nth-child(12) {  
    top: 75%;  
    left: 20%;  
    width: 140px;  
    transform: rotate(-40deg);  
    animation-delay: 7s;  
  }  
  
  /* 闪光扫描线 */  
  .vai-hero-effects .scan-line {  
    position: absolute;  
    top: -100%;  
    left: 0;  
    width: 100%;  
    height: 2px;  
    background: linear-gradient(90deg,   
      transparent 0%,   
      rgba(0, 132, 255, 0.1) 20%,   
      rgba(0, 132, 255, 0.3) 50%,  
      rgba(0, 132, 255, 0.1) 80%,  
      transparent 100%);  
    z-index: 3;  
    filter: blur(1px);  
    box-shadow: 0 0 10px 2px rgba(93, 188, 255, 0.3);  
    animation: scan-down 10s infinite linear;  
  }  
  
  /* 中央发光点 */  
  .vai-hero-effects .glow-point {  
    position: absolute;  
    width: 150px;  
    height: 150px;  
    border-radius: 50%;  
    background: radial-gradient(circle, rgba(0, 132, 255, 0.1) 0%, transparent 70%);  
    top: 50%;  
    left: 50%;  
    transform: translate(-50%, -50%);  
    filter: blur(10px);  
    z-index: 1;  
    opacity: 0.7;  
    animation: pulse-core 5s infinite alternate;  
  }  
  
  /* 鼠标跟随光晕 */  
  .vai-hero-effects .mouse-follower {  
    position: absolute;  
    width: 100px;  
    height: 100px;  
    border-radius: 50%;  
    background: radial-gradient(circle, rgba(0, 153, 255, 0.2) 0%, transparent 70%);  
    transform: translate(-50%, -50%);  
    opacity: 0;  
    z-index: 2;  
    transition: opacity 0.3s ease;  
    filter: blur(10px);  
    display: none; /* 初始不显示 */  
  }  
  
  /* 增强标题光晕效果 */  
  .vai-hero-title {  
    text-shadow: 0 0 15px rgba(0, 153, 255, 0.7);  
    background: linear-gradient(90deg, #ffffff, #99ccff);  
    -webkit-background-clip: text;  
    background-clip: text;  
    color: transparent;  
    animation: title-glow 3s infinite alternate;  
  }  
  
  /* 确保按钮正常工作 */  
  .vai-hero-content a,   
  .vai-hero-content button {  
    position: relative;  
    z-index: 100; /* 超高z-index确保在最上层 */  
  }  
  
  /* 动画定义 */  
  @keyframes pulse-glow {  
    0% {  
      transform: translate(0, 0) scale(1) rotate(0deg);  
      opacity: 0.5;  
    }  
    33% {  
      transform: translate(1%, 2%) scale(1.05) rotate(2deg);  
      opacity: 0.7;  
    }  
    66% {  
      transform: translate(-1%, -1%) scale(1.02) rotate(-1deg);  
      opacity: 0.6;  
    }  
    100% {  
      transform: translate(0, 0) scale(1) rotate(0deg);  
      opacity: 0.5;  
    }  
  }  
  
  @keyframes particle-fade {  
    0% {  
      transform: scale(0.8);  
      opacity: 0;  
    }  
    20% {  
      transform: scale(1.1);  
      opacity: 0.7;  
    }  
    40% {  
      transform: scale(0.9);  
      opacity: 0.5;  
    }  
    70% {  
      transform: scale(1);  
      opacity: 0.8;  
    }  
    100% {  
      transform: scale(0.8);  
      opacity: 0;  
    }  
  }  
  
  @keyframes connector-appear {  
    0% {  
      opacity: 0;  
      transform-origin: left center;  
      transform: scaleX(0) rotate(var(--angle, 30deg));  
    }  
    30% {  
      opacity: 0.8;  
      transform: scaleX(1) rotate(var(--angle, 30deg));  
    }  
    70% {  
      opacity: 0.8;  
      transform: scaleX(1) rotate(var(--angle, 30deg));  
    }  
    100% {  
      opacity: 0;  
      transform-origin: right center;  
      transform: scaleX(0) rotate(var(--angle, 30deg));  
    }  
  }  
  
  @keyframes grid-shift {  
    0% {  
      background-position: 0 0;  
    }  
    100% {  
      background-position: 25px 25px;  
    }  
  }  
  
  @keyframes wave-flow {  
    0% {  
      transform: translateY(-100px) scaleY(1);  
      opacity: 0;  
    }  
    20% {  
      transform: translateY(0) scaleY(0.8);  
      opacity: 0.3;  
    }  
    40% {  
      transform: translateY(30px) scaleY(1.2);  
      opacity: 0.2;  
    }  
    60% {  
      transform: translateY(60px) scaleY(0.9);  
      opacity: 0.3;  
    }  
    80% {  
      transform: translateY(90px) scaleY(1.1);  
      opacity: 0.2;  
    }  
    100% {  
      transform: translateY(150px) scaleY(1);  
      opacity: 0;  
    }  
  }  
  
  @keyframes scan-down {  
    0% {  
      top: -5%;  
      opacity: 0.7;  
    }  
    20% {  
      opacity: 0.5;  
    }  
    80% {  
      opacity: 0.5;  
    }  
    100% {  
      top: 105%;  
      opacity: 0.7;  
    }  
  }  
  
  @keyframes pulse-core {  
    0% {  
      transform: translate(-50%, -50%) scale(0.9);  
      opacity: 0.5;  
    }  
    100% {  
      transform: translate(-50%, -50%) scale(1.1);  
      opacity: 0.8;  
    }  
  }  
  
  @keyframes title-glow {  
    0% {  
      text-shadow: 0 0 10px rgba(0, 153, 255, 0.6);  
      opacity: 0.9;  
    }  
    100% {  
      text-shadow: 0 0 20px rgba(0, 153, 255, 0.9), 0 0 30px rgba(0, 102, 255, 0.4);  
      opacity: 1;  
    }  
  }     

/* 关闭按钮样式 */  
.closeBtn {  
    position: absolute;  
    top: 10px;  
    right: 15px;  
    font-size: 28px;  
    font-weight: bold;  
    color: #999;  
    cursor: pointer;  
    transition: all 0.2s ease;  
    width: 30px;  
    height: 30px;  
    display: flex;  
    justify-content: center;  
    align-items: center;  
    border-radius: 50%;  
}  

.closeBtn:hover {  
    color: #ff5555;  
    background-color: rgba(0, 0, 0, 0.05);  
    transform: scale(1.1);  
}  

/* 登录页面 */  
.loginPage {  
    border: none;  
    border-radius: 15px;  
    width: 350px;  
    height: 320px;  
    display: none;  
    flex-direction: column;  
    justify-content: center;  
    align-items: center;  
    background: white;  
    position: fixed;  
    top: 50%;  
    left: 50%;  
    transform: translate(-50%, -50%);  
    z-index: 999;  
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);  
    padding: 20px;  
}  
/* .loginPage.active{
    animation: fadeIn 0.5s ease;
} */
.loginPage input{  
    width: 85%;  
    height: 45px;  
    margin-top: 15px;  
    border-radius: 8px;  
    border: 1px solid #e0e0e0;  
    padding: 0 15px;  
    font-size: 16px;  
    transition: border-color 0.3s ease;  
}  

.loginPage input:focus {  
    border-color: #1677ff;  
    outline: none;  
    box-shadow: 0 0 0 2px rgba(0, 181, 229, 0.2);  
}  

.loginBtn {  
    border: 0;  
    width: 85%;  
    height: 45px;  
    margin-top: 25px;  
    font-size: 18px;  
    font-weight: 600;  
    color: white;  
    border-radius: 8px;  
    background: linear-gradient(to right, #1677ff, #0095c8);  
    cursor: not-allowed;  
    letter-spacing: 5px;  
    transition: all 0.3s ease;  
    box-shadow: 0 4px 10px rgba(0, 181, 229, 0.3);  
}  

.loginBtn:enabled {  
    cursor: pointer;  
}  

.loginBtn:enabled:hover {  
    background: linear-gradient(to right, #0095c8, #007eaa);  
    transform: translateY(-2px);  
}  

/* 注册页面 */  
.registerPage {  
    border: none;  
    border-radius: 15px;  
    width: 350px;  
    height: auto;  
    display: none;  
    flex-direction: column;  
    justify-content: center;  
    align-items: center;  
    background: white;  
    position: fixed;  
    top: 50%;  
    left: 50%;  
    transform: translate(-50%, -50%);  
    z-index: 999;  
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);  
    padding: 30px 20px;  
}  

/* 所有输入框的通用样式 */  
.registerPage input{  
    width: 85%;  
    height: 45px;  
    margin-top: 15px;  
    border-radius: 8px;  
    border: 1px solid #e0e0e0;  
    padding: 0 15px;  
    font-size: 16px;  
    transition: border-color 0.3s ease;  
    box-sizing: border-box; /* 确保边框包含在宽度内 */  
}  
.registerPage input:focus {  
    border-color: #1677ff;  
    outline: none;  
    box-shadow: 0 0 0 2px rgba(0, 181, 229, 0.2);  
}  

/* 验证码容器 */  
.captchaContainer {  
    display: flex;  
    width: 85%;  
    justify-content: space-between;  
    align-items: center;  
    margin-top: 15px;  
}  

/* 验证码输入框 */  
.regCaptcha {  
    width: 60% !important; /* 覆盖默认输入框宽度 */  
    margin-top: 0 !important; /* 去掉顶部边距，因为容器已有边距 */  
}  

/* 获取验证码按钮 */  
.getRegCaptcha {  
    width: 38%; /* 调整宽度使总宽度与输入框一致 */  
    height: 45px;  
    cursor: not-allowed;  
    background: #f5f5f5;  
    color: #999;  
    border: 0;  
    border-radius: 8px;  
    font-weight: 500;  
    transition: all 0.3s ease;  
    font-size: 14px;  
}  

.getRegCaptcha:enabled {  
    cursor: pointer;  
    background: #e0e0e0;  
    color: #333;  
}  

.getRegCaptcha:enabled:hover {  
    background: #d5d5d5;  
}  

/* 注册按钮 */  
.regBtn {  
    border: 0;  
    width: 85%;  
    height: 45px;  
    margin-top: 25px;  
    font-size: 18px;  
    font-weight: 600;  
    color: white;  
    border-radius: 8px;  
    background: linear-gradient(to right, #1677ff, #0095c8);  
    cursor: not-allowed;  
    letter-spacing: 5px;  
    transition: all 0.3s ease;  
    box-shadow: 0 4px 10px rgba(0, 181, 229, 0.3);  
}  

.regBtn:enabled {  
    cursor: pointer;  
}  

.regBtn:enabled:hover {  
    background: linear-gradient(to right, #0095c8, #007eaa);  
    transform: translateY(-2px);  
}  


.tab {  
    background: #F5F8FB; /* 推荐的浅蓝灰色 */  
    border-bottom: 1px solid rgba(0, 181, 229, 0.1); /* 非常浅的蓝色边框 */
    width: 100%;  
    height: 70px; /* 稍微减小高度，更加协调 */  
    display: flex;  
    align-items: center;  
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04); /* 更精细的阴影 */  
    position: sticky;  
    top: 0;  
    z-index: 10;  
    padding: 0 20px; /* 增加两侧内边距 */  
    border-bottom: 1px solid rgba(0, 0, 0, 0.03); /* 微妙的边框 */  
}  

.tab div {  
    display: flex;  
    justify-content: center;  
    align-items: center;  
    width: 120px;  
    height: 65%; /* 比容器略小 */  
    background: transparent; 
    color: black;  
    margin-left: 15px; /* 调整间距 */  
    cursor: pointer;  
    border: 0;   
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); /* 更平滑的过渡 */  
    font-weight: 500;  
    font-size: 14px; /* 控制字体大小 */  
    /* box-shadow: 0 3px 6px rgba(0, 181, 229, 0.2); */
    position: relative;  
    overflow: hidden;  
}  

.tab div:nth-child(1) {  
    margin-left: 0; /* 第一个标签不需要左边距 */  
    /* logo大小大一点 */
    width: 150px;  
    height: 50px; 
}  

.tab div:nth-child(6) {  
    margin-left: auto;  
    margin-right: 20px; /* 右侧不需要边距，因为容器已有内边距 */   
}  
.tab div:not(:first-child):hover {  
    color: #1677ff;    
    border-bottom: 2px solid #1677ff; 
}  
.tab div:hover{
    transform: translateY(-3px); /* 更微妙的悬停效果 */ 
    filter: brightness(1.05); /* 轻微增亮 */   
}
.tab div:active {  
    transform: translateY(1px); /* 点击效果 */  
    /* box-shadow: 0 2px 5px rgba(0, 181, 229, 0.2);   */
    transition: all 0.1s;  
}  
 
.tab div.active { 
    border-bottom: 2px solid #1677ff;
}  


/* 添加响应式调整 */  
@media (max-width: 768px) {  
    .tab {  
        height: 60px;  
        padding: 0 15px;  
        overflow-x: auto; /* 允许在小屏幕上水平滚动 */  
    }  
    
    .tab div {  
        min-width: 100px; /* 设置最小宽度 */  
        width: auto; /* 允许根据内容自适应 */  
        padding: 0 15px;  
        font-size: 13px;  
        flex-shrink: 0; /* 防止压缩 */  
    }  
}   

/* 功能页面 */  
.functionPage {  
    display: none;  
    flex-direction: column;  
    width: 100%;  
    background: white;  
    min-height: 100vh;  
}  

/* 这里是关键修改 - 为functions添加蓝色背景和flex布局 */  
.functions {  
    width: 100%;  
    flex: 1; /* 填充剩余空间 */  
    display: flex;  
    flex-direction: column;  
    background-color: rgb(237, 241, 249);
    padding: 0 0;
    min-height: calc(100vh - 70px); /* 确保至少填满剩余视口高度 */  
}  

/* 视频检测 */  
.videoDetection {  
    display: none;  
    animation: fadeIn 0.5s ease;  
    height: 100%;  
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    color: #333;
}  

.box {  
    width: 90%;  
    height: 800px;  
    margin: 0px auto;  
    padding-top: 30px;  
    background-color: white;  
    border-radius: 15px;  
    display: flex;  
    flex-direction: column;  
    justify-content: center;  
    align-items: center;  
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);  
}   

.btn {  
    display: flex;  
    flex-direction: column;  
    justify-content: center;  
    align-items: center;  
    width: 90%;  
    height: 80%;  
    line-height: 30px;  
    margin: 0px auto;  
    text-align: center;  
    color: #5098F8;  
    border-radius: 12px;  
    border: 2px dashed #5098F8;  
    background-color: rgba(80, 152, 248, 0.05);  
    cursor: pointer;  
    transition: all 0.3s ease;  
}  

.btn:hover {  
    background-color: rgba(80, 152, 248, 0.1);  
    transform: scale(0.99);  
}  

.starDetect {  
    width: 180px;  
    height: 50px;  
    border: 0;  
    color: white;  
    box-shadow: 0 4px 10px rgba(0, 181, 229, 0.3);  
    background: linear-gradient(to right, #1677ff, #0095c8);  
    border-radius: 25px;  
    cursor: pointer;  
    font-size: 18px;  
    font-weight: 600;  
    margin-top: 20px ;  
    transition: all 0.3s ease;  
}  

.starDetect:hover {  
    background: linear-gradient(to right, #0095c8, #007eaa);  
    transform: translateY(-3px);  
    box-shadow: 0 6px 15px rgba(0, 181, 229, 0.4);  
}  
.AIVideoGeneration{
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    color: #333;
}
.videoTitle{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 10%;
    /* border-bottom: 1px solid gray; */
    box-shadow: 0 2px rgba(0, 0, 0, 0.1);  
    margin-top: -30px;
}
.videoContainer1{
    display: flex;
    position: relative;
    flex-direction: column;
    /* align-items: center; */
    width: 100%;
    height: 90%;
}

.videoDescribe{
    width: 100%;
    height: 60%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.videoParame{
    width: 80%;
    /* height: 50%; */
    display: flex;
    position: absolute; 
    top: 100px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
    border-radius: 10px;
    padding-bottom: 200px;
    padding-left: 20px;
    font-size: 18px;
}
.generateBtn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;  
    height: 50px;  
    color: white;  
    border: 0px;
    box-shadow: 0 4px 10px rgba(0, 181, 229, 0.3);  
    background: linear-gradient(to right, #1677ff, #0095c8);  
    border-radius: 25px;  
    font-size: 18px;  
    font-weight: 600;  
    bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;

    position: absolute;
	left: 0;
	right: 0;
	margin: auto;
}
.generateBtn:hover{
    background: linear-gradient(to right, #0095c8, #007eaa);  
    transform: translateY(-2px);
}
.generateResult{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80%;
}
.videoShow{
    border-radius: 10px;
    width: 1024px;
    aspect-ratio: 16/9; /* 保持16:9比例 */  
    /* background: red; */
    background: transparent;
    margin-top: 80px;
}
.downloadBtn{
    display: flex;
    justify-content: center;
    align-items: center;
}
.downloadBtn button, .downloadBtn a{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0px;
    border-radius: 10px;
    width: 10%;
    height: 50px;
    margin-top: 85px;
    margin-left: 100px;
    margin-right: 100px;
    cursor: pointer;
    font-size: 18px;
}
.download{
    text-decoration: none;
    background: #8A2BE2;
    color: #FFFFFF;
}
/* 其他功能页面 */  
.userCenter, .AIVideoGeneration, .missionCenter, .APIAccess, .userSetting {  
    display: none;  
    animation: fadeIn 0.5s ease;
}

.missionCenter{
    width: 100%;
    height: 800px;
}
.missionCenterContainer{
    display: flex;
    flex-direction: column;
    background: rgb(237, 241, 249);
    align-items: center;
    width: 100%;
    min-height: 750px;
    border-radius: 10px;
}
.missionCenterTable {  
    width: 90%;  
    margin-top: 20px;  
    table-layout: fixed;  
    border-collapse: collapse;  
    border-spacing: 0;  
    box-shadow: 0 1px 3px rgba(0,0,0,0.05); /* 轻微阴影增加立体感 */  
}  

.missionCenterTable thead {  
    background: #f8f8f8; /* 更柔和的头部背景色 */  
}  

.missionCenterTable thead tr th {  
    width: 25%; /* 4列均分 */  
    height: 56px; /* 稍微增加高度 */  
    padding: 12px 16px; /* 增加内边距 */  
    text-align: center;  
    font-weight: 500; /* 稍微调整字重 */  
    color: #4a5568; /* 更柔和的文字颜色 */  
    border-top: none;  
    border-left: none;  
    border-right: none;  
}  

.missionCenterTable tbody {  
    display: table-row-group;  
}  

.missionCenterTable tbody tr {  
    display: table-row;  
    background: white;
    transition: background-color 0.2s ease; /* 添加悬停过渡效果 */  
}  

.missionCenterTable tbody tr:hover {  
    background-color: #f9fafb; /* 鼠标悬停效果 */  
}  

.missionCenterTable tbody tr td {  
    background: transparent; /* 移除背景色以允许行悬停效果 */  
    width: 25%;  
    height: 60px; /* 增加高度 */  
    padding: 14px 16px; /* 增加内边距 */  
    text-align: center;  
    display: table-cell;  
    color: #2d3748; /* 内容文字颜色 */  
    border-top: none;  
    border-left: none;  
    border-right: none;  
}  

/* 最后一行移除底边框 */  
.missionCenterTable tbody tr:last-child td {  
    border-bottom: none;  
}  

/* 奇偶行颜色区分（可选） */  
.missionCenterTable tbody tr:nth-child(even) {  
    background-color: #f9fafb;  
}   
.noDataShow{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    color: gray;
}

.APIAccess {  
    display: none;  
    justify-content: center;  
    align-items: flex-start; /* 顶部对齐 */  
    background: #F9F9F9;  
    width: 100%;  
    min-height: 800px; /* 增加了页面最小高度 */  
    padding: 0 0;  
}  

.APIcontainer {  
    width: 90%;  
    max-width: 1200px; /* 限制最大宽度 */  
    display: flex;  
    flex-direction: row;  
    gap: 30px;  
    margin-top: 20px;  
}  

.Sidebar {  
    width: 20%;  
    border-radius: 10px;  
    background: #FFFFFF;  
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);  
    display: flex;  
    flex-direction: column;  
    align-items: center;  
    padding: 15px 0;  
    /* 添加最小高度确保边栏足够高 */  
    min-height: 800px;  
}  

.APImainContent {  
    width: 80%;  
    background: #FFFFFF;  
    border-radius: 10px;  
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);   
    padding: 20px;  
    transition: all 0.3s ease;   
    /* 添加最小高度确保内容区域足够高 */  
    min-height: 600px;  
}  

.Sidebar div {  
    display: flex;  
    justify-content: center;  
    align-items: center;  
    width: 90%;  
    height: 56px; /* 增加了菜单项高度，使其更加舒适 */  
    border-radius: 10px;  
    cursor: pointer;  
    margin: 8px 0;   
    transition: all 0.25s ease;   
    position: relative;   
    font-weight: 500;   
}  

.Sidebar div:hover {  
    background: #f5f5f5;  
    transform: translateY(-2px); /* 轻微上浮效果 */  
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* 悬停时添加阴影 */  
}  

.Sidebar div.active {  
    background: #1677ff;  
    color: #ffffff;  
    border-left: 3px solid #3366ff; /* 添加活动状态指示器 */  
    font-weight: 600;  
}  

.APImainContent div {  
    display: none;  
    opacity: 0;  
    transition: opacity 0.3s ease-in-out; /* 添加淡入淡出效果 */  
    /* 为内容区域添加最小高度 */  
    min-height: 560px;  
}  

.APImainContent div.active {  
    display: block;  
    opacity: 1;  
}  

/* 添加简单的响应式支持 */  
@media (max-width: 768px) {  
    .APIcontainer {  
        flex-direction: column;  
    }  
    
    .Sidebar, .APImainContent {  
        width: 100%;  
        margin: 0 0 20px 0;  
        /* 在移动视图中减小最小高度 */  
        min-height: 400px;  
    }  
    
    .Sidebar div {  
        height: 50px; /* 在移动端恢复原来的高度 */  
    }  
}   
.fun{
    background-color: rgb(237, 241, 249);
    /* height: 100%; */
}
.userSetting{
    z-index: 999;
    position: absolute;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 150px;
    right: 50px;
    top: 70px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
}
.userSetting div{
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 100%;
    height: 40px;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
    /*margin-left: -10px;*/
    transition: 300ms ease-in-out;
}
.userSetting div:hover{
    background: #f0f0f0;
}
.userSetting div i{
    font-size: 22px;
}

.userCenter {  
    display: none; /* 保持原有display属性 */  
    justify-content: center;  
    align-items: flex-start; /* 顶部对齐 */  
    position: absolute;  
    top: 90px;  
    left: 0px;  
    right: 0px;  
    margin: auto;  
    z-index: 998;  
    width: 100%;  
    min-height: 800px; /* 与API接入界面一致 */  
    background: var(--bg-light);  
    padding: 20px 0;  
}  

.userCenterContainer {  
    display: flex;  
    justify-content: center;  
    align-items: flex-start; /* 顶部对齐 */  
    width: 90%;  
    max-width: 1200px; /* 限制最大宽度 */  
    height: 100%;  
    gap: 30px; /* 间隔一致性 */  
    margin-top: 20px;  
}  

.userCenterFun {  
    display: flex;  
    flex-direction: column;  
    align-items: center;  
    width: 30%;  
    min-height: 600px; /* 保证足够高度 */  
    background: var(--bg-white);  
    border-radius: var(--radius-md);  
    box-shadow: var(--shadow-sm);  
    padding: 15px 0;  
    position: sticky; /* 与API界面一样，滚动时保持可见 */  
    top: 110px;  
}  

.userCenterFun div {  
    display: flex;  
    justify-content: center;  
    align-items: center;  
    width: 90%;  
    height: 56px; /* 与API界面一致 */  
    border-radius: var(--radius-sm);  
    margin: 8px 0;  
    cursor: pointer;  
    transition: all 0.25s ease; /* 更平滑的过渡 */  
    position: relative;  
    font-weight: 500;  
    color: var(--text-dark);  
}  

.userCenterFun div:hover {  
    background: #f0f7fa;  
    transform: translateX(5px); /* 侧向移动效果 */  
    box-shadow: var(--shadow-sm);  
}  


.userCenterFun div.active {  
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));  
    color: white;  
    border-left: 3px solid #3366ff; /* 活动状态指示器 */  
    font-weight: 600;  
}  

.userCenterContent {  
    width: 70%;  
    min-height: 600px; /* 与侧边栏一致 */  
    background: var(--bg-white);  
    border-radius: var(--radius-md);  
    box-shadow: var(--shadow-sm);  
    padding: 20px;  
    transition: all 0.3s ease;  
}  

.userInfo, .changeUserPass {  
    display: none; /* 保持原有display属性 */  
    flex-direction: column;  
    width: 100%;  
    height: auto;  
    background: var(--bg-white);  
    border-radius: var(--radius-md);  
    min-height: 560px; /* 确保内容区域足够高 */  
}  


.userInfo div:first-child, .changeUserPass div:first-child {  
    display: flex;  
    align-items: center;  
    color: white;  
    padding-left: 20px;  
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)); /* 渐变标题 */  
    width: 100%;  
    height: 50px;  
    border-radius: var(--radius-sm) var(--radius-sm) 0 0; /* 只有顶部圆角 */  
    font-weight: 500;  
    margin-bottom: 15px;  
    position: relative;  
    overflow: hidden;  
}  

/* 添加微妙的内部高光效果 */  
.userInfo div:first-child::before, .changeUserPass div:first-child::before {  
    content: '';  
    position: absolute;  
    top: 0;  
    left: 0;  
    width: 100%;  
    height: 30%;  
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));  
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;  
}  

.userInfo input, .changeUserPass input {  
    width: 50%;  
    height: 40px;  
    margin: 10px 0 15px 50px;  
    color: var(--text-dark);  
    font-size: 16px; /* 更一致的字体大小 */  
    padding-left: 15px;  
    border: 1px solid var(--primary-light);  
    border-radius: var(--radius-sm);  
    background: #f9fbfd; /* 微妙的背景色 */  
    transition: all 0.25s ease;  
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);  
}  

.userInfo input:focus, .changeUserPass input:focus {  
    outline: none;  
    border-color: var(--primary);  
    box-shadow: 0 0 0 3px var(--primary-light);  
}  

.changeInfoBtn, .changePasBtn {  
    color: white;  
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)); /* 渐变按钮 */  
    width: 50%;  
    height: 40px;  
    margin: 15px 0 20px 50px;  
    border: 0px;  
    border-radius: var(--radius-sm);  
    font-size: 16px;  
    font-weight: 500;  
    cursor: pointer;  
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); /* 更平滑的过渡 */  
    box-shadow: 0 3px 6px rgba(0, 181, 229, 0.2); /* 柔和的阴影 */  
    position: relative;  
    overflow: hidden;  
}  

/* 按钮内部高光 */  
.changeInfoBtn::before, .changePasBtn::before {  
    content: '';  
    position: absolute;  
    top: 0;  
    left: 0;  
    width: 100%;  
    height: 30%;  
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));  
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;  
}  

.changeInfoBtn:hover, .changePasBtn:hover {  
    transform: translateY(-3px);  
    box-shadow: 0 5px 10px rgba(0, 181, 229, 0.3);  
    filter: brightness(1.05); /* 轻微增亮 */  
}  

.changeInfoBtn:active, .changePasBtn:active {  
    transform: translateY(1px);  
    box-shadow: 0 2px 5px rgba(0, 181, 229, 0.2);  
    transition: all 0.1s;  
}  
.APImainContent div span{
    display: block;
}


/* 添加响应式支持 */  
@media (max-width: 992px) {  
    .userCenterContainer {  
        gap: 20px;  
    }  
    
    .userCenterFun {  
        width: 32%;  
    }  
    
    .userCenterContent {  
        width: 68%;  
        padding: 25px;  
    }  
}  

@media (max-width: 768px) {  
    .userCenter {  
        top: 70px;  
        padding: 20px 0;  
    }  
    
    .userCenterContainer {  
        flex-direction: column;  
        width: 95%;  
    }  
    
    .userCenterFun, .userCenterContent {  
        width: 100%;  
        margin: 0 0 15px 0;  
        min-height: 400px; /* 在移动视图中减小最小高度 */  
    }  
    
    .userCenterFun {  
        position: static;  
        padding: 15px 0;  
    }  
    
    .userCenterFun div {  
        height: 50px;  
        font-size: 14px;  
    }  
    
    .userInfo input, .changeUserPass input, .changeInfoBtn, .changePasBtn {  
        width: 80%;  
        margin-left: 20px;  
    }  
}



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

/* 响应式设计 */  
@media (max-width: 768px) {  
    .tab div {  
        width: 90px;  
        margin-left: 10px;  
        font-size: 14px;  
    }  
    
    .loginPage, .registerPage {  
        width: 90%;  
        max-width: 350px;  
    }  
    
    .homeUp button {  
        width: 160px;  
        font-size: 16px;  
    }  
}  

/* 分页容器 */  
.pagination-container {  
    display: flex;  
    justify-content: space-between;  
    align-items: center;  
    margin-top: 20px;  
    padding: 10px 0;  
    flex-wrap: wrap;  
    gap: 15px;  
  }  
  
  /* 分页信息 */  
  .pagination-info {  
    color: #718096;  
    font-size: 14px;  
  }  
  
  .pagination-info span {  
    font-weight: 500;  
    color: #2D3748;  
  }  
  
  /* 分页控制区 */  
  .pagination-controls {  
    display: flex;  
    align-items: center;  
    gap: 8px;  
  }  
  
  /* 页码按钮容器 */  
  .pagination-pages {  
    display: flex;  
    gap: 5px;  
  }  
  
  /* 通用按钮样式 */  
  .pagination-btn {  
    display: flex;  
    justify-content: center;  
    align-items: center;  
    width: 32px;  
    height: 32px;  
    border-radius: 6px;  
    border: 1px solid #E2E8F0;  
    background: white;  
    color: #718096;  
    cursor: pointer;  
    transition: all 0.2s ease;  
  }  
  
  .pagination-btn:hover {  
    background: #F7FAFC;  
    color: #1677ff;  
    border-color: #1677ff;  
  }  
  
  .pagination-btn:disabled {  
    opacity: 0.5;  
    cursor: not-allowed;  
    background: #F7FAFC;  
    border-color: #E2E8F0;  
  }  
  
  /* 页码按钮 */  
  .page-btn {  
    min-width: 32px;  
    height: 32px;  
    border-radius: 6px;  
    border: 1px solid #E2E8F0;  
    background: white;  
    color: #2D3748;  
    font-size: 14px;  
    cursor: pointer;  
    transition: all 0.2s ease;  
    padding: 0 8px;  
  }  
  
  .page-btn:hover {  
    border-color: #1677ff;  
    color: #1677ff;  
  }  
  
  .page-btn.active {  
    background: linear-gradient(135deg, #1677ff, #00A5D0);  
    color: white;  
    border: none;  
    font-weight: 500;  
    box-shadow: 0 2px 5px rgba(0, 181, 229, 0.3);  
  }  
  
  /* 跳转区域 */  
  .pagination-jump {  
    display: flex;  
    align-items: center;  
    margin-left: 15px;  
    color: #718096;  
    font-size: 14px;  
  }  
  
  #page-jump {  
    width: 40px;  
    height: 32px;  
    margin: 0 8px;  
    border-radius: 6px;  
    border: 1px solid #E2E8F0;  
    text-align: center;  
    font-size: 14px;  
  }  
  
  #page-jump:focus {  
    outline: none;  
    border-color: #1677ff;  
    box-shadow: 0 0 0 3px rgba(0, 181, 229, 0.1);  
  }  
  
  .jump-btn {  
    height: 32px;  
    padding: 0 12px;  
    border-radius: 6px;  
    background: linear-gradient(135deg, #1677ff, #00A5D0);  
    color: white;  
    border: none;  
    font-size: 14px;  
    cursor: pointer;  
    transition: all 0.2s ease;  
    margin-left: 5px;  
  }  
  
  .jump-btn:hover {  
    box-shadow: 0 3px 6px rgba(0, 181, 229, 0.2);  
    transform: translateY(-1px);  
  }  
  
  /* 响应式调整 */  
  @media (max-width: 768px) {  
    .pagination-container {  
      flex-direction: column;  
      align-items: flex-start;  
    }  
    
    .pagination-controls {  
      width: 100%;  
      justify-content: space-between;  
      flex-wrap: wrap;  
    }  
    
    .pagination-jump {  
      margin-left: 0;  
      margin-top: 10px;  
      width: 100%;  
      justify-content: flex-end;  
    }  
}  



.vai-container * {  
    margin: 0;  
    padding: 0;  
    box-sizing: border-box;  
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  
}  

.vai-container {  
    display: block;
    width: 100%;  
    max-width: 1200px;  
    margin: 0 auto;  
    padding: 0 20px;  
    color: #333333;  
}  

.vai-btn {  
    display: inline-flex;  
    align-items: center;  
    justify-content: center;  
    gap: 8px;  
    padding: 10px 24px;  
    font-weight: 600;  
    font-size: 16px;  
    border-radius: 6px;  
    cursor: pointer;  
    transition: all 0.2s ease;  
    border: none;  
    outline: none;  
    text-decoration: none;  
}  

.vai-btn-primary {  
    background: linear-gradient(135deg, #0066cc 0%, #00b8d4 100%);  
    color: #ffffff;  
    box-shadow: 0 3px 12px rgba(0, 102, 204, 0.2);  
}  

.vai-btn-primary:hover {  
    background: linear-gradient(135deg, #004e9e 0%, #0090a8 100%);  
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);  
    transform: translateY(-1px);  
}  

.vai-btn-outline {  
    background: transparent;  
    color: #0066cc;  
    border: 2px solid #0066cc;  
}  

.vai-btn-outline:hover {  
    background: #e6f0ff;  
    transform: translateY(-1px);  
}  

.vai-section {  
    padding: 60px 0;  
}  

.vai-section-title {  
    font-size: 32px;  
    text-align: center;  
    margin-bottom: 60px;  
    position: relative;  
    color: #333333;  
}  

.vai-section-title:after {  
    content: '';  
    position: absolute;  
    bottom: -15px;  
    left: 50%;  
    transform: translateX(-50%);  
    width: 60px;  
    height: 4px;  
    background: linear-gradient(135deg, #0066cc 0%, #00b8d4 100%);  
    border-radius: 2px;  
}  

.vai-text-center {  
    text-align: center;  
}  

.vai-card {  
    background: #ffffff;  
    border-radius: 12px;  
    overflow: hidden;  
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);  
    transition: all 0.3s ease;  
}  

.vai-card:hover {  
    transform: translateY(-5px);  
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);  
}  

.vai-hero {  
    padding: 80px 0;  
    background: linear-gradient(135deg, #f8faff 0%, #e6f0ff 100%);  
    position: relative;  
    overflow: hidden;  
}  

.vai-hero::before {  
    content: '';  
    position: absolute;  
    top: -100px;  
    right: -100px;  
    width: 300px;  
    height: 300px;  
    border-radius: 50%;  
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 184, 212, 0.1) 100%);  
}  

.vai-hero::after {  
    content: '';  
    position: absolute;  
    bottom: -50px;  
    left: -50px;  
    width: 200px;  
    height: 200px;  
    border-radius: 50%;  
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.1) 0%, rgba(0, 102, 204, 0.1) 100%);  
}  

.vai-hero-content {  
    position: relative;  
    z-index: 1;  
    display: flex;  
    flex-direction: column;  
    align-items: center;  
    text-align: center;  
    max-width: 800px;  
    margin: 0 auto;  
}  

.vai-hero-title {  
    font-size: 48px;  
    font-weight: 800;  
    margin-bottom: 20px;  
    background: linear-gradient(135deg, #0066cc 0%, #00b8d4 100%);  
    -webkit-background-clip: text;  
    background-clip: text;  
    color: transparent;  
}  

.vai-hero-subtitle {  
    font-size: 20px;  
    color: #666666;  
    margin-bottom: 40px;  
    line-height: 1.5;  
}  

.vai-hero-buttons {  
    display: flex;  
    gap: 20px;  
}  

.vai-feature-grid {  
    display: grid;  
    grid-template-columns: repeat(2, 1fr);  
    gap: 40px;  
    margin-top: 20px;  
}  

.vai-feature-card {  
    background: #ffffff;  
    border-radius: 16px;  
    overflow: hidden;  
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);  
    transition: all 0.3s ease;  
    height: 100%;  
    display: flex;  
    flex-direction: column;  
}  

.vai-feature-card:hover {  
    transform: translateY(-5px);  
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);  
}  

.vai-feature-image {  
    height: 220px;  
    width: 100%;  
    background-color: #edf0f5;  
    position: relative;  
    overflow: hidden;  
}  

.vai-feature-image i {  
    position: absolute;  
    top: 50%;  
    left: 50%;  
    transform: translate(-50%, -50%);  
    font-size: 80px;  
    color: #0066cc;  
    opacity: 0.8;  
}  

.vai-feature-content {  
    padding: 30px;  
    flex-grow: 1;  
    display: flex;  
    flex-direction: column;  
}  

.vai-feature-title {  
    font-size: 24px;  
    margin-bottom: 15px;  
    color: #0066cc;  
}  

.vai-feature-description {  
    margin-bottom: 25px;  
    color: #666666;  
    flex-grow: 1;  
}  

.vai-feature-button {  
    align-self: flex-start;  
}  

.vai-workflow {  
    background-color: #f7f9fc;  
    padding: 60px 0;  
}  

.vai-workflow-grid {  
    display: grid;  
    grid-template-columns: repeat(3, 1fr);  
    gap: 30px;  
}  

.vai-workflow-item {  
    text-align: center;  
    padding: 30px;  
    background: #ffffff;  
    border-radius: 12px;  
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);  
    position: relative;  
}  

.vai-workflow-item::after {  
    content: '';  
    position: absolute;  
    top: 50%;  
    right: -30px;  
    transform: translateY(-50%);  
    width: 30px;  
    height: 2px;  
    background: #e6f0ff;  
    display: none;  
}  

.vai-workflow-item:not(:last-child)::after {  
    display: block;  
}  

.vai-workflow-icon {  
    background: #e6f0ff;  
    width: 80px;  
    height: 80px;  
    border-radius: 50%;  
    display: flex;  
    align-items: center;  
    justify-content: center;  
    margin: 0 auto 20px;  
}  

.vai-workflow-icon i {  
    font-size: 32px;  
    color: #0066cc;  
}  

.vai-workflow-number {  
    position: absolute;  
    top: -15px;  
    left: -15px;  
    width: 40px;  
    height: 40px;  
    background: linear-gradient(135deg, #0066cc 0%, #00b8d4 100%);  
    color: #ffffff;  
    border-radius: 50%;  
    display: flex;  
    align-items: center;  
    justify-content: center;  
    font-weight: 700;  
    font-size: 18px;  
}  

.vai-workflow-title {  
    font-size: 20px;  
    margin-bottom: 10px;  
}  

.vai-workflow-description {  
    color: #666666;  
    font-size: 15px;  
}  

.vai-benefits {  
    padding: 60px 0;  
}  

.vai-benefits-grid {  
    display: grid;  
    grid-template-columns: repeat(3, 1fr);  
    gap: 30px;  
}  

.vai-benefit-item {  
    text-align: center;  
    padding: 30px;  
    background: #ffffff;  
    border-radius: 12px;  
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);  
    transition: all 0.3s ease;  
}  

.vai-benefit-item:hover {  
    transform: translateY(-5px);  
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);  
}  

.vai-benefit-icon {  
    font-size: 40px;  
    color: #0066cc;  
    margin-bottom: 20px;  
}  

.vai-benefit-title {  
    font-size: 20px;  
    margin-bottom: 15px;  
}  

.vai-benefit-description {  
    color: #666666;  
}  

.vai-faq {  
    background-color: #f7f9fc;  
    padding: 60px 0;  
}  

.vai-faq-list {  
    max-width: 800px;  
    margin: 0 auto;  
}  

.vai-faq-item {  
    background: #ffffff;  
    border-radius: 8px;  
    margin-bottom: 20px;  
    overflow: hidden;  
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);  
}  

.vai-faq-question {  
    padding: 20px 25px;  
    font-weight: 600;  
    cursor: pointer;  
    display: flex;  
    justify-content: space-between;  
    align-items: center;  
}  

.vai-faq-question i {  
    transition: transform 0.3s ease;  
}  

.vai-faq-answer {  
    padding: 0 25px 20px;  
    color: #666666;  
    display: none;  
}  

/* 响应式设计 */  
@media (max-width: 991px) {  
    .vai-feature-grid {  
        grid-template-columns: 1fr;  
    }  

    .vai-workflow-grid {  
        grid-template-columns: 1fr;  
    }  

    .vai-workflow-item::after {  
        display: none;  
    }  

    .vai-benefits-grid {  
        grid-template-columns: repeat(2, 1fr);  
    }  
}  

@media (max-width: 767px) {  
    .vai-hero-title {  
        font-size: 36px;  
    }  

    .vai-hero-subtitle {  
        font-size: 18px;  
    }  

    .vai-hero-buttons {  
        flex-direction: column;  
        gap: 15px;  
    }  

    .vai-benefits-grid {  
        grid-template-columns: 1fr;  
    }  

    .vai-section {  
        padding: 40px 0;  
    }  
}


/* 文生视频任务详情页样式 */  
.vtg-container * {  
    margin: 0;  
    padding: 0;  
    box-sizing: border-box;  
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  
}  

.vtg-container {  
    display: none;
    position: absolute;
    top: 10px;
    width: 100%;
    max-width: 1200px;  
    left: 0;
    right: 0;
    margin: 0 auto;  
    padding: 30px 20px;  
    color: #333333;
}  

.vtg-back-link {  
    display: inline-flex;  
    align-items: center;  
    color: #0066cc;  
    text-decoration: none;  
    margin-bottom: 25px;  
    font-weight: 500;  
}  

.vtg-back-link i {  
    margin-right: 8px;  
}  

.vtg-back-link:hover {  
    text-decoration: underline;  
}  

.vtg-header {  
    display: flex;  
    justify-content: space-between;  
    align-items: flex-start;  
    margin-bottom: 30px;  
}  

.vtg-title-area h1 {  
    font-size: 32px;  
    margin-bottom: 8px;  
    color: #333333;  
}  

.vtg-status {  
    display: flex;  
    align-items: center;  
    margin-bottom: 10px;  
    font-size: 15px;  
}  

.vtg-status-badge {  
    display: inline-flex;  
    align-items: center;  
    padding: 6px 12px;  
    border-radius: 50px;  
    font-weight: 600;  
    font-size: 14px;  
    margin-right: 15px;  
}  

.vtg-status-completed {  
    background-color: #e6f7ed;  
    color: #1e8e3e;  
}  

.vtg-date {  
    color: #666666;  
}  

.vtg-action-buttons {  
    display: flex;  
    gap: 15px;  
}  

.vtg-btn {  
    display: inline-flex;  
    align-items: center;  
    justify-content: center;  
    gap: 8px;  
    padding: 10px 20px;  
    font-weight: 600;  
    font-size: 15px;  
    border-radius: 6px;  
    cursor: pointer;  
    transition: all 0.2s ease;  
    border: none;  
    outline: none;  
    text-decoration: none;  
}  

.vtg-btn-primary {  
    background: linear-gradient(135deg, #0066cc 0%, #00b8d4 100%);  
    color: #ffffff;  
    box-shadow: 0 3px 12px rgba(0, 102, 204, 0.2);  
}  

.vtg-btn-primary:hover {  
    background: linear-gradient(135deg, #004e9e 0%, #0090a8 100%);  
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);  
    transform: translateY(-1px);  
}  

.vtg-btn-outline {  
    background: transparent;  
    color: #0066cc;  
    border: 2px solid #0066cc;  
}  

.vtg-btn-outline:hover {  
    background: #e6f0ff;  
    transform: translateY(-1px);  
}  

.vtg-content {  
    display: grid;  
    grid-template-columns: 3fr 2fr;  
    gap: 30px;  
}  

.vtg-video-section {  
    background: #ffffff;  
    border-radius: 12px;  
    overflow: hidden;  
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);  
}  

.vtg-video-container {  
    width: 100%;  
    background: #000;  
    position: relative;  
    aspect-ratio: 16/9;  
}  

.vtg-video-container video {  
    width: 100%;  
    height: 100%;  
    object-fit: contain;  
}  

.vtg-video-actions {  
    padding: 20px 25px;  
    display: flex;  
    justify-content: space-between;  
    align-items: center;  
    border-bottom: 1px solid #eee;  
}  

.vtg-video-quality {  
    display: flex;  
    align-items: center;  
}  

.vtg-quality-label {  
    margin-right: 12px;  
    font-weight: 500;  
}  

.vtg-quality-select {  
    padding: 6px 12px;  
    border-radius: 4px;  
    border: 1px solid #ddd;  
    background: #f9f9f9;  
    font-size: 14px;  
    cursor: pointer;  
}  

.vtg-download-options {  
    display: flex;  
    gap: 12px;  
}  

.vtg-download-btn {  
    outline: none;
    text-decoration: none;  
    border: none;
    display: inline-flex;  
    align-items: center;  
    justify-content: center;  
    gap: 6px;  
    padding: 8px 16px;  
    border-radius: 4px;  
    font-weight: 500;  
    font-size: 14px;  
    cursor: pointer;  
    transition: all 0.2s ease;  
}  

.vtg-download-primary {  
    background: #0066cc;  
    color: white;  
}  

.vtg-download-primary:hover {  
    background: #004e9e;     
}  

.vtg-video-info {  
    padding: 25px;  
}  

.vtg-video-meta {  
    display: flex;  
    justify-content: space-between;  
    flex-wrap: wrap;  
    padding-bottom: 15px;  
    border-bottom: 1px solid #eee;  
    margin-bottom: 15px;  
}  

.vtg-video-meta-item {  
    display: flex;  
    flex-direction: column;  
    margin-bottom: 15px;  
    min-width: 120px;  
}  

.vtg-video-meta-label {  
    font-size: 13px;  
    color: #666;  
    margin-bottom: 5px;  
}  

.vtg-video-meta-value {  
    font-weight: 600;  
}  

.vtg-prompt-section {  
    background: #ffffff;  
    border-radius: 12px;  
    overflow: hidden;  
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);  
}  

.vtg-prompt-header {  
    padding: 20px 25px;  
    border-bottom: 1px solid #eee;  
}  

.vtg-prompt-header h2 {  
    font-size: 20px;  
    display: flex;  
    align-items: center;  
}  

.vtg-prompt-header h2 i {  
    margin-right: 10px;  
    color: #0066cc;  
}  

.vtg-prompt-content {  
    padding: 25px;  
}  

.vtg-prompt-text {  
    background: #f8faff;  
    padding: 15px;  
    border-radius: 8px;  
    margin-bottom: 25px;  
    font-style: italic;  
    color: #333;  
    line-height: 1.6;  
    border-left: 3px solid #0066cc;  
}  

.vtg-keywords {  
    margin-bottom: 30px;  
}  

.vtg-keywords-title {  
    font-weight: 600;  
    margin-bottom: 15px;  
    display: flex;  
    align-items: center;  
}  

.vtg-keywords-title i {  
    margin-right: 8px;  
    color: #0066cc;  
}  

.vtg-keywords-list {  
    display: flex;  
    flex-wrap: wrap;  
    gap: 10px;  
}  

.vtg-keyword {  
    display: inline-block;  
    background: #e6f0ff;  
    color: #0066cc;  
    padding: 6px 12px;  
    border-radius: 50px;  
    font-size: 14px;  
}  

/* 响应式设计 */  
@media (max-width: 991px) {  
.vtg-content {  
    grid-template-columns: 1fr;  
}  

.vtg-header {  
    flex-direction: column;  
}  

.vtg-action-buttons {  
    margin-top: 20px;  
}  
}  

@media (max-width: 767px) {  
    .vtg-video-actions {  
        flex-direction: column;  
        align-items: flex-start;  
        gap: 15px;  
    }  
}  

@media (max-width: 575px) {  
    .vtg-action-buttons {  
        flex-direction: column;  
    }  

    .vtg-download-options {  
        flex-direction: column;  
        width: 100%;  
    }  

    .vtg-download-btn {  
        width: 100%;  
    }  
} 
.taskInfo{
    /* text-decoration: underline; */
    cursor: pointer;
}

/* 密码输入框容器样式 */  
.password-container {  
    position: relative;  
    width: 85%;  
    height: 45px;
}  
  
.password-container .input-field {  
    width: 100%;  
    padding-right: 40px; /* 为眼睛图标留出空间 */  
}  
  
/* 密码切换图标样式 */  
.password-toggle {  
    position: absolute;  
    right: 12px;  
    top: 60%;  
    /* transform: translateY(-50%);   */
    color: #666;  
    cursor: pointer;  
    font-size: 20px;  
    transition: color 0.2s ease;  
}  
  
.password-toggle:hover {  
    color: #0066cc;  
}  



/* 密码输入框包装容器 */  
.password-wrapper {  
    position: relative;  
    width: 85%;  /* 与其他输入框保持一致 */  
    display: inline-block;  /* 保持与其他输入框相同的布局行为 */  
  }  
  
  /* 确保密码输入框与其他输入框样式一致 */  
  .password-wrapper input {  
    width: 100% !important; /* 填满包装容器 */  
    margin-top: 15px !important; /* 保持与其他输入框相同的上边距 */  
    padding-right: 45px !important; /* 为眼睛图标留出空间 */  
  }  
  
  /* 密码切换图标样式 */  
  .password-toggle {  
    position: absolute;  
    right: 15px;  
    top: 50%;  
    transform: translateY(-2px); /* 微调使图标垂直居中 */  
    color: #999;  
    cursor: pointer;  
    font-size: 18px;  
    z-index: 2;  
    transition: color 0.3s ease;  
  }  
  
  /* 图标悬停效果 */  
  .password-toggle:hover {  
    color: #666;  
  }  
  
  /* 输入框聚焦时的图标样式 */  
  .registerPage input:focus ~ .password-toggle {  
    color: #1677ff;  
  }  


  /* 检测结果模态窗口样式 */
  .vdr-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.vdr-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.vdr-container {
    width: 90%;
    max-width: 400px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.vdr-modal-overlay.active .vdr-container {
    transform: translateY(0);
}

.vdr-header {
    background-color: #f8f9fa;
    padding: 12px 20px;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vdr-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
}

.vdr-title i {
    margin-right: 8px;
    color: #0066cc;
    font-size: 18px;
}

.vdr-close-btn {
    color: #666;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
    padding: 4px;
}

.vdr-close-btn:hover {
    color: #333;
}

.vdr-content {
    padding: 25px 20px;
    text-align: center;
}

.vdr-icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.vdr-icon-ai {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.vdr-icon-real {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.vdr-icon-box i {
    font-size: 30px;
}

.vdr-result-box {
    margin-bottom: 20px;
}

.vdr-result-value {
    display: inline-block;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.vdr-result-real {
    background-color: #e6f7e6;
    color: #28a745;
    border: 2px solid #28a745;
}

.vdr-result-ai {
    background-color: #ffebee;
    color: #dc3545;
    border: 2px solid #dc3545;
}

.vdr-confidence {
    font-size: 15px;
    color: #666;
}

.vdr-metadata {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.vdr-metadata-item {
    text-align: center;
}

.vdr-metadata-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.vdr-metadata-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.vdr-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 15px 0;
    text-align: center;
}

.vdr-footer {
    padding: 12px 20px;
    border-top: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
}

.vdr-info {
    color: #666;
    font-size: 12px;
}

.vdr-actions {
    display: flex;
    gap: 8px;
}

.vdr-btn {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: flex;
    align-items: center;
}

.vdr-btn i {
    margin-right: 4px;
}

.vdr-btn-primary {
    background-color: #0066cc;
    color: white;
}

.vdr-btn-primary:hover {
    background-color: #004d99;
}

.vdr-btn-outline {
    background-color: transparent;
    border: 1px solid #ddd;
    color: #666;
}

.vdr-btn-outline:hover {
    background-color: #f0f0f0;
}

@media (max-width: 400px) {
    .vdr-metadata {
        flex-wrap: wrap;
    }
    
    .vdr-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .vdr-actions {
        width: 100%;
        justify-content: center;
    }
}


.de-container {
    width: 70%;
    height: 50%;
    margin: 40px auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* 头部颜色改为左右渐变，去掉斜向 */
.de-header {
    background: linear-gradient(to right, var(--de-primary-color), var(--de-accent-color));
    padding: 25px 30px;
    color: white;
    position: relative;
}

/* 移除原有的斜线装饰 */
.de-header::after {
    content: none;
}

.de-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.de-title i {
    margin-right: 12px;
    font-size: 24px;
}

.de-subtitle {
    font-size: 15px;
    opacity: 0.85;
    line-height: 1.5;
}

.de-content {
    padding: 30px;
}

.de-input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.de-input-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--dark-color);
}

.de-input-label i {
    margin-right: 8px;
    color: var(--primary-color);
}

.de-text-input {
    width: 100%;
    min-height: 200px;
    border: 2px solid #e0e6ed;
    border-radius: 12px;
    padding: 18px;
    font-size: 15px;
    color: #333;
    box-sizing: border-box;
    resize: vertical;
    transition: all 0.3s;
    outline: none;
    line-height: 1.6;
    background-color: #f9fafc;
}

.de-text-input:focus {
    border-color: var(--de-primary-color);
    box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.15);
    background-color: white;
}

.de-text-input::placeholder {
    color: #a0aec0;
}

.de-help-container {
    background-color: #f0f7ff;
    border-left: 4px solid var(--de-primary-color);
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
    position: relative;
}

.de-help-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--de-primary-color);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.de-help-title i {
    margin-right: 8px;
}

.de-help-text {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.5;
}

.de-button-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    position: relative;
}

.de-button-container::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, #e0e6ed, transparent);
}

.de-generate-button {
    /* background: linear-gradient(to right, var(--de-primary-color), var(--de-accent-color)); */
    background:  linear-gradient(to right, #a0a0a0, #777777);
    color: white;
    border: none;
    padding: 0 35px;
    height: 48px;
    border-radius: 24px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    box-shadow: 0 6px 15px rgba(25, 113, 194, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: not-allowed;
}

.de-generate-button i {
    margin-right: 10px;
    font-size: 18px;
}

.de-generate-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)); */
    clip-path: polygon(0% 0%, 100% 0%, 100% 30%, 0% 70%);
    opacity: 0.3;
}

.de-generate-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25, 113, 194, 0.3);
}

.de-generate-button:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(25, 113, 194, 0.25);
}

/* 圆形渐变装饰可保留，但可调整为更淡的颜色，以美化效果 */
.de-decoration {
    position: absolute;
    opacity: 0.4;
    z-index: 0;
}

.de-decoration-1 {
    top: 10px;
    right: 10px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(25, 113, 194, 0.2) 0%, rgba(25, 113, 194, 0) 70%);
}

.de-decoration-2 {
    bottom: 20px;
    left: 20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(77, 171, 247, 0.15) 0%, rgba(77, 171, 247, 0) 70%);
}

.de-character-count {
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-size: 12px;
    color: #a0aec0;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2px 8px;
    border-radius: 10px;
}



.ge-container {
    width: 70%; 
    height: 50%;
    margin: 40px auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.ge-header {
    background: linear-gradient(to right, var(--ge-primary-color), var(--ge-accent-color));
    padding: 25px 30px;
    color: white;
    position: relative;
}

.ge-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.ge-title i {
    margin-right: 12px;
    font-size: 24px;
}

.ge-subtitle {
    font-size: 15px;
    opacity: 0.85;
    line-height: 1.5;
}

.ge-content {
    padding: 30px;
}

.ge-input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.ge-input-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--ge-dark-color);
}

.ge-input-label i {
    margin-right: 8px;
    color: var(--ge-primary-color);
}

.ge-upload-area {
    width: 100%;
    min-height: 200px;
    border: 2px dashed #e0e6ed;
    border-radius: 12px;
    padding: 18px;
    font-size: 15px;
    color: #333;
    box-sizing: border-box;
    transition: all 0.3s;
    outline: none;
    background-color: #f9fafc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 100ms ease-in-out;
    animation: fadeIn 0.5s ease;
}

.ge-upload-area:hover {
    border-color: var(--ge-primary-color);
    box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.15);
    background-color: white;
}

.ge-upload-area.active {
    border-color: var(--ge-primary-color);
    background-color: rgba(77, 171, 247, 0.05);
}

.ge-upload-area.success {
    border-color: #10b981;
    background-color: rgba(16, 185, 129, 0.05);
}

.ge-upload-icon {
    font-size: 40px;
    color: var(--ge-primary-color);
    margin-bottom: 15px;
}

.ge-upload-icon.success {
    color: #10b981;
}

.ge-upload-text {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.ge-upload-subtext {
    font-size: 13px;
    color: #718096;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.5;
}

.ge-file-input {
    display: none;
}

.ge-browse-button {
    background-color: #edf2ff;
    color: var(--ge-primary-color);
    border: 1px solid #d0e1fd;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.ge-browse-button:hover {
    background-color: #dbe7ff;
}

.ge-file-info {
    margin-top: 15px;
    display: none;
    background-color: #f0f7ff;
    border-radius: 8px;
    padding: 10px 15px;
    width: 100%;
    box-sizing: border-box;
}

.ge-file-name {
    font-weight: 600;
    color: var(--ge-dark-color);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ge-file-name i {
    color: var(--ge-primary-color);
    cursor: pointer;
}

.ge-file-meta {
    font-size: 12px;
    color: #718096;
}

.ge-help-container {
    background-color: #f0f7ff;
    border-left: 4px solid var(--ge-primary-color);
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
    position: relative;
}

.ge-help-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--ge-primary-color);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.ge-help-title i {
    margin-right: 8px;
}

.ge-help-text {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.5;
}

.ge-button-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    position: relative;
}

.ge-button-container::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, #e0e6ed, transparent);
}

.ge-analyze-button {
    background: linear-gradient(to right, var(--ge-primary-color), var(--ge-accent-color));
    color: white;
    border: none;
    padding: 0 35px;
    height: 48px;
    border-radius: 24px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    box-shadow: 0 6px 15px rgba(25, 113, 194, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ge-analyze-button i {
    margin-right: 10px;
    font-size: 18px;
}

.ge-analyze-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    clip-path: polygon(0% 0%, 100% 0%, 100% 30%, 0% 70%);
    opacity: 0.3;
}
.ge-analyze-button.complete{
    background: #10b981;
}
.ge-analyze-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25, 113, 194, 0.3);
}

.ge-analyze-button:active:not(:disabled) {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(25, 113, 194, 0.25);
}

.ge-decoration {
    position: absolute;
    opacity: 0.4;
    z-index: 0;
}

.ge-decoration-1 {
    top: 10px;
    right: 10px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(25, 113, 194, 0.2) 0%, rgba(25, 113, 194, 0) 70%);
}

.ge-decoration-2 {
    bottom: 20px;
    left: 20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(77, 171, 247, 0.15) 0%, rgba(77, 171, 247, 0) 70%);
}

.ge-analyze-button:disabled {
    background: linear-gradient(to right, #a0a0a0, #777777);
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 上传进度圆圈样式 */
.ge-progress-circle-container {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.ge-progress-circle {
    transform: rotate(-90deg);
    width: 60px;
    height: 60px;
}

.ge-progress-circle-bg {
    fill: none;
    stroke: #e0e6ed;
    stroke-width: 4;
}

.ge-progress-circle-fill {
    fill: none;
    stroke: var(--ge-primary-color);
    stroke-width: 4;
    stroke-linecap: round;
    transition: stroke-dasharray 0.3s ease;
}

.ge-progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: 600;
    color: var(--ge-primary-color);
}

#ge-initial-upload-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.getAppidInput{
    margin-top: 20px;
    margin-left: 20px;
    width: 50%;
    height: 40px;
    /* margin: 10px 0 15px 50px; */
    color: var(--text-dark);
    font-size: 16px;
    padding-left: 15px;
    border: 1px solid var(--primary-light);
    border-radius: var(--radius-sm);
    background: #f9fbfd;
    transition: all 0.25s ease;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}
.getAppidInput:focus{  
    outline: none;  
    border-color: var(--primary);  
    box-shadow: 0 0 0 3px var(--primary-light);  
}
.getAppidBtn{
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    width: 10%;
    height: 40px;
    margin-top: 20px;
    margin-left: 20px;
    border: 0px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 3px 6px rgba(0, 181, 229, 0.2);
    position: relative;
    overflow: hidden;
}