/*
UploadiFive
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
*/

.uploadifive-queue-item .close {
	display:none;
}
.uploadifive-queue-item .progress {
	border:2px #1abd9b solid;
            border-radius:11px;
            margin:61px 7px 0;
            padding:2px;
            height:11px;
}
.uploadifive-queue-item .progress-bar {
	background-color:#1abd9b;
                border-radius:11px;
                display:inline-block;
                height:11px;
}
.filename, .fileinfo {display:none;}

.hotword_popup {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%; /* 与搜索框同宽 */
  max-width: 100%; /* 不限制最大宽度 */
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 12px 0;
  z-index: 1000;
  border: 1px solid #eee;
}

.hotword_inner {
  padding: 0 15px;
}

.hotword_title {
  font-size: 13px;
  color: #999;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.hotword_title i {
  margin-right: 6px;
  color: #ff4d4f;
}

.hotword_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hotword_item {
  display: inline-block;
  padding: 4px 12px;
  background: #f7f7f7;
  border-radius: 15px;
  color: #666;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid #eee;
}

.hotword_item:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}