.assess_top{
    margin: 200px 120px;
}

.del_assess{
    position: absolute;
    top: 20px;
    left: 95%;
    cursor: pointer;
    color: #ffffff;
}

.del_assess:hover{
    color: #2980b9;
}

.window_assess{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

.smart-evaluation-container {
    width: 60%;
    height: 90vh;
    position: absolute;
    top: 30px;
    left: 20%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    z-index: 100000;
    
}

.hidden {
    display: none;
    position: absolute;
    top: 50px;
    left: auto;
}

.evaluation-header {
    text-align: center;
    margin-bottom: 30px;
}

.evaluation-header h2 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 28px;
}

.evaluation-header .subtitle {
    color: #ffffff;
    font-size: 16px;
    margin-top: 0;
}

.evaluation-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
}

.feature-card {
    flex: 1;
    background: rgba( 255, 255, 255, 0.05 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
    font-size: 32px;
    color: #3498db;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 10px;
}

.feature-card p {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 0;
}

.resume-selection {

    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.resume-selection h3 {
    margin-top: 0;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
}

.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
}

.dropbtn {
    background: rgba( 255, 255, 255, 0.05 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    color: #ffffff;
    padding: 12px 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.3s;
}

.dropbtn:hover {
    border-color: #3498db;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #ffffff;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    z-index: 1;
    border: 1px solid #ddd;
}

.dropdown-content a {
    color: #333;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.evaluate-btn {
    background: rgba( 209, 16, 247, 0.5 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 7px );
    -webkit-backdrop-filter: blur( 7px );
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.evaluate-btn:hover {
    background: rgba( 209, 16, 247, 0.7 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 7px );
    -webkit-backdrop-filter: blur( 7px );
}

.evaluate-btn:disabled {
    background: rgba( 209, 16, 247, 0.3 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 7px );
    -webkit-backdrop-filter: blur( 7px );
    border-radius: 10px;
    cursor: not-allowed;
}

.loading-container {
    display: none;
    text-align: center;
    padding: 30px;
}

.loading-spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .evaluation-features {
        flex-direction: column;
    }
    
    .smart-evaluation-container {
        padding: 20px;
    }
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    max-width: 800px;
    margin: auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.step-title {
    font-size: 24px;
    margin-bottom: 5px;
}

.step-description {
    font-size: 16px;
}

.step-divider {
    width: 2px;
    height: 100px;
    background-color: #ffffff;
    margin: 0 20px;
}

#video-background {
    width: 100vw;

    position: fixed;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* 在您的CSS文件中添加以下样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  
  .modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close:hover {
    color: black;
  }
  
  .result-content {
    margin-top: 20px;
  }
  
  .result-item {
    margin-bottom: 15px;
    background: rgba( 255, 255, 255, 0.25 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba(255, 19, 19, 0.18);
    padding: 5px 15px;
    max-height: 400px;
    overflow-y: auto;
  }
  
  .result-item h3 {
    margin-top: 0;
    color: #495057;
  }
  
  .result-item ul {
    padding-left: 20px;
  }
  
  .result-item li {
    margin-bottom: 5px;
  }

  .model_loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    background: #000000cc;
  }
  
  .loader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: not-allowed;
    scale: 0.7;
    margin: 270px auto;
  }
  
  .central {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 10em;
    height: 10em;
    border-radius: 50%;
    box-shadow: 0.5em 1em 1em blueviolet,
      -0.5em 0.5em 1em blue,
      0.5em -0.5em 1em purple,
      -0.5em -0.5em 1em cyan;
  }
  
  .external-shadow {
    width: 10em;
    height: 10em;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0.5em 0.5em 3em blueviolet,
      -0.5em 0.5em 3em blue,
      0.5em -0.5em 3em purple,
      -0.5em -0.5em 3em cyan;
    z-index: 999;
    animation: rotate 1.7s linear infinite;
    background-color: #000000;
  }
  
  .intern {
    position: absolute;
    color: white;
    z-index: 9999;
  }
  
  .intern::before {
    content: "生成中...";
    animation: percent 1.7s ease-in-out infinite;
  }
  
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
  
    50% {
      transform: rotate(180deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
