:root {
  --dl-bg: #221818;
  --dl-text: #ffffff;
  --dl-muted: #d6d8d9;
  --dl-brand: #b81c22;
  --dl-card-border: rgba(231, 231, 231, 0.6);
  --dl-card-bg: #787474;
  --dl-card-hover: #ffffff;
  --dl-content: 83.333vw;
  --zs-brand: #b81c22;
  --zs-muted: #d6d8d9;
  --zs-inner: 83.333vw;
}

body.zs-download {
  background: var(--dl-bg);
  color: var(--dl-text);
}

.dl-page {
  width: 100%;
}

.page-shell {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.zs-download .hero-nav {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(1.041vw);
  -webkit-backdrop-filter: blur(1.041vw);
}

.dl-hero {
  position: relative;
  width: 100%;
  height: 28.333vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.dl-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.dl-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 24, 24, 0.2) 0%, rgba(34, 24, 24, 0.55) 75%, rgba(34, 24, 24, 1) 100%);
  z-index: -1;
}

.dl-hero-inner {
  width: var(--dl-content);
  padding: 9.375vw 3.125vw 4.166vw;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.989vw;
}

.dl-hero-title {
  margin: 0;
  color: #ffffff;
  line-height: 1.5;
}

.dl-hero-title .f_60 {
  font-size: 3.125vw;
}

.dl-hero-desc {
  margin: 0;
  color: #ffffff;
  line-height: 1.5;
}

.dl-body {
  width: 100%;
  padding: 9.375vw 0 6.25vw;
}

.dl-body-inner {
  width: var(--dl-content);
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.083vw;
}

.dl-sidebar {
  width: 11.927vw;
  flex: 0 0 11.927vw;
}

.dl-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.52vw;
}

.dl-cat-item {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dl-cat-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 2.291vw;
  padding: 0 0.937vw;
  border: none;
  background: transparent;
  color: #e7e7e7;
  border-radius: 0.208vw;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
  font-family: inherit;
  box-sizing: border-box;
  font-weight: 300;
}

.dl-cat-btn:hover {
  color: #ffffff;
}

.dl-cat-btn.is-active {
  background: #ffffff;
  color: var(--dl-brand);
  border-left: 0.156vw solid var(--dl-brand);
  padding-left: 0.781vw;
  font-weight: 400;
  box-shadow: 0vw 0.52vw 0.781vw -0.156vw rgba(0, 0, 0, 0.1), 0vw 0.208vw 0.312vw -0.208vw rgba(0, 0, 0, 0.1);
}

.dl-cat-arrow {
  width: 0.625vw;
  height: 0.625vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.2s ease;
}

.dl-cat-arrow::before {
  content: "";
  width: 0.416vw;
  height: 0.416vw;
  border-top: 0.104vw solid currentColor;
  border-right: 0.104vw solid currentColor;
  transform: rotate(45deg);
  display: block;
}

.dl-cat-arrow-down {
  transform: rotate(90deg);
}

.dl-sub-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.52vw;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease, margin-top 0.3s ease;
  margin-top: 0;
}

.dl-cat-item.is-open .dl-sub-list {
  max-height: 26.041vw;
  opacity: 1;
  margin-top: 0.52vw;
}

.dl-sub-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 2.291vw;
  padding: 0 0 0 2.135vw;
  border: none;
  background: transparent;
  color: #e7e7e7;
  cursor: pointer;
  transition: color 0.2s ease;
  text-align: left;
  font-family: inherit;
  box-sizing: border-box;
  font-weight: 300;
}

.dl-sub-btn::before {
  content: "";
  position: absolute;
  top: 0.26vw;
  left: 1.718vw;
  width: 10.208vw;
  height: 1.77vw;
  border-radius: 0.26vw;
  background: transparent;
  z-index: -1;
  transition: background 0.2s ease;
}

.dl-sub-btn:hover {
  color: #ffffff;
}

.dl-sub-btn.is-active {
  color: var(--dl-brand);
}

.dl-sub-btn.is-active::before {
  background: #ffffff;
}

.dl-content {
  flex: 0 1 54.062vw;
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.927vw;
}

.dl-toolbar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.625vw;
  height: 2.187vw;
}

.dl-search {
  height: 2.187vw;
  flex: 0 1 35.572vw;
  max-width: 35.572vw;
  display: flex;
  align-items: center;
  gap: 0.572vw;
  padding: 0 0.781vw;
  border: 0.052vw solid rgba(231, 231, 231, 0.6);
  border-radius: 0.208vw;
  background: transparent;
  margin-right: auto;
  box-sizing: border-box;
}

.dl-search-icon {
  width: 0.937vw;
  height: 0.937vw;
  color: #52525c;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dl-search-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.dl-search input {
  flex: 1 1 auto;
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
  font-size: 0.833vw;
  color: #ffffff;
  height: 100%;
  padding: 0;
}

.dl-search input::placeholder {
  color: #52525c;
}

.dl-view-toggle {
  width: 0.833vw;
  height: 0.833vw;
  flex-shrink: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.dl-view-toggle:hover {
  color: #ffffff;
}

.dl-view-toggle svg {
  width: 0.833vw;
  height: 0.833vw;
  display: block;
}

.dl-sort {
  flex-shrink: 0;
  position: relative;
}

.dl-sort-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 8.541vw;
  height: 2.187vw;
  padding: 0 0.833vw;
  border: 0.052vw solid rgba(39, 39, 42, 0.6);
  border-radius: 0.208vw;
  background: transparent;
  color: #9f9fa9;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.729vw;
  transition: color 0.2s ease, border-color 0.2s ease;
  box-sizing: border-box;
}

.dl-sort-btn:hover,
.dl-sort.is-open .dl-sort-btn {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.dl-sort-caret {
  width: 0.677vw;
  height: 0.677vw;
  flex-shrink: 0;
  position: relative;
  display: inline-block;
  margin-left: 0.416vw;
  transition: transform 0.2s ease;
}

.dl-sort-caret::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.364vw;
  height: 0.364vw;
  border-bottom: 0.104vw solid currentColor;
  border-right: 0.104vw solid currentColor;
  transform: translate(-50%, -65%) rotate(45deg);
}

.dl-sort.is-open .dl-sort-caret {
  transform: rotate(180deg);
}

.dl-sort-menu {
  position: absolute;
  top: calc(100% + 0vw);
  left: 0;
  width: 7.5vw;
  height: 5.937vw;
  list-style: none;
  margin: 0;
  padding: 0.208vw 0;
  background: #ffffff;
  border: 0.052vw solid #f3f4f6;
  border-radius: 0.312vw;
  box-shadow: 0 0.52vw 0.781vw -0.156vw rgba(0, 0, 0, 0.1), 0 0.208vw 0.312vw -0.208vw rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 5;
  box-sizing: border-box;
}

.dl-sort.is-open .dl-sort-menu {
  display: block;
}

.dl-sort-option {
  width: 100%;
  height: 1.875vw;
  padding: 0 0.833vw;
  text-align: left;
  border: none;
  background: transparent;
  color: #4a5565;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.729vw;
  display: flex;
  align-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.dl-sort-option:hover {
  background: rgba(255, 239, 239, 0.5);
  color: var(--dl-brand);
}

.dl-sort-option.is-active {
  background: rgba(255, 239, 239, 0.5);
  color: var(--dl-brand);
  font-weight: 500;
}

.dl-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 1.406vw;
  row-gap: 3.125vw;
  align-items: start;
}

.dl-card {
  position: relative;
  width: 100%;
}

.dl-card--video {
  height: 10.416vw;
  border: 0.052vw solid var(--dl-card-border);
  border-radius: 0.416vw;
  overflow: hidden;
}

.dl-card--video .dl-card-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dl-card--video:hover .dl-card-inner {
  transform: scale(1.01);
}

.dl-card-cover {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dl-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dl-card-cover-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.dl-card-tag {
  position: absolute;
  top: 0.729vw;
  left: 0.625vw;
  right: 0.625vw;
  z-index: 2;
  height: 1.041vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.062vw;
  pointer-events: none;
}

.dl-card-tag .f_14 {
  line-height: 0.833vw;
}

.dl-card-tag .dl-icon-youtube {
  width: 1.302vw;
  height: 1.041vw;
  display: inline-block;
  object-fit: contain;
  flex-shrink: 0;
}

.dl-card-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3.906vw;
  padding: 0.416vw 0.625vw;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(0.947vw);
  -webkit-backdrop-filter: blur(0.947vw);
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.dl-card-title {
  margin: 0;
  color: #ffffff;
  line-height: 1.562vw;
  display: -webkit-box;
  display: box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dl-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  line-height: 1.562vw;
}

.dl-card-size {
  display: inline-flex;
  align-items: center;
  gap: 0.26vw;
}

.dl-card--doc {
  min-height: 10.416vw;
}

.dl-card--doc .dl-doc-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
  padding: 1.25vw 1.458vw;
  border: 0.052vw solid var(--dl-card-border);
  border-radius: 0.416vw;
  background: var(--dl-card-bg);
  color: #ffffff;
  min-height: 10.416vw;
  box-sizing: border-box;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease,
    box-shadow 0.25s ease, transform 0.25s ease;
}

.dl-card--doc .dl-doc-inner:hover,
.dl-card--doc .dl-doc-inner.is-expanded {
  background: var(--dl-card-hover);
  border-color: var(--dl-brand);
  box-shadow: 0 0.625vw 1.25vw rgba(0, 0, 0, 0.18);
}

.dl-card--doc .dl-doc-inner:hover {
  transform: translateY(-0.104vw);
}

.dl-card--doc .dl-doc-inner.is-expanded {
  transform: none;
}

.dl-doc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dl-doc-tag {
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.062vw;
  text-transform: uppercase;
  line-height: 0.833vw;
  height: 0.833vw;
  display: inline-flex;
  align-items: center;
  transition: color 0.25s ease;
}

.dl-card--doc .dl-doc-inner:hover .dl-doc-tag,
.dl-card--doc .dl-doc-inner.is-expanded .dl-doc-tag {
  color: #71717b;
}

.dl-doc-icon {
  width: 1.25vw;
  height: 1.25vw;
  display: inline-block;
  flex-shrink: 0;
  object-fit: contain;
  transition: filter 0.25s ease;
}

.dl-card--doc .dl-doc-inner:hover .dl-doc-icon,
.dl-card--doc .dl-doc-inner.is-expanded .dl-doc-icon {
  filter: brightness(0) saturate(100%) invert(18%) sepia(85%) saturate(3500%) hue-rotate(346deg) brightness(94%) contrast(101%);
}

.dl-doc-body {
  display: flex;
  flex-direction: column;
  gap: 0.208vw;
  min-width: 0;
}

.dl-doc-title {
  margin: 0;
  color: #ffffff;
  line-height: 1.562vw;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.25s ease;
}

.dl-card--doc .dl-doc-inner:hover .dl-doc-title,
.dl-card--doc .dl-doc-inner.is-expanded .dl-doc-title {
  color: var(--dl-brand);
}

.dl-doc-desc {
  margin: 0;
  color: #d4d4d4;
  line-height: 1.184vw;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.25s ease;
}

.dl-card--doc .dl-doc-inner:hover .dl-doc-desc,
.dl-card--doc .dl-doc-inner.is-expanded .dl-doc-desc {
  color: #595757;
}

.dl-card--doc .dl-doc-inner.is-expanded .dl-doc-title,
.dl-card--doc .dl-doc-inner.is-expanded .dl-doc-desc {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  display: block;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

.dl-doc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.416vw;
  border-top: 0.052vw solid #e7e7e7;
  color: #ffffff;
  margin-top: auto;
  height: 1.562vw;
  box-sizing: border-box;
  line-height: 0.833vw;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.dl-card--doc .dl-doc-inner:hover .dl-doc-foot,
.dl-card--doc .dl-doc-inner.is-expanded .dl-doc-foot {
  color: var(--dl-brand);
  border-top-color: var(--dl-brand);
}

.dl-doc-action {
  transition: color 0.25s ease;
}

.dl-card--doc .dl-doc-inner:hover .dl-doc-action,
.dl-card--doc .dl-doc-inner.is-expanded .dl-doc-action {
  color: var(--dl-brand);
}

.dl-doc-size {
  display: inline-flex;
  align-items: center;
  gap: 0.26vw;
  line-height: 1.562vw;
}

.dl-card--doc .dl-doc-inner:hover .dl-icon-download,
.dl-card--doc .dl-doc-inner.is-expanded .dl-icon-download {
  filter: brightness(0) saturate(100%) invert(18%) sepia(85%) saturate(3500%) hue-rotate(346deg) brightness(94%) contrast(101%);
}

.dl-icon-download {
  width: 0.833vw;
  height: 0.833vw;
  display: inline-block;
  flex-shrink: 0;
  object-fit: contain;
  vertical-align: middle;
}


/* 
*======================================================media===============================================================
*/
@media screen and (max-width:768px) {
  :root {
    --dl-content: 92%;
    --zs-inner: 92%;
  }
  
  .dl-page {
    width: 100%;
  }
  
  .page-shell {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .zs-download .hero-nav {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  
  .dl-hero {
    width: 100%;
    height: 544px;
    display: flex;
  }
  
  .dl-hero-bg img {
    width: 100%;
    height: 100%;
  }
  
  .dl-hero-overlay {
    background: linear-gradient(180deg, rgba(34, 24, 24, 0.2) 0%, rgba(34, 24, 24, 0.55) 75%, rgba(34, 24, 24, 1) 100%);
  }
  
  .dl-hero-inner {
    padding: 180px 60px 80px;
    display: flex;
    flex-direction: column;
    gap: 19px;
  }
  
  .dl-hero-title .f_60 {
    font-size: 28px;
  }
  
  .dl-body {
    width: 100%;
    padding: 80px 0 80px;
  }
  
  .dl-body-inner {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .dl-sidebar {
    width: 100%;
    flex: none;
  }
  
  .dl-cat-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .dl-cat-item {
    display: flex;
    flex-direction: column;
  }
  
  .dl-cat-btn {
    display: flex;
    width: 100%;
    height: 34px;
    padding: 0 18px;
    border-radius: 4px;
  }
  
  .dl-cat-btn.is-active {
    border-left: 3px solid var(--dl-brand);
    padding-left: 15px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  }
  
  .dl-cat-arrow {
    width: 12px;
    height: 12px;
    display: inline-flex;
    flex-shrink: 0;
  }
  
  .dl-cat-arrow::before {
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
  }
  
  .dl-sub-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .dl-cat-item.is-open .dl-sub-list {
    max-height: 500px;
    margin-top: 10px;
    /* flex-direction: row; */
    flex-wrap: wrap;
    padding: 0 0 0 20px;
  }
  
  .dl-sub-btn {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    height: 30px;
    padding: 0 10px;
  }
  
  .dl-sub-btn::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    border-radius: 5px;
  }
  
  .dl-content {
    flex: 0 1 1038px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 37px;
  }
  
  .dl-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    height: auto;
  }
  
  .dl-search {
    height: 42px;
    flex: 0 1 683px;
    max-width: 683px;
    display: flex;
    gap: 11px;
    padding: 0 15px;
    border: 1px solid rgba(231, 231, 231, 0.6);
    border-radius: 4px;
  }
  
  .dl-search-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: inline-flex;
  }
  
  .dl-search-icon svg {
    width: 100%;
    height: 100%;
  }
  
  .dl-search input {
    flex: 1 1 auto;
    font-size: 16px;
    height: 100%;
  }
  
  .dl-view-toggle {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: inline-flex;
  }
  
  .dl-view-toggle svg {
    width: 16px;
    height: 16px;
  }
  
  .dl-sort {
    flex-shrink: 0;
  }
  
  .dl-sort-btn {
    display: inline-flex;
    width: 164px;
    height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(39, 39, 42, 0.6);
    border-radius: 4px;
    font-size: 14px;
  }
  
  .dl-sort-caret {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    margin-left: 8px;
  }
  
  .dl-sort-caret::before {
    left: 50%;
    top: 50%;
    width: 7px;
    height: 7px;
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translate(-50%, -65%) rotate(45deg);
  }
  
  .dl-sort-menu {
    top: calc(100% + 0px);
    width: 144px;
    height: 114px;
    padding: 4px 0;
    border: 1px solid #f3f4f6;
    border-radius: 6px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  }
  
  .dl-sort-option {
    width: 100%;
    height: 36px;
    padding: 0 16px;
    font-size: 14px;
    display: flex;
  }
  
  .dl-grid {
    column-gap: 10px;
    row-gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .dl-card {
    width: 100%;
  }
  
  .dl-card--video {
    height: 200px;
    border: 1px solid var(--dl-card-border);
    border-radius: 8px;
  }
  
  .dl-card--video .dl-card-inner {
    width: 100%;
    height: 100%;
  }
  
  .dl-card-cover img {
    width: 100%;
    height: 100%;
  }
  
  .dl-card-tag {
    top: 14px;
    left: 12px;
    right: 12px;
    height: 20px;
    display: flex;
    letter-spacing: 1.2px;
  }
  
  .dl-card-tag .f_14 {
    line-height: 16px;
  }
  
  .dl-card-tag .dl-icon-youtube {
    width: 25px;
    height: 20px;
    flex-shrink: 0;
  }
  
  .dl-card-foot {
    height: 75px;
    padding: 8px 12px;
    backdrop-filter: blur(18.2px);
    -webkit-backdrop-filter: blur(18.2px);
    display: flex;
    flex-direction: column;
  }
  
  .dl-card-title {
    line-height: 30px;
  }
  
  .dl-card-meta {
    display: flex;
    line-height: 30px;
  }
  
  .dl-card-size {
    display: inline-flex;
    gap: 5px;
  }
  
  .dl-card--doc {
    min-height: 200px;
  }
  
  .dl-card--doc .dl-doc-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 28px;
    border: 1px solid var(--dl-card-border);
    border-radius: 8px;
    min-height: 200px;
  }
  
  .dl-card--doc .dl-doc-inner:hover,
  .dl-card--doc .dl-doc-inner.is-expanded {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  }
  
  .dl-card--doc .dl-doc-inner:hover {
    transform: translateY(-2px);
  }
  
  .dl-doc-head {
    display: flex;
  }
  
  .dl-doc-tag {
    letter-spacing: 1.2px;
    line-height: 16px;
    height: 16px;
    display: inline-flex;
  }
  
  .dl-doc-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  
  .dl-card--doc .dl-doc-inner:hover .dl-doc-icon,
  .dl-card--doc .dl-doc-inner.is-expanded .dl-doc-icon {
    filter: brightness(0) saturate(100%) invert(18%) sepia(85%) saturate(3500%) hue-rotate(346deg) brightness(94%) contrast(101%);
  }
  
  .dl-doc-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .dl-doc-title {
    line-height: 30px;
  }
  
  .dl-doc-desc {
    line-height: 22.75px;
  }
  
  .dl-doc-foot {
    display: flex;
    padding-top: 8px;
    border-top: 1px solid #e7e7e7;
    height: 30px;
    line-height: 16px;
  }
  
  .dl-doc-size {
    display: inline-flex;
    gap: 5px;
    line-height: 30px;
  }
  
  .dl-card--doc .dl-doc-inner:hover .dl-icon-download,
  .dl-card--doc .dl-doc-inner.is-expanded .dl-icon-download {
    filter: brightness(0) saturate(100%) invert(18%) sepia(85%) saturate(3500%) hue-rotate(346deg) brightness(94%) contrast(101%);
  }
  
  .dl-icon-download {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
}