@charset "UTF-8";
.type-search-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  margin-top: 16px;
  text-align: left;
  border: 1px solid #ebeaea;
  border-radius: 8px;
  background: white;
}

.type-search-main .type-search-left .type-search-list {
  display: flex;
}

.type-search-main .type-search-left .type-search-list .type-search-item {
  padding: 3px 8px;
  margin-right: 40px;
  color: #333333;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  border-radius: 4px;
  white-space: nowrap;
  cursor: pointer;
}

.type-search-main .type-search-left .type-search-list .type-search-item.select-type {
  color: #fff;
  background: #c30113;
}

.type-search-main .type-search-right {
  display: flex;
  align-items: center;
}

.type-search-main .type-search-right .type-search-btn {
  padding: 8px 16px;
  margin-left: 16px;
  color: #c30113;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  border: 1px solid #ffe0e2;
  border-radius: 4px;
  background: #fff1f2;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s;
}

.type-search-main .type-search-right .type-search-btn:hover {
  background-color: #c30113;
  color: #fff;
}

.type-search-main .type-search-right .type-search-btn:first-child {
  margin-left: 0;
}

.type-search-main .type-search-right .type-search-input {
  box-sizing: border-box;
  width: 220px;
  height: 48px;
  padding: 14px 18px;
  padding-left: 48px;
  margin-left: 40px;
  margin-bottom: 0;
  background: whitesmoke;
  background-image: url("/img/component/search_icon.png");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 18px 14px;
  border: none;
  border-radius: 4px;
}

.type-search-main .type-search-right .type-search-btn--search {
  padding: 12px 24px;
  color: white;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  border-radius: 4px;
  background: #c30113;
  white-space: nowrap;
  cursor: pointer;
}

.type-search-main .modal-mask .modal-tips {
  width: 724px;
}

.type-search-main .modal-mask .modal-tips .modal-tips-header {
  text-align: center;
  padding-bottom: 16px;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content {
  overflow-y: auto;
  height: 611px;
  color: rgba(51, 51, 51, 0.98);
  text-align: left;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .h1-title {
  font-size: 16px;
  font-weight: 500;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .h2-title {
  margin: 16px 0;
  font-size: 14px;
  font-weight: 500;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .form-select {
  width: 320px;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 23px;
  text-align: left;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .own-select {
  position: relative;
  width: 320px;
  border-radius: 5px;
  position: relative;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .own-select:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("/img/arrow_bottom.png") no-repeat center;
  background-size: 100% 100%;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .own-select select {
  border: none;
  outline: none;
  width: 100%;
  padding: 12px 16px;
  background: #f6f7fb;
  border-radius: 5px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .own-select .select-placeholder {
  position: absolute;
  top: 50%;
  left: 16px;
  color: rgba(153, 153, 153, 0.98);
  font-size: 16px;
  transform: translateY(-50%);
  pointer-events: none;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .own-select .select-verify {
  display: none;
  position: absolute;
  padding-top: 2px;
  font-size: 12px;
  color: red;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .flex {
  position: relative;
  align-items: center;
  justify-content: space-between;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .describe-textarea {
  width: 100%;
  padding: 12px 16px 16px;
  margin-bottom: 16px;
  background: #f6f7fb;
  border-radius: 5px;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .describe-textarea textarea {
  box-sizing: border-box;
  width: 100%;
  border: none;
  background-color: transparent;
  resize: none;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .describe-textarea .file-list {
  display: flex;
  flex-wrap: wrap;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .describe-textarea .file-list .file-item {
  position: relative;
  width: 88px;
  height: 88px;
  margin-top: 12px;
  margin-right: 16px;
  border-radius: 5px;
  background: #fff5f5;
  font-size: 12px;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .describe-textarea .file-list .file-item .icon {
  width: 36px;
  height: 36px;
  margin: 22px auto 0;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .describe-textarea .file-list .file-item .close {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .describe-textarea .file-list .file-item .postfix {
  position: absolute;
  top: 33px;
  left: 50%;
  transform: translate(-50%);
  font-size: 10px;
  font-weight: 700;
  color: white;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .describe-textarea .file-list .file-item .file-name {
  margin: auto;
  margin-top: 3px;
  color: #333333;
  text-align: center;
  overflow: hidden;
  /*超出部分隐藏*/
  text-overflow: ellipsis;
  /* 超出部分显示省略号 */
  white-space: nowrap;
  /*规定段落中的文本不进行换行 */
  width: 80px;
  /*需要配合宽度来使用*/
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .describe-textarea .file-list .upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-top: 12px;
  margin-right: 16px;
  border: 1px solid #ffe8e8;
  background: white;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .describe-textarea .file-list .upload img {
  width: 38px;
  height: 38px;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .describe-textarea .file-list .upload .upload-word {
  font-size: 12px;
  color: rgba(222, 40, 40, 0.3);
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .describe-textarea .file-list .upload .uploadFile {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  bottom: 0;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .describe-textarea .file-list .upload .uploadFile .file {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .own-input {
  position: relative;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .own-input input {
  box-sizing: border-box;
  width: 100%;
  padding: 12px 16px;
  background: #f6f7fb;
  border: none;
  border-radius: 5px;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .own-input .input-verify {
  display: none;
  position: absolute;
  font-size: 12px;
  color: red;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .count-down {
  position: absolute;
  right: 16px;
  width: 148px;
  padding: 6px 0;
  font-size: 16px;
  text-align: center;
  background: white;
  border-radius: 3px;
  cursor: pointer;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .agree-box {
  display: flex;
  margin: 24px 0 16px;
  cursor: pointer;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .agree-box:hover .agree-word {
  color: #c30113;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .agree-box .agree-icon {
  width: 20px;
  height: 20px;
  border: 1px solid #cccccc;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .agree-box .agree-icon img {
  display: none;
  width: 100%;
  height: 100%;
}

.type-search-main .modal-mask .modal-tips .modal-tips-content .agree-box .agree-word {
  margin-left: 8px;
  color: #333333;
  font-size: 14px;
}

.left-nav-box {
  width: 200px;
  margin-right: 24px;
}

.left-nav-main {
  overflow: hidden;
  width: 200px;
  border-radius: 8px;
  margin-right: 24px;
}

.left-nav-main .left-nav-title {
  padding: 16px 0;
  color: white;
  background: #c30113;
}

.left-nav-main .left-nav-name {
  padding: 16px 0;
  font-size: 16px;
  background: #f3f5f7;
  cursor: pointer;
  transition: all 0.5s;
}

.left-nav-main .left-nav-name:hover, .left-nav-main .left-nav-name.select-item {
  color: #c30113;
  background: white;
}

.left-nav-main .left-nav-name2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  font-size: 16px;
  color: #333333;
  background: #f3f5f7;
  cursor: pointer;
  transition: all 0.5s;
}

.left-nav-main .left-nav-name2:hover, .left-nav-main .left-nav-name2.select-item {
  color: #c30113;
  background: #fff5f5;
}

.left-nav-main .left-nav-name2 img {
  width: 16px;
  height: 16px;
}

.left-nav-main .left-nav-item-child-list {
  overflow: hidden;
}

.left-nav-main .left-nav-item-child-list .left-nav-item-child {
  padding: 16px 0;
  color: #333333;
  font-size: 14px;
  cursor: pointer;
}

.left-nav-main .left-nav-item-child-list .left-nav-item-child:hover, .left-nav-main .left-nav-item-child-list .left-nav-item-child.select-child {
  color: #c30113;
  background: rgba(255, 245, 245, 0.3);
}
