/* 隐藏原生 file 控件文案（选择文件/未选择任何文件），与 fl_file_wrap() + pc_file_input.js 配合 */
.fl-file-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  vertical-align: middle;
  max-width: 100%;
  min-height: 32px;
}

.fl-file-wrap .fl-file-native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.fl-file-wrap .fl-file-btn {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #f7f7f7;
  color: #333;
  font-size: 14px;
  line-height: 1.3;
  cursor: pointer;
  font-family: inherit;
}

.fl-file-wrap .fl-file-btn:hover {
  background: #eee;
  border-color: #bbb;
}

.fl-file-wrap .fl-file-name {
  color: #666;
  font-size: 13px;
  max-width: 360px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.manualbox .form .row .l2 .fl-file-wrap {
  float: left;
  width: 100%;
  max-width: 520px;
}
