.mySwiper {
  position: relative;
  /* width: 100%; */
  /* width: 90%; */
  width: 1200px;
  margin: 0 auto;
  /* height: 400px; */
  height: 600px;
}
.imgList {
  position: relative;
  height: 100%;
}

.imgList .swiper-slide {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s;
}
/* 初始透明度除了第一张其余都为0 */
.imgList .swiper-slide:nth-child(1) {
  opacity: 1;
  z-index: 1;
}

.imgList .swiper-slide img {
  display: block;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

/* 指示器 */
.swiperNav {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-42%);
  cursor: pointer;
  z-index: 9;
}
.newsName {
  width: 500px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 9;
  background-color: rgba(70, 70, 70, 0.6);
  text-align: center;
  font-size: 14px;
  color: #fff;
  line-height: 24px;
}
.newsName .content {
  word-wrap: break-word;
}
.swiperNav span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 10px;
}

.swiperNav span.active {
  background-color: #a30014;
}

.application {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  /* width: 300px; */
  /* min-width: 15vw; */
  /* padding: 3vw; */
  padding: 20px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
}
.application .applicationTitle {
  margin: 56px 0 40px;
  font-size: 20px;
  font-weight: bold;
}

.application .applicationInfo div {
  margin-bottom: 10px;
}

.application .applicationCode {
  margin-top: 30px;
}
