.banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 332px;
  background-image: url("/static/images/vip-service-banner.png");
  background-size: cover;
}

.banner .title {
  width: 460px;
}
.banner ul {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
}
.banner a.active,
.banner a:hover {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #0649a5;
  background: #fff;
}
.banner a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: inline-block;
  width: 19px;
  height: 4px;
  background: #1054C8;
}
.banner li a {
  display: inline-block;
  width: 200px;
  height: 72px;
  line-height: 72px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

main {
  width: 1200px;
  margin: 95px auto 346px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.grid .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 212px;
  height: 262px;
  padding-left: 35px;
  padding-right: 35px;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  background: linear-gradient(180deg, #f3f9ff 0%, #fcfdfe 100%);
  border-radius: 8px;
  cursor: pointer;
}

.grid .card img {
  width: 88px;
  height: 88px;
}

.grid .card .title {
  margin-top: 21px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  color: #000000;
}
.grid .card .desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #999999;
}
 .grid .card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 2px 10px 0px rgba(4, 90, 254, 0.45);
}
