@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.c-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  overflow: hidden;
  color: #2b2b2b;
}

.c-button {
  caret-color: transparent;
}

.c-sidebar {
  width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  background: radial-gradient(circle at top left, rgba(20, 123, 255, 0.3) 0%, rgba(20, 123, 255, 0.1) 20%, rgba(20, 123, 255, 0) 50%), radial-gradient(circle at bottom right, rgba(20, 123, 255, 0.3) 0%, rgba(20, 123, 255, 0.1) 20%, rgba(20, 123, 255, 0) 50%), #f6fcff;
}
.c-sidebar__header {
  padding: 1.5rem;
  padding-bottom: 1rem;
}
.c-sidebar__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
  padding: 0 1.5rem;
  padding-bottom: 3.4rem;
}
.c-sidebar__footer {
  background-color: rgba(255, 255, 255, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-main-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
}
.c-main-content__wrapper {
  padding: 2rem 10rem;
  background-color: #fff;
}

.c-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.c-logo .icon {
  /* 渐变背景 */
  background: -webkit-gradient(linear, left top, left bottom, from(#146bf7), to(#82cbff));
  background: linear-gradient(#146bf7, #82cbff);
  /* 关键属性：将背景裁剪到文字区域 */
  -webkit-background-clip: text;
  background-clip: text;
  /* 透明文字（让背景渐变透出来） */
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.c-logo__icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 1.125rem;
  background: -webkit-gradient(linear, left top, right top, from(#3b82f6), to(#2563eb));
  background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
}
.c-logo__title {
  font-size: 1.125rem;
  font-weight: 600;
}

.common-input-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 36px;
  background: #ffffff;
  -webkit-box-shadow: 0px 1px 16px 1px rgba(0, 85, 164, 0.08);
          box-shadow: 0px 1px 16px 1px rgba(0, 85, 164, 0.08);
  border-radius: 20px 20px 20px 20px;
  border: 1px solid #d1e2ff;
  padding: 8px 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.common-input-wrap.is-focus {
  border: 1px solid #6ea3ff;
}
.common-input-wrap input {
  border: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
}
.common-input-wrap .icon {
  color: #9a9b9e;
  cursor: pointer;
}

.c-report-list {
  padding: 0.75rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}

.c-report-item {
  height: 70px;
  background-color: #fff;
  border-radius: 8px;
  padding: 0.4rem;
  padding-left: 52px;
  -webkit-box-shadow: 1px 1px 16px 1px rgba(0, 85, 164, 0.08);
          box-shadow: 1px 1px 16px 1px rgba(0, 85, 164, 0.08);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  position: relative;
  cursor: pointer;
}
.c-report-item__icon {
  position: absolute;
  width: 20px;
  height: 24px;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-report-item:hover {
  border-color: #bae6fd;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.c-report-item__header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-report-item__title {
  font-size: 0.875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 0.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.c-report-item:hover .c-report-item__title {
  color: #1469FC;
}
.c-report-item__actions {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-report-item__actions button {
  background: none;
  border: none;
  color: #9A9B9E;
  cursor: pointer;
  padding: 0.25rem;
}
.c-report-item__actions button:hover {
  color: #2b2b2b;
}
.c-report-item__actions__check-btn {
  font-size: 0.75rem;
  margin-bottom: 2px;
  margin-right: 2px;
  display: none;
}
.c-report-item__footer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.75rem;
}
.c-report-item__date {
  color: #9A9B9E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
.c-report-item__new-status {
  width: 36px;
  height: 16px;
  line-height: 15px;
  text-align: center;
  background: #fc1914;
  border-radius: 10px 10px 10px 0px;
  position: absolute;
  right: -10px;
  top: -5px;
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
}

.c-dropdown-menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 0.25rem;
  width: 160px;
  background-color: #fff;
  border: 1px solid #DCDFE6;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 10;
}
.c-dropdown-menu button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  text-align: left;
}
.c-dropdown-menu button:hover {
  background-color: #f9fafb;
}
.c-dropdown-menu button.c-dropdown-menu__item--danger {
  color: #dc2626;
}
.c-dropdown-menu button.c-dropdown-menu__item--danger:hover {
  background-color: rgba(220, 38, 38, 0.05);
}

.c-status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 500;
}
.c-status-badge.is-completed {
  background: #aaffc5;
  color: #2b2b2b;
}
.c-status-badge.is-share {
  background-color: #ffe88e;
  color: #2b2b2b;
}
.c-status-badge.is-draft {
  background-color: #dbeafe;
  color: #2b2b2b;
}

.c-empty {
  text-align: center;
  width: 100%;
  color: #9A9B9E;
  margin-top: 80px;
}

.c-stats {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 62px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-shadow: 0px -2px 6px 1px rgba(0, 85, 164, 0.06);
          box-shadow: 0px -2px 6px 1px rgba(0, 85, 164, 0.06);
}
.c-stats__item {
  padding-top: 10px;
}
.c-stats__item:nth-child(2) {
  position: relative;
}
.c-stats__item:nth-child(2)::before {
  content: "";
  display: block;
  width: 1px;
  height: 34px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #DCDFE6;
}
.c-stats__item:nth-child(2)::after {
  content: "";
  display: block;
  width: 1px;
  height: 34px;
  position: absolute;
  right: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #DCDFE6;
}
.c-stats__item--active {
  border-bottom: 3px solid #1469FC !important;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(61, 158, 255, 0)), to(rgba(100, 178, 255, 0.2)));
  background: linear-gradient(180deg, rgba(61, 158, 255, 0) 0%, rgba(100, 178, 255, 0.2) 100%);
}
.c-stats__number {
  font-size: 1.125rem;
  font-weight: 600;
}
.c-stats__number--total {
  color: #1469FC;
}
.c-stats__number--completed {
  color: #17D154;
}
.c-stats__number--in-progress {
  color: #FC9F14;
}
.c-stats__label {
  font-size: 0.75rem;
  color: #9A9B9E;
}

.c-new-search {
  position: relative;
}
.c-new-search .remaining-count {
  position: absolute;
  right: 0;
  top: 10px;
  padding: 5px 12px;
  font-size: 14px;
  -webkit-box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  color: #1469FC;
}
.c-new-search__intro {
  margin-bottom: 1.5rem;
}
.c-new-search__intro__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-new-search__intro__title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 19px;
  background: #1469FC;
  margin-right: 8px;
}
.c-new-search__intro p {
  font-size: 0.875rem;
  color: #9A9B9E;
}
.c-new-search__footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-tabs {
  font-weight: bold;
  font-size: 16px;
  color: #2b2b2b;
  margin-bottom: 12px;
}

.c-disclosure-list-wrapper {
  height: 500px;
  border: 1px solid #DCDFE6;
  border-radius: 8px;
  background-color: #fafbfc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: auto;
}

.middleSelectContent {
  width: 100%;
  height: 36px;
  line-height: 36px;
  margin-bottom: 32px;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.middleSelectContent span {
  width: 116px;
  height: 36px;
  border-radius: 20px;
  font-weight: 400;
  font-size: 14px;
  color: #1469fc;
  border: 1px solid #1469fc;
  text-align: center;
  margin-right: 16px;
  cursor: pointer;
}
.middleSelectContent .selected {
  background: #1469fc;
  color: #fff;
}
.middleSelectContent {
  /* 未选中的盒子 */
}
.middleSelectContent span:not(.selected):hover {
  background: #ecf6ff;
  border-color: #005bf8;
}
.middleSelectContent {
  /* 选中的盒子 */
}
.middleSelectContent span.selected:hover {
  background: #0054e5;
}

.c-disclosure-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 2rem;
  padding-top: 0;
}
.c-disclosure-list__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: sticky;
  top: 0;
  backdrop-filter: blur(4px);
  padding: 24px 2rem;
  margin-bottom: 1px;
  z-index: 1;
}
.c-disclosure-list__header .c-search-box {
  width: 50%;
}
.c-disclosure-list__header span {
  font-size: 0.875rem;
  color: #9A9B9E;
}
.c-disclosure-list__empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 80px auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-disclosure-list__empty img {
  width: 172px;
  height: 147px;
}
.c-disclosure-list__empty span {
  font-size: 14px;
  color: #9a9dad;
  margin-top: 20px;
}

.c-disclosure-item {
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
  border-radius: 8px;
  -webkit-box-shadow: 1px 1px 16px 2px rgba(0, 85, 164, 0.08);
          box-shadow: 1px 1px 16px 2px rgba(0, 85, 164, 0.08);
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border: 1px solid #fff;
  position: relative;
}
.c-disclosure-item__selected {
  position: absolute;
  top: 50%;
  left: -24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-disclosure-item__content {
  padding-left: 34px;
  position: relative;
  width: 100%;
}
.c-disclosure-item__content p {
  font-size: 0.75rem;
  color: #9A9B9E;
}
.c-disclosure-item__content:hover .a-btn {
  display: block;
}
.c-disclosure-item__content__icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.c-disclosure-item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.25rem;
  width: 100%;
}
.c-disclosure-item__title {
  width: 90%;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-disclosure-item__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #9a9b9e;
}
.c-disclosure-item__sharer {
  margin-top: 0.25rem;
  margin-left: 1rem;
}
.c-disclosure-item__arrow {
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.c-disclosure-item:hover {
  border-color: #b1cdff;
  -webkit-box-shadow: 1px 1px 16px 1px rgba(0, 85, 164, 0.08);
          box-shadow: 1px 1px 16px 1px rgba(0, 85, 164, 0.08);
}
.c-disclosure-item.is-selected {
  border-color: #1469FC;
  background-color: #eff6ff;
}
.c-disclosure-item__check-btn {
  display: none;
  min-width: 90px;
}

.c-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}
.c-tag--created {
  background-color: #aaffc5;
  color: #2b2b2b;
}
.c-tag--shared {
  background-color: #ffe88e;
  color: #2b2b2b;
}

.c-button {
  padding: 0.5rem 1.5rem;
  border-radius: 0.25rem;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.c-button--primary {
  background-color: #1469FC;
  color: #fff;
}
.c-button--primary:hover {
  background-color: #1d4ed8;
}
.c-button--full-width {
  width: 100%;
  padding: 0.75rem 1.5rem;
}
.c-button--start {
  padding-left: 16px;
  padding-right: 16px;
}
.c-button--start .ri-magic-line {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.c-button--start .ri-arrow-right-line {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.c-button--start:hover .ri-magic-line {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
.c-button--start:hover .ri-arrow-right-line {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.c-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.item-dropdown {
  cursor: pointer;
  color: #9a9dad;
}
.item-dropdown ::v-deep .icon {
  font-size: 22px !important;
}

.a-btn {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

::v-deep .ak-loading {
  background-color: rgba(255, 255, 255, 0.3);
}

.c-loading-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem 0;
  color: #9A9B9E;
  font-size: 0.875rem;
}

.c-loading-spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #1469FC;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin-right: 4px;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.c-no-more {
  text-align: center;
  padding: 1.5rem 0;
  color: #9A9B9E;
  font-size: 0.875rem;
}
