* {
  margin: 0;
  padding: 0;
}

body {
  background-color: rgb(22, 23, 27);
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

.nav {
  padding: 0 20px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: baseline;
  height: 60px;
}

.nav .logo {
  color: #fff;
  font-size: 20px;
  line-height: 60px;
  font-weight: bold;
  font-style: italic;
}

.nav .slogan {
  color: rgba(42, 35, 235, 0.4);
  font-size: 14px;
  font-style: italic;
  margin-left: 10px;
}

.content {
  display: flex;
  padding: 40px;
  box-sizing: border-box;
  height: calc(100vh - 120px);
  align-items: center;
  justify-content: center;
  flex-flow: column;
}

.content .animate {
  display: flex;
  align-items: baseline;
}

.content .animate .text {
  font-size: 80px;
  background-image: -webkit-linear-gradient(-45deg, #4f46e5 50%, #9333ea 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.content .animate i {
  font-size: 80px;
  color: #fff;
  animation: type 1s infinite;
  margin-left: 10px;
  font-weight: bold;
}

@keyframes type {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.content .business {
  margin-top: 100px;
  display: flex;
  column-gap: 50px;
}

.content .business .detail {
  color: #fff;
  position: relative;
  width: 300px;
  height: 350px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transform: perspective(700px) rotateX(0) rotateY(0);
  transition: all .5s;
  overflow: hidden;
  will-change: transform;
}

.content .business .detail .detail-cxt {
  display: flex;
  flex-flow: column;
  position: absolute;
  padding: 30px;
  box-sizing: border-box;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 6;
  cursor: default;
}

.content .business .detail .title {
  font-size: 30px;
  font-weight: bold;
}

.content .business .detail .intro {
  margin-top: 20px;
  border-radius: 50px;
  padding: 5px;
  background: linear-gradient(to right, #00ccff, #d500f9);
  margin-right: 50%;
  text-align: center;
}

.content .business .detail .link {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.6);
}

.content .business .detail .light {
    background-color: #00ccff;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    filter: blur(90px);
    z-index: 2;
    transform: translate(-50%,-50%);
    pointer-events: none;
    will-change: transform;
    mix-blend-mode:soft-light;
    opacity: 0;
}

.copyright {
  width: 100%;
}

.copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 60px;
  text-align: center;
}

.copyright p a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  line-height: 60px;
}
