#home2 {
  height: 400vh;
}
#home2 .space {
  height: 20vh;
}
#home2 .six-card {
  width: 1360px;
  margin: 0 auto;
  margin-bottom: 150px;
}
#home2 .six-card .six-title {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
#home2 .six-card .six-sub-title {
  text-align: center;
  margin: 40px 0;
}
#home2 .six-card .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
#home2 .six-card .list .list-item {
  width: 432px;
  height: 265px;
  border-radius: 10px;
  padding: 20px 30px;
  border: 1px solid #474656;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
#home2 .six-card .list .list-item:hover {
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(133, 239, 238, 0.2);
}
#home2 .six-card .list .list-item:hover::before {
  opacity: 1;
}
#home2 .six-card .list .list-item:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(180deg, #85efee 0%, #3c56f0 100%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
#home2 .six-card .list .list-item:hover .fa-icon {
  color: #85efee;
}
#home2 .six-card .list .list-item:hover .item-text {
  background: linear-gradient(270deg, #85efee 0%, #3c56f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
#home2 .six-card .list .list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(133, 239, 238, 0.1), rgba(60, 86, 240, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}
#home2 .six-card .list .list-item .fa-icon,
#home2 .six-card .list .list-item .item-text,
#home2 .six-card .list .list-item .item-sub-text {
  position: relative;
  z-index: 1;
}
#home2 .six-card .list .list-item .item-text {
  background: linear-gradient(270deg, #85efee 0%, #4860e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 24px;
  font-weight: 700;
}
#home2 .love-card {
  width: 1360px;
  margin: 0 auto;
  margin-bottom: 300px;
}
#home2 .love-card .love-title {
  text-align: center;
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 100px;
}
#home2 .love-card .list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
#home2 .love-card .list .list-item {
  width: 432px;
  height: 265px;
  border-radius: 10px;
  border: 1px solid #474656;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding-top: 60px;
}
#home2 .love-card .list .list-item:hover {
  border-color: transparent;
  box-shadow: 0 5px 20px rgba(133, 239, 238, 0.2);
}
#home2 .love-card .list .list-item:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(180deg, #85efee 0%, #3c56f0 100%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
#home2 .love-card .list .list-item .list-item-title {
  font-size: 24px;
  color: #fff;
}
#home2 .love-card .list .list-item .list-item-text {
  margin-top: 20px;
}
#home2 .love-card .list .list-item .bg-img {
  position: absolute;
  bottom: -70px;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home2 .love-card .list .list-item .item-info {
  width: 100%;
  height: 100%;
  position: absolute;
  height: 40px;
  bottom: 20px;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
}
#home2 .love-card .list .list-item .bg-info-text {
  position: absolute;
  font-size: 12px;
  color: #432907;
  font-weight: 600;
  height: 50px;
  width: 100px;
  bottom: -40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home2 .customer-container {
  width: 1360px;
  margin: 0 auto;
  min-height: 500px;
  margin-top: 200px;
  margin-bottom: 170px;
  text-align: center;
}
#home2 .customer-container .title {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#home2 .customer-container .title .title-one {
  width: 500px;
  font-size: 20px;
  font-weight: 700;
  font-weight: 400;
  height: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
}
#home2 .customer-container .customer-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 80px;
}
#home2 .customer-container .customer-list .customer-item {
  width: 428px;
  height: 270px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 0 32px;
  border: 1px solid #c5c8d0;
  transition: all 0.3s ease;
  cursor: pointer;
}
#home2 .customer-container .customer-list .customer-item:hover {
  border: 1px solid linear-gradient(180deg, #85efee 0%, #3c56f0 100%);
  box-shadow: 0 0 20px rgba(133, 239, 238, 0.3);
  transform: translateY(-5px);
  transition: all 0.3s ease;
  position: relative;
}
#home2 .customer-container .customer-list .customer-item:hover::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(180deg, #85efee 0%, #3c56f0 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
#home2 .customer-container .customer-list .customer-item .top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
#home2 .customer-container .customer-list .customer-item .top .avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
#home2 .customer-container .customer-list .customer-item .top .name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
#home2 .customer-container .customer-list .customer-item .top .name .name-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}
#home2 .customer-container .customer-list .customer-item .top .name img {
  padding-right: 4px;
}
#home2 .customer-container .customer-list .customer-item .desc {
  font-size: 16px;
  color: #c5c8d0;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  padding-right: 20px;
}
#home2 .scene-container {
  width: 1360px;
  margin: 0 auto;
  min-height: 500px;
}
#home2 .scene-container .title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 100px;
}
#home2 .scene-container .scene-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#home2 .scene-container .scene-list .scene-item {
  width: 316px;
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 0 30px;
  border: 1px solid #474656;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
#home2 .scene-container .scene-list .scene-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(133, 239, 238, 0.1), rgba(60, 86, 240, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}
#home2 .scene-container .scene-list .scene-item:hover {
  border-color: #85efee;
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(133, 239, 238, 0.2);
}
#home2 .scene-container .scene-list .scene-item:hover::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(180deg, #85efee 0%, #3c56f0 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
#home2 .scene-container .scene-list .scene-item:hover .fa-icon {
  color: #85efee;
}
#home2 .scene-container .scene-list .scene-item:hover .scene-item-title {
  background: linear-gradient(270deg, #85efee 0%, #3c56f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
#home2 .scene-container .scene-list .scene-item img,
#home2 .scene-container .scene-list .scene-item .scene-item-title,
#home2 .scene-container .scene-list .scene-item .scene-item-desc {
  position: relative;
  z-index: 1;
}
#home2 .scene-container .scene-list .scene-item .fa-icon {
  font-size: 48px;
  color: #82e9ec;
}
#home2 .scene-container .scene-list .scene-item .scene-item-title {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  padding-left: 5px;
  background: linear-gradient(270deg, #85efee 0%, #4860e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#home3 .space {
  height: 100px;
}
#home3 .hot-container {
  width: 1360px;
  min-height: 700px;
  margin: 0 auto;
  margin-bottom: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 100px 0;
}
#home3 .hot-container .title {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
}
#home3 .hot-container .country-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px 0;
}
#home3 .hot-container .country-list .country-item {
  width: 310px;
  height: 100px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  cursor: pointer;
}
#home3 .hot-container .country-list .country-item:hover {
  position: relative;
  border: 2px solid linear-gradient(90deg, #85efee 0%, #3c56f0 100%);
  box-shadow: 0 0 20px rgba(133, 239, 238, 0.3);
  transition: all 0.3s ease;
}
#home3 .hot-container .country-list .country-item:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  padding: 2px;
  background: linear-gradient(180deg, #85efee 0%, #3c56f0 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
#home3 .hot-container .country-list .country-item .left img {
  width: 88px;
  height: 57px;
}
#home3 .hot-container .country-list .country-item .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px 0;
}
#home3 .hot-container .country-list .country-item .right .name {
  font-size: 15px;
  color: #e5e8f0;
  font-weight: bold;
}
#home3 .hot-container .country-list .country-item .right .desc {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}
#home4 {
  height: 50vh;
}
#home5 {
  height: 120vh;
}
#home5 .space {
  height: 200px;
}
@media (max-width: 1920px) and (min-width: 960px) {
  body {
    zoom: 0.8;
  }
}
@media (max-width: 3840px) and (min-width: 2560px) {
  body {
    zoom: 1.2;
  }
}
