html {
  font-size: 16px;
}

#page,
.swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
}

/* .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
} */

.swiper-slide {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

/* 示例容器 */
.wrapper {
  box-sizing: border-box;
  position: relative;
  width: 4rem;
  height: 2.4rem;
  overflow: hidden;
  border: 1px solid #000000;
}

.wrapper--hor {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.content {
  position: relative;
  width: 2rem;
  height: auto;
  margin-left: 0.1rem;
  /* flex: 1; */
  box-sizing: border-box;
  border: solid 1px #000000;
  /* border-radius: 10px; */
  overflow-y: scroll;
  overflow-x: scroll;
}

video {
  width: 100%;
  /* height: 100%; */
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

svg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
}

.mask-rect {
  /* 显示为半透明颜色 */
  fill: rgb(240, 240, 240);
}

.mask-text {
  text-anchor: middle;
  dominant-baseline: middle; /* 文本垂直居中 */
  /*  
    black最透明
    red,green,blue三个颜色不如black那么透明，但也能差不多达到透明的效果
  */
  fill: black;
}

.stop1 {
  stop-color: red;
}
.stop2 {
  stop-color: black;
  stop-opacity: 0;
}
.stop3 {
  stop-color: blue;
}

.svg-rect {
  /* svg框的底色 */
  fill: url(#Gradient1);
  mask: url(#mask);
}

#mask {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 200px;
  font-weight: 900;
  background: white;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  color: rgba(0, 0, 0, 1);
  text-align: center;
  vertical-align: middle;
  line-height: 2.4rem;
  opacity: 0.5;
  z-index: 10;
}

#bg {
  z-index: 0;
  /* background-color: red; */
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

#bg video {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.render-container {
  position: relative;
  width: 70%;
  height: 100%;
  overflow: hidden;
}

#blend-video {
  position: absolute;
  left: 0;
  top: 0;
  /* width: 100%; */
  height: 100%;
  z-index: 0;
}

/* #blend-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 2;
  background-color: #ffffff;
  opacity: 0.95;
} */

#blend-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 2.4rem;
  z-index: 5;
  color: #000000;
  font-size: 0.4rem;
  text-align: center;
  background-color: rgb(240, 240, 240);
}

.select-container {
  width: 30%;
  height: 100%;
}
