*{
    color: #fff;
}

.resume-image-container{
    width: 90%;
    margin: 0 auto;
    display: flex;
}

.resume-image-container img{
    width: 550px;
    height: 700px;
    margin-top: 100px;
    margin-left: 100px;
    background: rgba( 255, 255, 255, 0.3 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 2.5px );
    -webkit-backdrop-filter: blur( 2.5px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.cv-id-info_cv_id{
   margin: 5px auto;
    font-size: 30px;
}

.cv_info_card{
    width: 550px;
    height: 200px;
    margin-top: 100px;
    margin-left: 50px;
    background: rgba( 0, 0, 0, 0.05 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 2.5px );
    -webkit-backdrop-filter: blur( 2.5px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.resume-header{
    margin-top: 10px;
}

.resume-header div{
    margin: 10px auto;
    font-size: 20px;
}

.resuelook_user_id{
    margin-top: 10px;
    font-size: 20px;
}

.resuelook_user_id_div{
    padding-top: 20px;
    padding-left: 50px;
}

.resuelook_butn{
    display: flex;
    width: 550px;
    margin-left: 50px;
}

.resuelook_butn a{
    margin: 5px auto;
}

.resuelook_lug{
    display: flex;
    width: 550px;
    margin-top: 20px;
    margin-left: 50px;
    background: rgba( 0, 0, 0, 0.05 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 2.5px );
    -webkit-backdrop-filter: blur( 2.5px );
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    border-bottom: none;

}

.resuelook_lug div{
    padding-top: 5px;
    padding-bottom: 5px;
    margin: 5px auto;
    text-decoration: none;
    font-size: 20px;
    color: white;
}

.resuelook_content{
    width: 550px;
    height: 362.5px;
    margin-left: 50px;
    background: rgba( 0, 0, 0, 0.05 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 2.5px );
    -webkit-backdrop-filter: blur( 2.5px );
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    border-top: none;
}

.vote-btn{
    background: transparent;
    border: transparent;
}


.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px); /* 背景模糊效果 */
  }
  
  .modal-content {
    background: linear-gradient(145deg, #f8f9fa, #ffffff); /* 渐变背景 */
    margin: 10vh auto;
    padding: 2.5rem;
    width: 700px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    transform: translateY(-20px);
    opacity: 0;
    animation: modalEnter 0.3s ease forwards; /* 入场动画 */
  }
  
  @keyframes modalEnter {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .close {
    position: absolute;
    right: 1.5rem;
    top: 1.2rem;
    font-size: 2rem;
    color: #6c757d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .close:hover {
    color: #dc3545;
    transform: rotate(90deg) scale(1.1);
  }
  
  .re_to {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2d3436;
    text-align: center;
    position: relative;
  }
  
  .re_to::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #dd00ff;
    border-radius: 2px;
  }
  
  .form-group {
    margin: 50px 0;
  }
  
  label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
  }
  
  input[type="text"] {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
  }
  
  input[type="file"] {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    position: absolute;
    z-index: -1;
  }
  
  .custom-file-upload {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.2rem;
    border: 2px dashed #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
  }
  
  .custom-file-upload:hover {
    border-color: #dd00ff;
    background: rgba(76, 175, 80, 0.05);
  }
  
  .file-name {
    color: #6c757d;
    font-size: 0.9rem;
    max-width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .upload-icon {
    width: 24px;
    height: 24px;
    fill: #dd00ff;
  }
  
  .submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #dd00ff, #e749ff);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  
  .submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      120deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent
    );
    transition: left 0.6s;
  }
  
  .submit-btn:hover::after {
    left: 100%;
  }
  
  .submit-btn:active {
    transform: scale(0.98);
  }

  
  .comment-input {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    width: 100%;
    position: fixed;
    bottom: -20px;
}

.comment-input textarea {
    flex: 1;
    border: none;
    border-radius: 4px;
    resize: vertical;
    min-height: 50px;
    max-height: 100px;
    color: #ffffff;
    background: rgba( 255, 255, 255, 0.25 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 6.5px );
    -webkit-backdrop-filter: blur( 6.5px );
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.comment-list {
    margin-top: 0;
    min-height: 100px;
}

.comment-item {
    border-bottom: 1px solid #a2a2a2;
    padding: 15px 0;
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    padding-left: 8px;
}

.comment-avatar {
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.comment-user {
    font-weight: bold;
    margin-right: 10px;
}

.comment-time {
    color: #888;
    font-size: 12px;
}

.comment-content {
    line-height: 1.5;
    padding-left: 50px;
    color: #e2e0e0;
}

.submit-btn_putlau {
  width: 100px;
  background: rgba( 0, 175, 255, 0.65 );
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  backdrop-filter: blur( 4px );
  -webkit-backdrop-filter: blur( 4px );
  border: 1px solid rgba( 255, 255, 255, 0.18 );
    color: white;
    padding: 0 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.submit-btn_putlau::after{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.submit-btn_putlau:hover {
  background: rgba(0, 174, 255, 0.773);
}

.submit-btn_putlau:hover::after {
  left: 100%;
}

.submit-btn_putlau:active {
  transform: scale(0.98);
}

.comment-container {
  max-height: 299px; /* 设置最大高度 */
  overflow-y: auto; /* 添加垂直滚动条 */
}