/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.m-file-display-container {
  margin-right: 15%;
  margin-left: 15%;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 1px 5px 0 rgba(45, 47, 51, 0.1);
}
.m-file-display-header {
  display: flex;
  align-items: center;
  height: 50px;
  padding-left: 24px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid #f0f0f0;
}
.m-file-display-body {
  height: 305px;
  overflow-y: auto;
}
.m-file-display-clear {
  padding-left: 4px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}
.m-file-display-clear::after {
  display: block;
  margin-top: -2px;
  content: '';
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.m-file-display-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.m-file-display-item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0 48px 0 24px;
}
.m-file-display-item-name {
  width: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-file-display-item-name > label {
  padding-right: 8px;
}
.m-file-display-item-size {
  min-width: 40px;
  padding: 0 8px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.85);
  text-align: center;
  background: #f9f9f9;
  border-radius: 2px;
}
.m-file-display-item-progress {
  line-height: 2px;
}
.m-file-display-item-progress .ant-progress-line {
  line-height: 2px;
}
.m-file-display-item-icon-container {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  width: 190px;
  text-align: right;
}
.m-file-display-item-icon-close {
  display: none;
}
.m-file-display-item-icon-edit {
  padding-right: 8px;
  cursor: pointer;
}
.m-file-display-item-edit {
  display: flex;
  align-items: center;
}
.m-file-display-item-edit > input {
  width: 110px;
  height: 24px;
  margin-right: 16px;
}
.m-file-display-item-edit-operations {
  display: flex;
}
.m-file-display-item-edit-operations > a {
  width: 28px;
}
.m-file-display-item-edit-operations > a:first-child {
  margin-right: 8px;
}
.m-file-display-item-edit-mismatch {
  border-color: red;
}
.m-file-display-item:hover {
  background-color: #f9f9f9;
}
.m-file-display-footer {
  line-height: 64px;
}
