.display-mask{
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
}
.display-mask-content{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.display-dialog{
  width: 1036px;
  height: 520px;
  border-radius: 8px;
  padding: 40px;
  background: #F7F9FA;
  position: relative;
}
.display-header{
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.display-header img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  cursor: pointer;
}
.display-content{
  width: 100%;
  height: 360px;
  display: flex;
  justify-content: space-between;
}
.display-content-left{
  flex: 1;
  height: 360px;
  display: flex;
  align-items: center;
}
.display-mask .content-left{
  width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.display-mask .content-left-info{
  height: 26px;
  display: flex;
  align-items: center;
}
.display-mask .content-left-info .info-text{
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  background: linear-gradient(90deg, #0175E8 0%, #9436FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.display-mask .content-left-info .info-tag{
  width: 42px;
  height: 16px;
  font-weight: 400;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid transparent;
  background:
    linear-gradient(#F7F9FA, #F7F9FA) padding-box,
    linear-gradient(90deg, #0175E8 0%, #9436FF 100%) border-box;
  color: #5B34EF;
}
.display-mask .content-left-title{
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  background: linear-gradient(90deg, #0175E8 0%, #9436FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.display-mask .content-left-content{
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  height: 63px;
  color: #6A6B6D;
}
.display-content-right{
  width: 640px;
  height: 360px;
}
.display-content-right video{
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}
.display-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.display-footer .footer-left{
  display: flex;
  align-items: center;
  gap: 12px;
}
.display-footer .tag-btn{
  width: 24px;
  height: 6px;
  border-radius: 3px;
  background: #C1C6CF;
  cursor: pointer;
}
.display-footer .tag-btn:hover,
.display-footer .footer-left .active{
  background: linear-gradient(90deg, #0175E8 0%, #9436FF 100%);
}
.display-footer .footer-right{
  display: flex;
  align-items: center;
  gap: 8px;
}
.display-footer .common-item-btn{
  min-width: 80px;
  height: 40px;
  font-size: 16px;
  border-radius: 20px;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.display-footer .common-item-btn img{
  width: 8px;
  height: 15px;
}
.display-footer .next-btn{
  color: #fff;
  background: linear-gradient(90deg, #0175E8 0%, #9436FF 100%);
}
.display-footer #prev-btn{
  display: none;
}
.display-footer .prev-btn{
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #0175E8 0%, #9436FF 100%) border-box;
}
.display-footer #prev-btn img {
  position: relative;
  z-index: 1;
}