/* 通用样式 */
.aft-wrapper {
  margin-bottom: 2vw;
  text-align: left;
  font-family: Poppins, sans-serif;
}
.aft-title {
  font-size: 2.1vw;
  font-weight: 600;
  margin-bottom: 1vw;
}
.aft-subtitle {
  font-size: 0.9vw;
  margin-bottom: 2vw;
}
#aft-form {
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}
#aft-form label {
  font-size: 0.9vw;
  font-weight: 500;
  margin-bottom: 0.5vw;
}
#aft-form input[type="text"],
#aft-form input[type="email"],
#aft-form textarea {
  font-family: Poppins, sans-serif;
  font-size: 0.9vw;
  color: #000;
  padding: 1vw;
  border: 0.1vw solid #ccc;
  border-radius: 0.5vw;
  width: 100%;
  box-sizing: border-box;
  background: transparent;
}
#aft-form textarea {
  resize: none;
  min-height: 100px;
}
#asf-file-input {
  display: none;
}
.aft-attachment-group {
  margin-top: 1vw;
}
.aft-attachment-title {
  font-size: 1.8vw;
  font-weight: 600;
  margin-bottom: 0.5vw;
}
.aft-upload-box {
  width: 8vw;
  height: 8vw;
  border: 0.1vw dashed #ccc;
  border-radius: 0.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.aft-upload-box span {
  font-size: 2vw;
  color: #ccc;
}
#file-name-display {
  margin-top: 1vw;
  font-size: 0.9vw;
}
.aft-submit-btn {
  margin-top: 2vw;
  background: #FF6600;
  color: #fff;
  font-size: 1vw;
  font-weight: 600;
  padding: 1vw;
  border: none;
  border-radius: 0.5vw;
  cursor: pointer;
}
#aft-message {
  display: none;
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
}
#aft-message.aft-success {
  background-color: #dff0d8;
  color: #3c763d;
  border: 1px solid #d6e9c6;
}
#aft-message.aft-error {
  background-color: #f2dede;
  color: #a94442;
  border: 1px solid #ebccd1;
}

/* 移动端适配 */
@media (max-width: 768px) {
  #aft-form {
    gap: 4vw;
  }
  #aft-form label {
    font-size: 4vw;
    margin-bottom: 1.5vw;
  }
   #aft-form input,
  #aft-form textarea {
    font-size: 12px!important;
    padding: 3vw;
    border-radius: 1vw!important;
  }
  #aft-form textarea {
    min-height: 25vw;
  }
  .aft-submit-btn {
    font-size: 4vw;
    padding: 3vw;
    border-radius: 2vw;
    margin-top: 5vw;
  }
  .aft-title {
    font-size: 5vw;
  }
  .aft-subtitle {
    font-size: 3.5vw;
  }
  .aft-upload-box {
    width: 20vw;
    height: 20vw;
    border-radius: 2vw;
  }
  .aft-upload-box span {
    font-size: 8vw;
  }
  #file-name-display {
    font-size: 3.5vw;
  }
  #aft-message {
    font-size: 3.5vw;
    padding: 4vw;
  }
}

.aft-file-info {
  margin-top: 1vw;
  font-size: 0.9vw;
  display: flex;
  align-items: center;
  gap: 1vw;
}
#aft-file-remove-btn {
  background: transparent;
  border: none;
  font-size: 1.5vw;
  color: red;
  cursor: pointer;
  line-height: 1;
}
@media (max-width: 768px) {
  .aft-file-info {
    font-size: 3.5vw;
    margin-top: 2vw;
  }
  #aft-file-remove-btn {
    font-size: 6vw;
  }
}
