|  | @@ -1,173 +1,174 @@
 | 
	
		
			
				|  |  | -.container {
 | 
	
		
			
				|  |  | -  position: fixed;
 | 
	
		
			
				|  |  | -  left: 100px;
 | 
	
		
			
				|  |  | -  bottom: 0;
 | 
	
		
			
				|  |  | -  right: 0;
 | 
	
		
			
				|  |  | -  display: flex;
 | 
	
		
			
				|  |  | -  align-items: center;
 | 
	
		
			
				|  |  | -  height: 108px;
 | 
	
		
			
				|  |  | -  padding: 0 60px;
 | 
	
		
			
				|  |  | -  background-color: #fff;
 | 
	
		
			
				|  |  | -  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.1);
 | 
	
		
			
				|  |  | -  z-index: 10;
 | 
	
		
			
				|  |  | -  transition: all .3s;
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -  &.previewcontainer {
 | 
	
		
			
				|  |  | -    left: 0;
 | 
	
		
			
				|  |  | -    padding-right: 380px;
 | 
	
		
			
				|  |  | -  }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -  &.containerModal {
 | 
	
		
			
				|  |  | -    position: absolute;
 | 
	
		
			
				|  |  | -    left: 0;
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -  }
 | 
	
		
			
				|  |  | -}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -.hidden {
 | 
	
		
			
				|  |  | -  transform: translateY(100%);
 | 
	
		
			
				|  |  | -  opacity: 0;
 | 
	
		
			
				|  |  | -}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -.item {
 | 
	
		
			
				|  |  | -  position: relative;
 | 
	
		
			
				|  |  | -  display: flex;
 | 
	
		
			
				|  |  | -  align-items: center;
 | 
	
		
			
				|  |  | -  width: 100%;
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -  .img {
 | 
	
		
			
				|  |  | -    position: relative;
 | 
	
		
			
				|  |  | -    width: 64px;
 | 
	
		
			
				|  |  | -    height: 64px;
 | 
	
		
			
				|  |  | -    border-radius: 50%;
 | 
	
		
			
				|  |  | -    margin-right: 12px;
 | 
	
		
			
				|  |  | -    background-color: #000;
 | 
	
		
			
				|  |  | -    box-shadow: 0 0 10px 4px rgba(27, 35, 55, .1);
 | 
	
		
			
				|  |  | -    padding: 7px;
 | 
	
		
			
				|  |  | -    overflow: hidden;
 | 
	
		
			
				|  |  | -    flex-shrink: 0;
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    :global {
 | 
	
		
			
				|  |  | -      .n-image {
 | 
	
		
			
				|  |  | -        border-radius: 50%;
 | 
	
		
			
				|  |  | -        width: 100%;
 | 
	
		
			
				|  |  | -        height: 100%;
 | 
	
		
			
				|  |  | -      }
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    img {
 | 
	
		
			
				|  |  | -      transition: opacity .3s;
 | 
	
		
			
				|  |  | -      opacity: 0;
 | 
	
		
			
				|  |  | -      animation: rotateImg 6s linear infinite;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    &.imgRotate {
 | 
	
		
			
				|  |  | -      img {
 | 
	
		
			
				|  |  | -        animation-play-state: paused;
 | 
	
		
			
				|  |  | -      }
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    img[data-loaded="true"] {
 | 
	
		
			
				|  |  | -      opacity: 1;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -  }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -  .svgcontainer {
 | 
	
		
			
				|  |  | -    position: fixed;
 | 
	
		
			
				|  |  | -    z-index: -1000;
 | 
	
		
			
				|  |  | -    pointer-events: none;
 | 
	
		
			
				|  |  | -  }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -  .progress {
 | 
	
		
			
				|  |  | -    position: absolute;
 | 
	
		
			
				|  |  | -    left: 4px;
 | 
	
		
			
				|  |  | -    top: 4px;
 | 
	
		
			
				|  |  | -    width: 56px;
 | 
	
		
			
				|  |  | -    pointer-events: none;
 | 
	
		
			
				|  |  | -    transform: rotate(180deg);
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    :global {
 | 
	
		
			
				|  |  | -      .n-progress-graph .n-progress-graph-circle .n-progress-graph-circle-fill {
 | 
	
		
			
				|  |  | -        stroke: url(#GradientProgress);
 | 
	
		
			
				|  |  | -      }
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -  }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -  .title {
 | 
	
		
			
				|  |  | -    margin-right: 15px;
 | 
	
		
			
				|  |  | -    width: 200px;
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    .titleName {
 | 
	
		
			
				|  |  | -      font-size: max(16px, 13Px);
 | 
	
		
			
				|  |  | -      font-weight: 600;
 | 
	
		
			
				|  |  | -      color: #131415;
 | 
	
		
			
				|  |  | -      line-height: 28px;
 | 
	
		
			
				|  |  | -      white-space: nowrap;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    .titleDes {
 | 
	
		
			
				|  |  | -      font-size: max(14px, 12Px);
 | 
	
		
			
				|  |  | -      font-weight: 400;
 | 
	
		
			
				|  |  | -      color: #777777;
 | 
	
		
			
				|  |  | -      line-height: 20px;
 | 
	
		
			
				|  |  | -      white-space: nowrap;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -  }
 | 
	
		
			
				|  |  | -}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -@keyframes rotateImg {
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -  100% {
 | 
	
		
			
				|  |  | -    transform: rotate(360deg);
 | 
	
		
			
				|  |  | -  }
 | 
	
		
			
				|  |  | -}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -.playBtns {
 | 
	
		
			
				|  |  | -  margin-left: 140px;
 | 
	
		
			
				|  |  | -  display: flex;
 | 
	
		
			
				|  |  | -  align-items: center;
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -  :global {
 | 
	
		
			
				|  |  | -    .n-button {
 | 
	
		
			
				|  |  | -      width: 40px;
 | 
	
		
			
				|  |  | -      height: 40px;
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -      img {
 | 
	
		
			
				|  |  | -        width: 100%;
 | 
	
		
			
				|  |  | -        height: 100%;
 | 
	
		
			
				|  |  | -      }
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -  }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -  .playBtn {
 | 
	
		
			
				|  |  | -    width: 50px;
 | 
	
		
			
				|  |  | -    height: 50px;
 | 
	
		
			
				|  |  | -    margin: 0 48px;
 | 
	
		
			
				|  |  | -    background: linear-gradient(to right bottom, #44CAFE, #007AFE);
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    img {
 | 
	
		
			
				|  |  | -      display: block;
 | 
	
		
			
				|  |  | -      // width: 18px;
 | 
	
		
			
				|  |  | -      height: 20px;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -  }
 | 
	
		
			
				|  |  | -}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -.timeWrap {
 | 
	
		
			
				|  |  | -  flex: 1;
 | 
	
		
			
				|  |  | -  display: flex;
 | 
	
		
			
				|  |  | -  align-items: center;
 | 
	
		
			
				|  |  | -  margin-left: 88px;
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -  .timeProgress {
 | 
	
		
			
				|  |  | -    margin-right: 24px;
 | 
	
		
			
				|  |  | -    border-radius: 6px;
 | 
	
		
			
				|  |  | -    --n-rail-height: 8px !important;
 | 
	
		
			
				|  |  | -  }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -  .time {
 | 
	
		
			
				|  |  | -    width: 90px;
 | 
	
		
			
				|  |  | -    white-space: nowrap;
 | 
	
		
			
				|  |  | -    flex-shrink: 0;
 | 
	
		
			
				|  |  | -  }
 | 
	
		
			
				|  |  | +.container {
 | 
	
		
			
				|  |  | +  position: fixed;
 | 
	
		
			
				|  |  | +  left: 100px;
 | 
	
		
			
				|  |  | +  bottom: 0;
 | 
	
		
			
				|  |  | +  right: 0;
 | 
	
		
			
				|  |  | +  display: flex;
 | 
	
		
			
				|  |  | +  align-items: center;
 | 
	
		
			
				|  |  | +  height: 108px;
 | 
	
		
			
				|  |  | +  padding: 0 60px;
 | 
	
		
			
				|  |  | +  background-color: #fff;
 | 
	
		
			
				|  |  | +  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.1);
 | 
	
		
			
				|  |  | +  z-index: 10;
 | 
	
		
			
				|  |  | +  transition: all .3s;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +  &.previewcontainer {
 | 
	
		
			
				|  |  | +    left: 0;
 | 
	
		
			
				|  |  | +    padding-right: 380px;
 | 
	
		
			
				|  |  | +  }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +  &.containerModal {
 | 
	
		
			
				|  |  | +    position: absolute;
 | 
	
		
			
				|  |  | +    left: 0;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +  }
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +.hidden {
 | 
	
		
			
				|  |  | +  transform: translateY(100%);
 | 
	
		
			
				|  |  | +  opacity: 0;
 | 
	
		
			
				|  |  | +  display: none;
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +.item {
 | 
	
		
			
				|  |  | +  position: relative;
 | 
	
		
			
				|  |  | +  display: flex;
 | 
	
		
			
				|  |  | +  align-items: center;
 | 
	
		
			
				|  |  | +  width: 100%;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +  .img {
 | 
	
		
			
				|  |  | +    position: relative;
 | 
	
		
			
				|  |  | +    width: 64px;
 | 
	
		
			
				|  |  | +    height: 64px;
 | 
	
		
			
				|  |  | +    border-radius: 50%;
 | 
	
		
			
				|  |  | +    margin-right: 12px;
 | 
	
		
			
				|  |  | +    background-color: #000;
 | 
	
		
			
				|  |  | +    box-shadow: 0 0 10px 4px rgba(27, 35, 55, .1);
 | 
	
		
			
				|  |  | +    padding: 7px;
 | 
	
		
			
				|  |  | +    overflow: hidden;
 | 
	
		
			
				|  |  | +    flex-shrink: 0;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    :global {
 | 
	
		
			
				|  |  | +      .n-image {
 | 
	
		
			
				|  |  | +        border-radius: 50%;
 | 
	
		
			
				|  |  | +        width: 100%;
 | 
	
		
			
				|  |  | +        height: 100%;
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    img {
 | 
	
		
			
				|  |  | +      transition: opacity .3s;
 | 
	
		
			
				|  |  | +      opacity: 0;
 | 
	
		
			
				|  |  | +      animation: rotateImg 6s linear infinite;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    &.imgRotate {
 | 
	
		
			
				|  |  | +      img {
 | 
	
		
			
				|  |  | +        animation-play-state: paused;
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    img[data-loaded="true"] {
 | 
	
		
			
				|  |  | +      opacity: 1;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +  }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +  .svgcontainer {
 | 
	
		
			
				|  |  | +    position: fixed;
 | 
	
		
			
				|  |  | +    z-index: -1000;
 | 
	
		
			
				|  |  | +    pointer-events: none;
 | 
	
		
			
				|  |  | +  }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +  .progress {
 | 
	
		
			
				|  |  | +    position: absolute;
 | 
	
		
			
				|  |  | +    left: 4px;
 | 
	
		
			
				|  |  | +    top: 4px;
 | 
	
		
			
				|  |  | +    width: 56px;
 | 
	
		
			
				|  |  | +    pointer-events: none;
 | 
	
		
			
				|  |  | +    transform: rotate(180deg);
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    :global {
 | 
	
		
			
				|  |  | +      .n-progress-graph .n-progress-graph-circle .n-progress-graph-circle-fill {
 | 
	
		
			
				|  |  | +        stroke: url(#GradientProgress);
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +  }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +  .title {
 | 
	
		
			
				|  |  | +    margin-right: 15px;
 | 
	
		
			
				|  |  | +    width: 200px;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    .titleName {
 | 
	
		
			
				|  |  | +      font-size: max(16px, 13Px);
 | 
	
		
			
				|  |  | +      font-weight: 600;
 | 
	
		
			
				|  |  | +      color: #131415;
 | 
	
		
			
				|  |  | +      line-height: 28px;
 | 
	
		
			
				|  |  | +      white-space: nowrap;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    .titleDes {
 | 
	
		
			
				|  |  | +      font-size: max(14px, 12Px);
 | 
	
		
			
				|  |  | +      font-weight: 400;
 | 
	
		
			
				|  |  | +      color: #777777;
 | 
	
		
			
				|  |  | +      line-height: 20px;
 | 
	
		
			
				|  |  | +      white-space: nowrap;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +  }
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +@keyframes rotateImg {
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +  100% {
 | 
	
		
			
				|  |  | +    transform: rotate(360deg);
 | 
	
		
			
				|  |  | +  }
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +.playBtns {
 | 
	
		
			
				|  |  | +  margin-left: 140px;
 | 
	
		
			
				|  |  | +  display: flex;
 | 
	
		
			
				|  |  | +  align-items: center;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +  :global {
 | 
	
		
			
				|  |  | +    .n-button {
 | 
	
		
			
				|  |  | +      width: 40px;
 | 
	
		
			
				|  |  | +      height: 40px;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +      img {
 | 
	
		
			
				|  |  | +        width: 100%;
 | 
	
		
			
				|  |  | +        height: 100%;
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +  }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +  .playBtn {
 | 
	
		
			
				|  |  | +    width: 50px;
 | 
	
		
			
				|  |  | +    height: 50px;
 | 
	
		
			
				|  |  | +    margin: 0 48px;
 | 
	
		
			
				|  |  | +    background: linear-gradient(to right bottom, #44CAFE, #007AFE);
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    img {
 | 
	
		
			
				|  |  | +      display: block;
 | 
	
		
			
				|  |  | +      // width: 18px;
 | 
	
		
			
				|  |  | +      height: 20px;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +  }
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +.timeWrap {
 | 
	
		
			
				|  |  | +  flex: 1;
 | 
	
		
			
				|  |  | +  display: flex;
 | 
	
		
			
				|  |  | +  align-items: center;
 | 
	
		
			
				|  |  | +  margin-left: 88px;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +  .timeProgress {
 | 
	
		
			
				|  |  | +    margin-right: 24px;
 | 
	
		
			
				|  |  | +    border-radius: 6px;
 | 
	
		
			
				|  |  | +    --n-rail-height: 8px !important;
 | 
	
		
			
				|  |  | +  }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +  .time {
 | 
	
		
			
				|  |  | +    width: 90px;
 | 
	
		
			
				|  |  | +    white-space: nowrap;
 | 
	
		
			
				|  |  | +    flex-shrink: 0;
 | 
	
		
			
				|  |  | +  }
 | 
	
		
			
				|  |  |  }
 |