| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 | 
							- /* .cardWrapper {
 
-   display: grid;
 
-   grid-template-columns: repeat(auto-fill, minmax(290px, auto));
 
-   grid-gap: 16px;
 
-   grid-auto-rows: 180px;
 
- } */
 
- .totalText {
 
-   @apply text-gray-900 font-medium text-base flex-1;
 
- }
 
- .docSearchWrapper {
 
-   @apply sticky w-full h-10 -top-3 bg-white flex items-center mb-3 justify-between z-10;
 
- }
 
- .listContainer {
 
-   height: calc(100% - 3.25rem);
 
-   @apply box-border pb-[30px];
 
- }
 
- .cardWrapper {
 
-   @apply grid gap-4 grid-cols-3 min-w-[902px] last:mb-[30px];
 
- }
 
- .segWrapper {
 
-   @apply box-border h-[180px] min-w-[290px] bg-gray-50 px-4 pt-4 flex flex-col text-opacity-50 rounded-xl border border-transparent hover:border-gray-200 hover:shadow-lg hover:cursor-pointer hover:bg-white;
 
- }
 
- .segTitleWrapper {
 
-   @apply flex items-center justify-between;
 
- }
 
- .segStatusWrapper {
 
-   @apply flex items-center box-border;
 
- }
 
- .segContent {
 
-   white-space: wrap;
 
-   @apply flex-1 h-0 min-h-0 mt-2 text-sm text-gray-800 overflow-ellipsis overflow-hidden from-gray-800 to-white;
 
- }
 
- .segData {
 
-   @apply hidden text-gray-500 text-xs pt-2;
 
- }
 
- .segDataText {
 
-   @apply max-w-[80px] truncate;
 
- }
 
- .chartLinkText {
 
-   background: linear-gradient(to left, white, 90%, transparent);
 
-   @apply text-primary-600 font-semibold text-xs absolute right-0 hidden h-12 pl-12 items-center;
 
- }
 
- .select {
 
-   @apply h-8 py-0 bg-gray-50 hover:bg-gray-100 rounded-lg shadow-none !important;
 
- }
 
- .segModalContent {
 
-   @apply h-96 text-gray-800 text-base break-all overflow-y-scroll;
 
-   white-space: pre-line;
 
- }
 
- .footer {
 
-   @apply flex items-center justify-between box-border border-t-gray-200 border-t-[0.5px] pt-3 mt-4;
 
- }
 
- .numberInfo {
 
-   @apply text-gray-500 text-xs font-medium;
 
- }
 
- .keywordTitle {
 
-   @apply text-gray-500 mb-2 mt-1 text-xs uppercase;
 
- }
 
- .keywordWrapper {
 
-   @apply text-gray-700 w-full max-h-[200px] overflow-auto flex flex-wrap;
 
- }
 
- .keyword {
 
-   @apply text-sm border border-gray-200 max-w-[200px] max-h-[100px] whitespace-pre-line overflow-y-auto mr-1 mb-2 last:mr-0 px-2 py-1 rounded-lg;
 
- }
 
- .hashText {
 
-   @apply w-48 inline-block truncate;
 
- }
 
- .commonIcon {
 
-   @apply w-3 h-3 inline-block align-middle mr-1 bg-gray-500;
 
-   mask-repeat: no-repeat;
 
-   mask-size: contain;
 
-   mask-position: center center;
 
- }
 
- .targetIcon {
 
-   mask-image: url(../../assets/target.svg);
 
- }
 
- .typeSquareIcon {
 
-   mask-image: url(../../assets/typeSquare.svg);
 
- }
 
- .bezierCurveIcon {
 
-   mask-image: url(../../assets/bezierCurve.svg);
 
- }
 
- .cardLoadingWrapper {
 
-   @apply relative w-full h-full inline-block rounded-b-xl;
 
-   background-position: center center;
 
-   background-repeat: no-repeat;
 
-   background-size: 100% 100%;
 
-   background-origin: content-box;
 
- }
 
- .cardLoadingIcon {
 
-   background-image: url(../../assets/cardLoading.svg);
 
- }
 
- /* .hitLoadingIcon {
 
-   background-image: url(../../assets/hitLoading.svg);
 
- } */
 
- .cardLoadingBg {
 
-   @apply h-full relative rounded-b-xl mt-4;
 
-   left: calc(-1rem - 1px);
 
-   width: calc(100% + 2rem + 2px);
 
-   height: calc(100% - 1rem + 1px);
 
-   background: linear-gradient(
 
-     180deg,
 
-     rgba(252, 252, 253, 0) 0%,
 
-     #fcfcfd 74.15%
 
-   );
 
- }
 
- .hitTitleWrapper {
 
-   @apply w-full flex items-center justify-between mb-2;
 
- }
 
- .progressWrapper {
 
-   @apply flex items-center justify-between w-full;
 
- }
 
- .progress {
 
-   border-radius: 3px;
 
-   @apply relative h-1.5 box-border border border-gray-300 flex-1 mr-2;
 
- }
 
- .progressLoading {
 
-   @apply border-[#EAECF0] bg-[#EAECF0];
 
- }
 
- .progressInner {
 
-   @apply absolute top-0 h-full bg-gray-300;
 
- }
 
- .progressText {
 
-   font-size: 13px;
 
-   @apply text-gray-700 font-bold;
 
- }
 
- .progressTextLoading {
 
-   border-radius: 5px;
 
-   @apply h-3.5 w-3.5 bg-[#EAECF0];
 
- }
 
 
  |