.home-about {
  background-image: linear-gradient(90deg, #ddd, #f1f1f1);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px;
  box-sizing: border-box;
}
.home-about .box {
  width: 50%;
}
.home-about .box .title {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}
.home-about .box .description {
  font-size: 14px;
  color: #2c2b2b;
  line-height: 1.8;
  margin-bottom: 30px;
}
.home-about .box .link {
  display: inline-block;
  padding: 10px 25px;
  border: 1px solid #e63946;
  color: #e63946;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
  line-height: 1;
}
.home-about .box .link:hover {
  background: #e63946;
  color: #fff;
}
.home-about .box .list {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  gap: 20px;
}
.home-about .box .list .item {
  text-align: center;
}
.home-about .box .list .item .value {
  font-size: 32px;
  color: #e63946;
  font-weight: bold;
}
.home-about .box .list .item .label {
  font-size: 14px;
  color: #2c2b2b;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .home-about .box {
    width: 100%;
  }
  .home-about .box .title {
    font-size: 24px;
  }
  .home-about .box .list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.home-news .list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
.home-news .list .item {
  display: flex;
  gap: 15px;
  align-items: center;
}
.home-news .list .item img {
  width: 50%;
  max-height: 100px;
  object-fit: cover;
}
.home-news .list .item .text {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-news .list .item .text .title {
  font-size: 16px;
  color: #333;
}
.home-news .list .item .text .meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  font-size: 14px;
}
.home-news .list .item .text .meta > div {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 768px) {
  .home-news .list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.home-cases .wrap {
  display: flex;
  gap: 15px;
}
.home-cases .info {
  flex: 0 300px;
  color: #fff;
}
.home-cases .info .title {
  font-size: 32px;
  line-height: 1.4;
}
.home-cases .info .subtitle {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 10px;
}
.home-cases .list {
  flex: 1;
  width: calc(100% - 300px);
}
.home-cases .list .item {
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.home-cases .list .item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.home-cases .list .item .text {
  padding: 20px;
}
.home-cases .list .item .text .title {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  font-weight: bold;
}
.home-cases .list .item .text .description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.home-cases .list .item .text .link {
  font-size: 14px;
  color: #2c3e50;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s;
}
.home-cases .list .item:hover {
  transform: translateY(-10px);
}
.home-cases .list .item:hover .text .link {
  color: red;
}
@media (max-width: 768px) {
  .home-cases .wrap {
    flex-direction: column;
  }
  .home-cases .info {
    flex: 1;
  }
  .home-cases .list {
    width: 100%;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .home-cases .list .item .text {
    padding: 10px;
  }
}
.home-cases .swiper {
  padding-top: 10px;
  margin-top: -10px;
}
.home-cases .swiper .swiper-pagination {
  position: relative;
  bottom: 0;
}

@media (min-width: 768px) {
  .home-pro ul.flex {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
  }
  .home-pro ul.flex li {
    margin-right: 0;
  }
  .substation_products ul li .swiper img {
    height: 215px;
  }
}
.section {
  padding: 50px 20px;
}
.section .wrap {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.section a {
  text-decoration: none;
}

.full-ad {
  width: 100%;
  text-align: center;
  height: 160px;
  background-position-y: -0.5px;
  background-size: 100% 160px;
  margin-top: 30px;
}
.full-ad img {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1280px) {
  .full-ad {
    background: unset !important;
    height: auto;
  }
}

/*# sourceMappingURL=index.css.map */
