.p-w {
  width: 100%;
  height: 100%;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-5px);
  }
  100% {
    transform: translatey(0px);
  }
}
/* For mobile phones: */
.p-b {
  width: 100vw;
  overflow: hidden;
}
.p-b .p-b-c {
  margin: 0 auto;
}
.p-b .p-b-h {
  height: 80px;
  background: var(--color-background1);
  box-shadow: 0 0 20px 0px rgba(var(--color-shadow-value0), 0.2);
  position: --webkit-sticky; /* For Safari */
  position: sticky;
  top: 0;
  z-index: 2;
}
.p-b .p-b-f {
  width: 100vw;
  height: 80px;
  background: var(--color-background1);
  box-shadow: 0 0 20px 0px rgba(var(--color-shadow-value0), 0.2);
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.p-b .p-b-f .p-b-f-inner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.p-b .p-b-f .p-b-f-inner .p-b-f-inner-l {
  order: 2;
}
.p-b .p-b-f .p-b-f-inner .p-b-f-inner-r {
  order: 1;
}

.section-item {
  margin: 16px 0;
}
.section-item .section-item-header {
  margin: 0 var(--spacing0);
}
.grid-container {
  margin: var(--spacing0);
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.link-item {
  background: none;
  border-radius: 8px;
  transition: 0.2s;
}
.link-item .link-item-logo img {
  display: inline-block;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(56, 54, 54, 0.2);
}
.link-item .link-item-img {
  display: none;
  width: 100%;
  background-color: #ddd;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.link-item .link-item-img img {
  width: 100%;
  height: 100%;
  display: block;
}
.link-item .link-item-title {
  margin: var(--spacing0) 0 0 0;
  color: var(--color-text0);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.link-item .link-item-desc {
  display: none;
  height: 42px;
  margin-left: var(--spacing0);
  margin-right: var(--spacing0);
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  /*tooltip */
  /* tooltip  after*/
  /*hover ToolTip*/
}
.link-item .link-item-desc .link-item-desc-label {
  color: var(--color-text1);
  font-size: 14px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.link-item .link-item-desc .tooltip {
  visibility: hidden;
  opacity: 0.5;
  width: 200%;
  background: var(--color-background2);
  color: var(--color-primary);
  position: absolute;
  top: calc(100% + 10px);
  left: -50%;
  z-index: 99;
  border-radius: 8px;
  font: 16px;
  transform: translateY(8px);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 3px rgba(56, 54, 54, 0.86);
}
.link-item .link-item-desc .tooltip p {
  padding: var(--spacing0);
  font-size: 14px;
}
.link-item .link-item-desc .tooltip::before {
  content: " ";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 12.5px 0 12.5px;
  border-color: var(--color-background2) transparent transparent transparent;
  transform: rotate(180deg);
  position: absolute;
  left: calc(50% - 12.5px);
  top: -12px;
  z-index: 99;
}
.link-item .link-item-desc .top:hover {
  transform: translateY(-6px);
}
.link-item .link-item-desc:hover .tooltip {
  visibility: visible;
  transform: translateY(-10px);
  opacity: 1;
  transition: 0.3s linear;
  animation: odsoky 1s ease-in-out infinite alternate;
}
@keyframes odsoky {
  0% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(1px);
  }
}
.link-item .link-item-title + .link-item-desc {
  margin-top: 8px;
}
.link-item .link-item-ctl {
  display: none;
  margin: var(--spacing0);
  justify-content: space-around;
}
.link-item .link-item-ctl .right {
  display: none;
}
.link-item .link-item-tag-reco {
  font-size: 14px;
  color: white;
  outline: none;
  border: none;
  background-image: linear-gradient(90deg, #ff0076 0%, #ff5c00 100%);
  border-radius: 16px;
  height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.link-item .link-item-btn-qrcode,
.link-item .link-item-btn-share {
  outline: none;
  border: none;
  background: none;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.link-item .link-item-btn-qrcode:hover + .link-item-qrcode-mask {
  display: flex;
}
.link-item .link-item-btn-qrcode:hover svg g path {
  fill: white;
}
.link-item .link-item-qrcode-mask {
  display: none;
  background-color: rgba(0, 0, 0, 0.66);
  border-radius: 4px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.link-item .link-item-qrcode-mask .link-item-qrcode {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.link-item .link-item-qrcode-mask .link-item-qrcode .link-item-qrcode-img {
  width: 50%;
  height: 50%;
  background-color: white;
  border: 8px solid white;
  border-radius: 8px;
}
.link-item .link-item-qrcode-mask .link-item-qrcode .link-item-qrcode-img img {
  width: 100%;
  height: 100%;
}
.link-item .link-item-qrcode-mask .link-item-qrcode .link-item-qrcode-label {
  margin-top: 8px;
  text-align: center;
  color: white;
}

.link-item:hover {
  transform: scale(1.05);
}

.logo-box {
  width: 146px;
  height: 40px;
  margin-left: 12px;
}
.logo-box img {
  width: 100%;
  height: 100%;
  content: url("../images/logo_light.png");
}

.btn-favorite-add,
.btn-mode-switch,
.btn-contact {
  outline: none;
  border: none;
  font-size: 14px;
  height: 40px;
  background: none;
}
.btn-favorite-add svg + span,
.btn-mode-switch svg + span,
.btn-contact svg + span {
  margin-left: 4px;
}

.btn-contact + .btn-contact {
  margin-left: 8px;
}

.btn-favorite-add {
  color: var(--color-primary);
  animation: float 2s ease-in-out infinite;
}

.btn-favorite-add:hover,
.btn-favorite-add:active {
  color: var(--color-primary);
}

.btn-mode-switch .mode-dark {
  display: flex;
}
.btn-mode-switch .mode-light {
  display: none;
}

.btn-favorite-add + .btn-mode-switch {
  margin-left: var(--spacing0);
}

.btn-favorite-add + .btn-business {
  margin-left: var(--spacing0);
}

.btn-business {
  margin-right: var(--spacing0);
}

.copyright {
  font-size: 14px;
}

/* For tablets: */
@media only screen and (min-width: 600px) {
  .p-b .p-b-c {
    max-width: 1024px;
  }
  .section-item {
    margin: 24px 0;
  }
  .section-item .section-item-header {
    margin: 0 var(--spacing0);
  }
  .section-item .section-item-main .link-item-ctl {
    justify-content: space-between;
  }
  .section-item .section-item-main .link-item-ctl .right {
    display: flex;
  }
  .grid-container {
    margin: var(--spacing0);
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .link-item {
    background: var(--color-background1);
    box-shadow: 0 5px 20px 0px rgba(var(--color-shadow-value0), 0.2);
  }
  .link-item .link-item-logo {
    display: none;
  }
  .link-item .link-item-img,
  .link-item .link-item-desc {
    display: block;
  }
  .link-item .link-item-title {
    margin: var(--spacing0) var(--spacing0) 0 var(--spacing0);
    text-align: left;
  }
  .link-item .link-item-ctl {
    display: flex;
  }
  .link-item:hover {
    box-shadow: 0 5px 20px 0px rgba(var(--color-shadow-value0), 0.5);
    transform: scale(1.05);
  }
}
/* For desktop: */
@media only screen and (min-width: 768px) {
  .p-b .p-b-c {
    max-width: 1024px;
  }
  .p-b .p-b-f .p-b-f-inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
  .p-b .p-b-f .p-b-f-inner .p-b-f-inner-l {
    order: 1;
  }
  .p-b .p-b-f .p-b-f-inner .p-b-f-inner-r {
    order: 2;
  }
  .section-item {
    margin: 36px 0;
  }
  .section-item .section-item-main .link-item-ctl {
    justify-content: space-between;
  }
  .section-item .section-item-main .link-item-ctl .right {
    display: flex;
  }
  .grid-container {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
/* For desktop: */
@media only screen and (min-width: 900px) {
  .p-b .p-b-c {
    max-width: 1024px;
  }
  .p-b .p-b-f .p-b-f-inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
  .p-b .p-b-f .p-b-f-inner .p-b-f-inner-l {
    order: 1;
  }
  .p-b .p-b-f .p-b-f-inner .p-b-f-inner-r {
    order: 2;
  }
  .section-item {
    margin: 36px 0;
  }
  .section-item .section-item-main .link-item-ctl {
    justify-content: space-between;
  }
  .section-item .section-item-main .link-item-ctl .right {
    display: flex;
  }
  .grid-container {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}

/*# sourceMappingURL=index.css.map */
