div#home_top_iconsCard {
  /* width: calc(50% - 0.5rem); */
  /* height: calc(328px + 0.5rem); */
  height: 345px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 0%;
  container-name: myContainer;
  container-type: inline-size;
  margin: 0;
}

div#home_top_iconsCard_content {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  box-shadow: 0 8 16 -4 #2c2d300c;
  flex-direction: column;
  will-change: transform;
  background: var(--theme-palette-color-8);
  border: 1px solid var(--theme-palette-color-6);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  animation: 0.6s ease 0.1s 1 normal backwards running slide-in;
}

.banners-title {
  top: 1.5rem;
  left: 2rem;
  position: absolute;
  display: flex;
  flex-direction: column;
  color: var(--theme-palette-color-4);
}

.banner-title-tips {
  font-size: 12px;
  line-height: 1;
  /* color: var(--heo-fontcolor); */
  margin-bottom: 16px;
  width: fit-content;
  display: flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 40px;
  background: var(--theme-palette-color-7);
  gap: 4px;
  border: 1px solid var(--theme-palette-color-6);
}

.banners-title-big {
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 8px;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.banners-title-small {
  font-size: 12px;
  line-height: 1;
  color: var(--theme-palette-color-4);
  margin-top: 8px;
  margin-bottom: 0.5rem;
  margin-left: 2px;
}

#krj_visits_today {
  display: flex;
  height: 30px;
  overflow: hidden;
}

.digit-container {
  display: flex;
  flex-direction: column;
  line-height: 30px;
}

.banners-visit {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  /* color: var(--theme-palette-color-4); */
  margin-top: 20px;
  margin-bottom: 0.5rem;
  margin-left: 2px;
}

.banners-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  bottom: 36px;
  left: 40px;
  gap: 12px;
  flex-wrap: wrap;
}

.banners-link-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 18px 8px 14px;
  border-radius: 60px;
  color: #fff;
  width: 94px;
  position: relative;
}

.banners-link-btn.blb-hot {
  background: linear-gradient(to right, #f65, #ffbf37);
  background-size: 200%;
}

.banners-link-btn.blb-top {
  background: linear-gradient(to right, #358bff, #15c6ff);
  background-size: 200%;
}

.banners-link-title {
  margin-left: auto;
  pointer-events: none;
}

@keyframes rowleft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes rowup {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

.tags-group-icon {
  width: 120px;
  height: 120px;
  border-radius: 30px;
  position: relative;
}

.tags-group-title {
  font-size: 14px;
  color: #fff;
  background: #425aef;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 120px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

.tags-group-all {
  display: flex;
  transform: rotate(0);
  transition: opacity 0.3s ease-out, filter 0.5s ease-in-out;
}

#home_top_iconsCard .tags-group-wrapper {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  animation: rowup 60s linear infinite;
  width: 320px;
  margin-left: auto;
}

.tags-group-icon-pair .tags-group-icon:nth-child(even) {
  margin-top: 1rem;
  transform: translate(-60px);
}

#home_top_iconsCard .tags-group-icon-pair {
  display: flex;
}

#home_top_iconsCard .tags-group-icon-pair .tags-group-icon:nth-child(even) {
  margin-left: 4rem;
}

.tags-group-icon-pair {
  margin-left: 1rem;
  user-select: none;
}

.tags-group-icon-pair a img {
  border-radius: 50% !important;
}

.tags-group-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 66px;
  font-weight: 700;
  box-shadow: 0 2px 16px -3px rgba(0, 0, 0, 0.15);
}

.tags-group-icon img {
  width: 60%;
}

.banners-link-btn:hover {
  color: #fff;
  background-position: 100% 0;
  cursor: pointer;
}

@container myContainer (width < 555px) {
  .tags-group-all {
    opacity: 0.6;
    filter: blur(8px);
  }
}




