@charset "utf-8";

.products {
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px 80px;
}
.products_title {
  display: flex;
  align-items: center;
  font-size: 56px;
  font-weight: 600;
  opacity: 0;
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 0.2s;
}
.products_title::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 32px;
  margin-right: 16px;
  background-color: #182127;
}
.products_sub_title {
  margin-top: 8px;
  padding-left: 16px;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0;
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 0.4s;
}
.products_list_wrapper {
  margin-top: 48px;
}
.products_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  opacity: 0;
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 0.4s;
}
.products_list_item {
  overflow: hidden;
  width: calc(33.333% - 16px);
  position: relative;
  border-radius: 8px;
}
.products_list_item_link {
  padding: 32px 24px 24px;
}
.products_list_item_link_label {
  display: inline-block;
  font-size: 13px;
}
.products_list_item_link_label.anyai {
  background: linear-gradient(90deg, #2524e6 0%, #ff4646 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: rgba(0, 0, 0, 0);
}
.products_list_item_link_label.anylive {
  color: #ff4b4b;
}
.products_list_item_link_label.anyx {
  background: linear-gradient(
    91.75deg,
    #f29930 -3.5%,
    #f46587 38.68%,
    #6584f4 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: rgba(0, 0, 0, 0);
}
.products_list_item_link_label.anytag {
  color: #e14f4a;
}
.products_list_item_link_label.anymanager {
  color: #3980c3;
}
.products_list_item_link_label.anycreator {
  color: #e14f4a;
}
.products_list_item_link_label.anylogi {
  color: #f29d52;
}
.products_list_item_link_label.anychat {
  color: #59bed4;
}
.products_list_item_link_label.anyshop {
  color: #3db161;
}
.products_list_item_link_label.anyfactory {
  color: #f5ce2e;
}
.products_list_item_link_label.anydigital {
  color: #3980c3;
}
.products_list_item_link_logo {
  margin-top: 8px;
}
.products_list_item_link_logo_img {
  width: auto;
  height: 40px;
}
.products_list_item_link_text {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.6;
}
.products_list_item_link_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 34px;
  margin-top: 16px;
  border: solid 1px #dce2e8;
  border-radius: 48px;
  transition: background-color 0.15s ease;
}
.products_list_item_link_btn_text {
  margin-right: 8px;
  font-weight: 500;
}
.products_list_item_link_btn_img {
  width: 18px;
  height: auto;
}
.products_list_item_link_img {
  width: 100%;
  height: auto;
  margin: 32px auto 0;
  transition: transform 0.15s ease;
}
.products_list_item_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  object-fit: cover;
}

@media screen and (max-width: 960px) {
  .products_list_item {
    width: calc(50% - 12px);
  }
}

@media screen and (min-width: 641px) {
  .products_list_item_link:hover .products_list_item_link_btn {
    background-color: #fff;
  }
  .products_list_item_link:hover .products_list_item_link_img {
    transform: scale(1.04, 1.04);
  }
}

@media screen and (max-width: 640px) {
  .products {
    padding: 48px 20px;
  }
  .products_title {
    font-size: 48px;
  }
  .products_list_item {
    width: 100%;
  }
  .products_list_item_link_img {
    width: 88%;
  }
}

@media screen and (max-width: 480px) {
  .products {
    padding: 32px 20px 40px;
  }
  .products_title {
    font-size: 32px;
  }
  .products_sub_title {
    font-size: 14px;
  }
  .products_list_wrapper {
    margin-top: 40px;
  }
  .products_list_item_link {
    padding: 24px;
  }
  .products_list_item_link_text {
    font-size: 14px;
  }
  .products_list_item_link_img {
    width: 100%;
  }
}

@media screen and (max-width: 360px) {
  .products_list_item_link {
    padding: 24px 16px;
  }
}
