123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- .audioWrap {
- width: 100%;
- height: 518px;
- background-color: #fff;
- }
- .audioContainer {
- position: relative;
- display: flex;
- align-items: center;
- justify-content: center;
- height: 100%;
- padding: 0;
- &>div {
- flex: 1;
- }
- .audio {
- position: absolute;
- top: 0;
- opacity: 0;
- }
- .tempVudio {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 80px;
- left: 0;
- padding: 0;
- }
- canvas {
- width: 100%;
- height: 100%;
- }
- }
- .controls {
- border-radius: 0 0 16px 16px !important;
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- width: 100%;
- background: rgba(0, 0, 0, 0.6);
- backdrop-filter: blur(26px);
- height: 80px;
- padding: 0 40px 0 40px !important;
- transition: all 0.5s;
- display: flex;
- align-items: center;
- transition: all .5s;
- .time {
- display: flex;
- justify-content: space-between;
- color: #fff;
- padding: 4px 12px 4px;
- font-size: 24px;
- font-weight: 600;
- line-height: 33px;
- min-width: 140px;
- .line {
- font-size: 12px;
- }
- :global {
- .plyr__time+.plyr__time:before {
- content: '';
- margin-right: 0;
- }
- }
- }
- }
- .actions {
- display: flex;
- justify-content: space-between;
- height: 100%;
- color: #fff;
- font-size: 12px;
- align-items: center;
- .actionWrap {
- display: flex;
- }
- .actionBtn {
- display: flex;
- width: 52px;
- height: 52px;
- padding: 4px 0;
- background: transparent;
- &>img {
- width: 100%;
- height: 100%;
- }
- }
- .iconReplay {
- width: 31px;
- height: 29px;
- background-color: transparent;
- &>img {
- width: 100%;
- height: 100%;
- }
- }
- }
- .slider {
- width: 100%;
- padding: 0 20px 0 12px;
- :global {
- .n-slider .n-slider-rail .n-slider-rail__fill,
- .n-slider .n-slider-handles .n-slider-handle-wrapper {
- transition: all .2s;
- }
- }
- }
- .sectionAnimate {
- opacity: 0;
- pointer-events: none;
- transform: translateY(100%);
- transition: all .5s;
- }
|