.sakete_home_cantacts {
  padding: 7.5625rem 0 7.5625rem 0;
}

.sakete_home_cantacts .contact-list {
  display: flex;
  justify-content: space-between;
  gap: 4.75rem;
}

.sakete_home_cantacts .contact-list a {
  width: 100%;
}

.sakete_home_cantacts .contact-item {
  background-color: #f8fafc;
  padding: 3.125rem 5.375rem 3.75rem 3.125rem;
  border-radius: 0.9375rem;
  width: 100%;
  /* width: 28.125rem; */
  height: 12.5rem;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  color: #282624;
  /* 三级标题 */
  font-family: var(--title-font-family);
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  transition:
    transform 0.3s ease,
    background-color 0.4s ease,
    color 0.4s ease; /* 使用 transition 而不是 transform 来控制颜色 */
}

.sakete_home_cantacts .contact-item:hover {
  /* transform: translateY(-5px); */
  /* box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1); */
  background-color: var(--color-primary, #036eb7);
  /* margin: 0 4.75rem; */
  color: var(--text-color-light);
  /* 三级标题 */
  font-family: var(--title-font-family);

  font-size: 1.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.sakete_home_cantacts .contact-item:hover .icon {
  background-color: var(--text-color-light);
}

.sakete_home_cantacts .contact-item:hover .label {
  color: var(--text-color-light);
}

.sakete_home_cantacts .contact-item .icon {
  width: 5.625rem;
  height: 5.625rem;
  background-color: rgba(3, 110, 183, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1.25rem;
}

.sakete_home_cantacts .contact-item .icon img {
  width: 3.5rem;
  height: 3.5rem;
}

.sakete_home_cantacts .contact-item .info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

@media (min-width: 1024px) {
  .sakete_home_cantacts .contact-item .info {
    width: 8.875rem;
    /* background-color: #fff; */
    overflow: hidden;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    display: block;
  }

  .sakete_home_cantacts .contact-item .info p {
    display: block;
  }
}

.sakete_home_cantacts .contact-item .value {
  font-size: 1.125rem;
  font-weight: bold;
  white-space: nowrap; /* 防止换行 */
  overflow: hidden; /* 隐藏溢出的内容 */
  text-overflow: ellipsis; /* 超出的部分用省略号替代 */
}

.sakete_home_cantacts .contact-item .label {
  color: #4b5563;
  font-family: var(--title-font-family);

  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 166.667%;
  word-wrap: break-word;
}

.sakete_home_cantacts .contact-item.phone {
  background-color: #e1f5fe;
}

.sakete_home_cantacts .contact-item.whatsapp {
  background-color: #25d366;
  color: var(--text-color-light);
}

.sakete_home_cantacts .contact-item.email {
  background-color: #f0f4f7;
}

.sakete_home_cantacts .contact-item.whatsapp .icon {
  background-color: var(--text-color-light);
}

.sakete_home_cantacts .contact-item.email .icon {
  background-color: #d8e3f3;
}

@media screen and (max-width: 1050px) {
    .sakete_home_cantacts .contact-list {
    gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
   .sakete_home_cantacts .contact-list {
    flex-direction: column;
    align-items: center;
  }

  .sakete_home_cantacts .contact-item {
    width: 100%;
    /* margin-bottom: 20px; */
  }
  .sakete_home_cantacts .contact-item .icon {
    width: 5.625rem;
    height: 5.625rem;
  }
  .sakete_home_cantacts .contact-item .info {
    padding-left: 0.625rem;
  }
}
