﻿#video {
  padding-bottom: 160px;
}
@media only screen and (max-width: 1200px) {
  #video {
    padding-bottom: 60px;
  }
}

.homeBanner {
  position: relative;
  background-color: #e7e7e7;
  margin-bottom: 20px;
  display: block;
}
.homeBanner .swiper-slide-active .box {
  opacity: 1;
}
.homeBanner .numbox {
  position: absolute;
  width: 31.6%;
  right: 2%;
  bottom: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
}
.homeBanner .numbox div {
  margin: 0 10px;
}
.homeBanner .box {
  position: relative;
  display: flex;
  align-items: flex-start;
  opacity: 0;
  transition: all 0.5s ease;
}
.homeBanner .box .imgs {
  position: relative;
  padding-bottom: 40%;
  width: 64%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.homeBanner .box .text {
  position: relative;
  width: 36%;
  padding: 3%;
}
.homeBanner .box .text .type {
  position: relative;
  display: inline-block;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  padding: 5px 0;
  font-weight: bold;
}
.homeBanner .box .text .title {
  position: relative;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 15px;
  text-align: justify;
}
@media only screen and (max-width: 1500px) {
  .homeBanner .box .text .title {
    font-size: 26px;
    font-weight: bold;
    line-height: 1.25;
  }
  .homeBanner .numbox {
    bottom: 8%;
    width: 31.5%;
  }
}
@media only screen and (max-width: 1000px) {
  .homeBanner .box .text .title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 650px) {
  .homeBanner .box {
    display: block;
  }
  .homeBanner .box .imgs {
    width: 100%;
    padding-bottom: 0;
    height: 57vw;
  }
  .homeBanner .box .text {
    width: 100%;
    padding-bottom: 100px;
  }
  .homeBanner .box .text .title {
    font-size: 18px;
  }
  .homeBanner .numbox {
    width: 96%;
  }
}

.videoNews {
  position: relative;
}
.videoNews .tabTitle {
  position: relative;
  display: block;
  border: 2px solid black;
  font-size: 28px;
  font-weight: bold;
  padding-left: 0;
  padding-top: 0;
}
.videoNews .tabTitle .link {
  position: relative;
  display: inline-block;
  padding-top: 12px;
  padding-left: 18px;
  padding-bottom: 12px;
}
.videoNews .tabTitle .swiper-button-next {
  position: absolute;
  right: -56px;
  background-color: #dcdc97;
  border-color: #dcdc97;
  margin: 0;
  width: 40px;
  height: 40px;
}
.videoNews .tabTitle span {
  position: absolute;
  width: 30%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: black;
}
.videoNews .tabTitle span:before {
  content: "";
  position: absolute;
  background-image: url(/images/2024/arrowsY.png);
  width: 100%;
  height: 50%;
  top: 0;
  right: 0;
  background-color: black;
  background-size: auto 100%;
  transform: rotate(180deg);
  animation: BGrunRight 12s ease infinite;
}
.videoNews .tabTitle span:after {
  content: "";
  position: absolute;
  background-image: url(/images/2024/arrowsY.png);
  width: 100%;
  height: 50%;
  right: 0;
  bottom: 0;
  background-color: black;
  background-size: auto 100%;
  animation: BGrunLeft 12s ease infinite;
}
@media only screen and (max-width: 1200px) {
  .videoNews .videoBlock {
    padding-left: 0;
    margin-top: 20px;
  }
  .videoNews .videoBlock .picture {
    display: none;
  }
}
@media only screen and (max-width: 650px) {
  .videoNews .tabTitle {
    position: relative;
    width: 100%;
    text-align: left;
    font-size: 20px;
    padding: 10px 16px;
    margin-bottom: 10px;
  }
  .videoNews .tabTitle .link {
    padding: 0;
  }
  .videoNews .tabTitle span {
    display: none;
  }
  .videoNews .tabTitle .swiper-button-next {
    right: -45px;
    width: 30px;
    height: 30px;
  }
}

.video-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-left: 2px solid black;
  border-top: 2px solid black;
  margin-top: 40px;
  margin-bottom: 30px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.video-list .video-link {
  position: relative;
  width: 25%;
  font-size: 16px;
  line-height: 26px;
  border-bottom: 2px solid black;
  background-color: white;
  overflow: hidden;
}
.video-list .video-link .articleBox {
  border-left: none;
}
@media only screen and (max-width: 1024px) {
  .video-list .video-link {
    width: 50%;
  }
}
@media only screen and (max-width: 699px) {
  .video-list {
    margin-top: 20px;
    border-left: 0;
    border-top: 0;
  }
  .video-list .video-link {
    width: 100%;
    margin-bottom: 18px;
  }
  .video-list .articleBox {
    border-top: 2px solid !important;
    border-left: 2px solid !important;
  }
}

@keyframes BGrunLeft {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -99% 0;
  }
}
@keyframes BGrunRight {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -99% 0;
  }
}
