@charset "UTF-8";

body,
html {
  box-sizing: border-box;
}

.search_wrap {
  margin-top: 16px;
  background: var(--color-theme);
  border-radius: 5px;
  height: 140px;
  position: relative;
}

.search_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 56px;
}

.search_inner input {
  width: 100%;
  height: 100%;
  border: 0px;
  outline: none;
  padding: 0 128px 0 24px;
  background: #ffffff;
  border-radius: 8px;
}

.search_inner b {
    position: absolute;
    right: 120px;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 14px;
    color: #999;
    cursor: pointer;
    display: none;
}

.search_inner b.active {
  display: block;
}

.search_inner button {
  position: absolute;
  width: 96px;
  height: 44px;
  top: 6px;
  right: 8px;
  color: #fff;
  border: 1px solid var(--color-theme);
  background: var(--color-theme);
  border-radius: 8px;
}

.search_inner button:active {
  opacity: 0.8;
}

.search_inner button > i {
  font-size: 17px;
  margin-right: 3px;
  vertical-align: initial;
}

.search_inner button > span {
  display: inline-block;
  color: inherit;
  font-size: 16px;
  line-height: 20px;
}

/* 列表 */

.data_wrap {
  display: block;
  background: #ffffff;
  border-radius: 8px;
  margin-top: 12px;
  margin-bottom: 30px;
  border: 1px solid #eeeeee;
  min-height: calc(100vh - 240px);
}

.data_wrap .list_head_wrap {
  height: 48px;
  padding: 8px 12px;
  border-bottom: 1px solid #eee;
}

.data_wrap .list_head_wrap > span,
.data_wrap .list_head_wrap > div {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 8px;
}

.data_wrap .list_head_wrap .select_wrap {
  width: 120px;
  margin-left: 10px;
  cursor: pointer;
  position: relative;
}

.data_wrap .list_head_wrap .select_wrap input {
  width: 100%;
  height: 32px;
  line-height: 32px;
  padding: 0 20px 0 10px;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  cursor: pointer;
}

.data_wrap .list_head_wrap .select_wrap i {
  position: absolute;
  right: 5px;
  font-size: 14px;
  font-weight: 400;
  color: #a3a3a3;
}

.select_dropdown_wrap {
  position: absolute;
  display: none;
  width: 100%;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  margin: 5px 0;
  transform-origin: center top;
  z-index: 2010;
  list-style: none;
  padding: 6px 0;
  max-height: 216px;
  overflow: auto;
  animation-name: upbit;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.select_dropdown_wrap li {
  font-size: 13px;
  font-weight: 400;
  padding: 0 12px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 30px;
  line-height: 30px;
  box-sizing: border-box;
  cursor: pointer;
  list-style: none;
}

.select_dropdown_wrap li.selected {
  color: var(--color-theme);
  font-weight: 700;
  background-color: #fff;
}

.select_dropdown_wrap li:hover {
  background-color: #f5f7fa;
}

.data_wrap .list_body_wrap {
}

.data_wrap .list_body_wrap .nodata {
  padding: 40px 0;
}

.data_wrap .list_body_wrap .nodata p {
  color: #999;
  text-align: center;
}

.data_wrap .list_body_wrap .list_item_wrap {
  padding: 12px 19px 4px;
  border-top: 1px solid #eee;
}

.data_wrap .list_body_wrap .list_item_wrap:first-child {
  border-top: 0;
}

.data_wrap .list_item_title {
  padding-bottom: 8px;
  cursor: pointer;
}

.data_wrap .list_item_title p {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  line-height: 22px;
}

.data_wrap .list_item_labels {
  padding-bottom: 8px;
}

.data_wrap .list_item_labels p {
  display: inline-block;
}

.data_wrap .list_item_labels .labels_cont {
  font-size: 0;
}

.data_wrap .list_item_labels .date_cont {
  color: #666666;
}

.data_wrap .list_item_labels .labels_cont span {
  display: inline-block;
  height: 20px;
  font-size: 12px;
  line-height: 14px;
  padding: 2px 8px;
  border-radius: 2px;
  color: #999999;
  border: 1px solid #dbdbdb;
  margin-right: 8px;
}

.data_wrap .list_item_labels .labels_cont span.type {
  color: var(--color-theme);
  border-color: var(--color-theme);
}

.data_wrap .list_item_desc {
  padding: 12px;
  margin-bottom: 8px;
  background: #f8f8f8;
  border-radius: 2px;
  cursor: pointer;
}

.data_wrap .list_item_desc .desc_cont {
  line-height: 20px;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@keyframes upbit {
  from {
    transform: translate3d(0, 3rem, 0);
    opacity: 0.3;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
