.project-cate-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.project-cate-list .project-cate-item {
  padding: 1rem 1.6rem;
  border-radius: 99rem;
  border: 0.1rem solid #656565;
  color: #656565;
}

.project-info-list {
  min-height: 2rem;
  row-gap: 0.8rem;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
}
.project-info-list .project-info-item {
  display: flex;
  align-items: center;
}
.project-info-list .project-info-item:not(:last-child)::after {
  content: "";
  margin: 0 1.2rem;
  width: 0.4rem;
  height: 0.4rem;
  background-color: #131313;
  border-radius: var(--radius-circle);
}

.project-hot-list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.project-hot-item {
  --spacing: 4rem;
  border-radius: 2.4rem;
  padding: var(--spacing);
  background-color: #EDEEF0;
  position: relative;
  display: flex;
  position: sticky;
  top: 2.4rem;
  overflow: hidden;
}
.project-hot-item:nth-child(2) {
  background-color: #afcaff;
}
.project-hot-item:nth-child(3) {
  background-color: #c9fcff;
}
.project-hot-item:nth-child(4) {
  background-color: #ffe0e0;
}
.project-hot-item:nth-child(5) {
  background-color: #d1f4f7;
}
.project-hot-item .project-hot-img {
  width: 66.6666666667%;
  transform: translate(var(--spacing), var(--spacing));
  display: flex;
  align-items: flex-end;
}
.project-hot-item .project-hot-img img {
  width: 100%;
}
.project-hot-item .project-hot-tt {
  max-width: 50rem;
}

.project-hot-info {
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.4rem;
}

.project-item-skeleton {
  pointer-events: none;
}

.project-item-skeleton .project-item-skeleton-thumb,
.project-item-skeleton .project-item-skeleton-line,
.project-item-skeleton .project-item-skeleton-tag {
  background: linear-gradient(90deg, #f1f3f5 0%, #eceff3 50%, #f1f3f5 100%);
  background-size: 220% 100%;
  animation: suggestShimmer 1.2s linear infinite;
}

.project-item-skeleton .project-item-skeleton-thumb {
  aspect-ratio: 16/10;
  width: 100%;
  display: block;
}

.project-item-skeleton .project-item-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.project-item-skeleton .project-item-skeleton-line {
  display: block;
  border-radius: 99rem;
  height: 1.2rem;
}

.project-item-skeleton .project-item-skeleton-line-meta {
  width: 42%;
}

.project-item-skeleton .project-item-skeleton-line-title {
  height: 1.8rem;
  width: 88%;
}

.project-item-skeleton .project-item-skeleton-line-title-short {
  height: 1.8rem;
  width: 64%;
}

.project-item-skeleton .project-item-skeleton-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.6rem;
}

.project-item-skeleton .project-item-skeleton-tag {
  display: inline-block;
  width: 8.4rem;
  height: 2.4rem;
  border-radius: 99rem;
}

.project-item {
  break-inside: auto;
  height: auto;
}

.project-item-img {
  aspect-ratio: 592/444;
}

.project-item-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.6rem;
  overflow: hidden;
}

.project-item-content {
  padding: 4rem 2.4rem;
  background-color: #F3F3F3;
  flex: 1;
}

@media screen and (min-width: 1201px) {
  .project-hot-item {
    min-height: 58rem;
  }
}
@media screen and (max-width: 576px) {
  .project-cate-list {
    gap: 0.4rem;
  }
  .project-cate-list .project-cate-item {
    padding: 0.6rem 1rem;
  }
  .project-item-content {
    padding: 2.4rem 1.6rem;
  }
}
body.is-video-popup-open {
  overflow: hidden;
}

.ytb-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.4rem;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
}
.ytb-popup.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.ytb-popup__inner {
  position: relative;
  width: min(100%, 112rem);
  border-radius: 1.6rem;
  background-color: #000;
  box-shadow: 0 2.4rem 8rem rgba(0, 0, 0, 0.35);
  transform: translateY(2rem);
  transition: transform 0.25s ease;
}
.ytb-popup.is-active .ytb-popup__inner {
  transform: translateY(0);
}
.ytb-popup__close {
  position: absolute;
  top: -4.8rem;
  right: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 4rem;
  line-height: 1;
  cursor: pointer;
}
.ytb-popup__frame-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 1.6rem;
  overflow: hidden;
}
.ytb-popup__frame {
  width: 100%;
  height: 100%;
  display: block;
}

.gooey-ani {
  position: absolute;
  z-index: -1;
  overflow: hidden;
  top: 0;
  right: 0;
  width: 60%;
  aspect-ratio: 1;
}

.gooey-container {
  position: absolute;
  width: 100%;
  height: 100%;
  filter: url("#goo");
  display: flex;
  justify-content: center;
  align-items: center;
  right: -40%;
  top: -8%;
}

@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    transform: rotate(0deg) scale(1);
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
    transform: rotate(120deg) scale(1.05);
  }
  100% {
    border-radius: 70% 30% 50% 50%/30% 40% 60% 70%;
    transform: rotate(240deg) scale(0.95);
  }
}
.blob-main {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #FFC76C;
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  animation: morph 8s ease-in-out infinite alternate;
}

@keyframes floatSub {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 20px) scale(1.1);
  }
  100% {
    transform: translate(20px, -20px) scale(0.9);
  }
}
.blob-sub {
  position: absolute;
  top: -5%;
  left: -30%;
  width: 37%;
  aspect-ratio: 1;
  background-color: #FFC76C;
  border-radius: 50%;
  animation: morph 8s ease-in-out infinite alternate;
}

@media screen and (max-width: 767.98px) {
  .gooey-ani {
    display: none;
  }
  .ytb-popup {
    padding: 1.6rem;
  }
  .ytb-popup__close {
    top: -4rem;
    font-size: 3.2rem;
  }
}

/*# sourceMappingURL=du-an-common.css.map */
