12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- .unitAudio {
- position: relative;
- display: flex;
- }
- .nativeAudio {
- width: 100%;
- height: 40px;
- }
- .htmlAudio {
- // position: absolute;
- width: 100%;
- height: 40px;
- box-sizing: border-box;
- background: rgba(28, 172, 241, 0.11);
- border: 1px solid #1CACF1;
- border-radius: 20px;
- padding: 0 12px;
- z-index: 9;
- display: flex;
- align-items: center;
- justify-content: space-between;
- color: #1CACF1;
- .htmlTimes {
- display: flex;
- align-items: center;
- color: #1CACF1;
- font-size: 16px;
- font-weight: 500;
- line-height: 22px;
- }
- .iconAudio {
- margin-right: 6px;
- font-size: 18px;
- }
- .audioStatus {
- font-size: 14px;
- }
- }
|