
.Home_Application .box .scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.Home_Application .box .item .a {
  position: relative;
}
.Home_Application .box .item .a .img {
  overflow: hidden;
   position: relative;
}


.Home_Application .box .item .a .img img {
  width: 100%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.Home_Application .box .item .a .img::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 90%;
  opacity: 0;
  transition: 0.4s;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.Home_Application .box .item .a .orientation {
  position: absolute;
  left: 0;
  bottom: 0.5rem;
  width: 100%;
  color: #fff;
}
.Home_Application .box .item .a .orientation .content1 {
  text-align: center;
}
.Home_Application .box .item .a .orientation .content1 img {
  height: 1.2rem;
}
.Home_Application .box .item .a .orientation .content2 {
  font-size: var(--f28);
  font-family: "MIB";
  text-align: center;
  margin-top: 0.1rem;
}
.Home_Application .box .item .a .orientation .content3 {
  padding: 0 0.4rem;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.Home_Application .box .item .a .orientation .content3 .content4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 10px;
  min-height: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.Home_Application .box .item .a .orientation .content3 .content4 .li {
  position: relative;
  font-size: var(--f16);
  color: #fff;
  padding-left: 18px;
  padding-top: 0.12rem;
  padding-bottom: 0.12rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.Home_Application .box .item .a .orientation .content3 .content4 .li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) skewY(20deg);
  -ms-transform: translateY(-50%) skewY(20deg);
  transform: translateY(-50%) skewY(20deg);
  width: 8px;
  height: 8px;
  background: #2c51a8;
}
.Home_Application .box .item .a .orientation .content3 .content4 .li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #fff;
  width: 0%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.Home_Application .box .item .a .orientation .content3 .content4 .li:hover {
  color: #2c51a8;
}
.Home_Application .box .item .a .orientation .content3 .content4 .li:hover::after {
  width: 100%;
}
.Home_Application .box .item .a .orientation .content3 .content4 .highlight {
  margin-bottom: -0.12rem;
}
.Home_Application .box .item .a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: #2c51a8;
  width: 0%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (min-width: 1200px) {
  .Home_Application .box .item .a:hover .img img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  .Home_Application .box .item .a:hover .img::after {
    opacity: 1;
  }
  .Home_Application .box .item .a:hover::after {
    width: 100%;
  }
  .Home_Application .box .item .a:hover .content3 {
    grid-template-rows: 1fr;
    margin-top: 0.18rem;
  }
}
@media screen and (max-width: 1200px) {
  .Home_Application .box .item .a::after {
    width: 0%;
  }
  .Home_Application .box .item .a .content3 {
    grid-template-rows: 1fr !important;
    margin-top: 0.18rem;
  }
}


