.video {
  position: relative;
  overflow: visible;
  padding: 6rem 0 7rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8f9 100%);
}
.video > img {
  position: absolute;
  z-index: 0;
  top: 1.5rem;
  left: 50%;
  width: min(92vw, 80rem);
  max-width: none;
  transform: translateX(-50%);
  pointer-events: none;
}
.video .inner { position: relative; z-index: 1; }
.video .section1 {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  text-align: center;
}
.video .title {
  color: #0f1720;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 900;
}
.video .section2 { width: 100%; margin-top: 3.5rem; }
.video .swiper { width: 100%; overflow: visible; }
.video .swiper-wrapper {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch;
  gap: 0 !important;
}
.video .swiper-slide {
  display: grid !important;
  flex: 0 0 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 60px;
  width: 100% !important;
  height: auto;
  visibility: hidden;
}
.video .swiper-slide:first-child,
.video .swiper-slide.swiper-slide-active { visibility: visible; }
.video .swiper.is-ready .swiper-slide:first-child { visibility: hidden; }
.video .swiper.is-ready .swiper-slide.swiper-slide-active { visibility: visible; }
.video .item {
  min-width: 0;
  opacity: 0.68;
  transition: transform 0.28s ease, opacity 0.28s ease, box-shadow 0.28s ease;
}
.video .item:hover {
  position: relative;
  z-index: 2;
  opacity: 1;
  transform: scale(1.08);
  box-shadow: 0 1.2rem 2.8rem rgba(15, 23, 42, 0.2);
}
.video .img-poster {
  position: relative;
  overflow: hidden;
  border-radius: 0.65rem;
  background: #101820;
  box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.12);
  cursor: pointer;
}
.video .img-poster > img {
  display: block;
  width: 100%;
  aspect-ratio: 730 / 400;
  object-fit: cover;
}
.video .mask {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(5, 10, 16, 0.08), rgba(5, 10, 16, 0.68));
}
.video .play {
  display: grid;
  place-items: center;
  width: clamp(4rem, 6vw, 5rem);
  aspect-ratio: 1;
  margin: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1rem 2.2rem rgba(0, 0, 0, 0.25);
  transition: transform 0.24s ease;
}
.video .play svg { width: 38%; height: auto; transform: translateX(8%); }
.video .img-poster:hover .play { transform: scale(1.08); }
.video .content {
  position: absolute;
  right: 1.75rem;
  bottom: 1.35rem;
  left: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #ffffff;
}
.video .text1, .video .text1 p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1rem, 1.45vw, 1.4rem);
  line-height: 1.35;
  font-weight: 900;
}
.video .text2, .video .text2 p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: 1.35;
}
.video .section3 {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 34px;
}
.video .prev, .video .next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 77px;
  height: 77px;
  border-radius: 50px;
  background: rgba(14, 99, 52, 1);
  cursor: pointer;
  transition: transform 0.24s ease, background 0.24s ease;
}
.video .prev:hover, .video .next:hover {
  background: #035533;
  transform: translateY(-0.12rem);
}
.el-dialog__wrapper .video { padding: 0; background: transparent; }
el-dialog { display: none; }
.el-dialog__wrapper video { display: block; width: 100%; max-height: 80vh; border-radius: 0.5rem; }
.el-dialog__wrapper .video-player { width: 100%; height: auto; }
@media (max-width: 64rem) {
  .video .section2 { margin-top: 2.75rem; }
  .video .swiper-slide { gap: 32px 24px; }
  .video .prev, .video .next {
    width: 64px;
    height: 64px;
  }
}
@media (max-width: 48rem) {
  .video { padding: 3rem 0 4rem; }
  .video .section2 { margin-top: 2.25rem; }
  .video .swiper-slide { grid-template-columns: 1fr; gap: 16px; }
  .video .section3 { gap: 14px; }
  .video .prev, .video .next { width: 52px; height: 52px; }
  .video .prev svg, .video .next svg { width: 20px; height: auto; }
  .video .item, .video .item:hover { opacity: 1; transform: none; box-shadow: none; }
  .video .img-poster > img { aspect-ratio: 16 / 10; }
  .video .content { right: 0.9rem; bottom: 0.85rem; left: 0.9rem; }
  .video .text1, .video .text1 p { font-size: 1rem; }
  .video .title { font-size: 1.75rem; }
}
@media (max-width: 30rem) {
  .video { padding: 2.25rem 0 3rem; }
  .video .section2 { margin-top: 1.75rem; }
  .video .swiper-slide { gap: 12px; }
  .video .section3 { gap: 12px; }
  .video .prev, .video .next { width: 42px; height: 42px; }
  .video .prev svg, .video .next svg { width: 16px; height: auto; }
  .video .img-poster > img { aspect-ratio: 4 / 3; }
  .video .content { right: 14px; bottom: 14px; left: 14px; }
  .video .title { font-size: 1.5rem; }
}
