.audio-wave {
    width: 100%;
    height: 100%;
}
.audio-wave-container {
    position: relative;
    height: 100%;
}
.audio-wave-content {
    position: absolute;
    background: rgba(0, 0, 0, .1);
    width: 100%;
    left: 0;
    bottom: 0;
    border-radius: 10px 10px 0 0;
    backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, .4);
}
.audio-type-list {
    background: #f0f1f1;
}
.audio-type-list ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 850px;
    margin: 0 auto; 
    flex-flow: wrap;
    min-height: 60px;
}
.audio-type-item {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 21px;
    line-height: 1.4;
    color: #000000;
    cursor: pointer;
}
.audio-type-item img {
    height: 25px;
    max-height: none !important;
    max-width: none !important;
    width: 25px;
    left: 0;
    margin: 0 auto;
    position: relative;
    right: 0;
    top: 0;
}
.audio-type-item:hover {
    color: #f7a38c;
}
.audio-type-item.active {
    color: #ff5f25;
    position: relative;
}
.audio-type-item span {
    padding: 0 5px;
    display: inline-block;
}
.audio-type-item.active::after {
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ff5f25;
    left: 0;
    bottom: -15px;
}

.audio-controller {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 820px;
    margin: 0 auto;
}
.aplayer-info {
    display: flex;
    justify-content: center;
    align-items: center;
}
svg:not(:root) {
    overflow: hidden;
}
.aplayer-icon {
    width: 15px;
    height: 15px;
    border: none;
    background-color: transparent;
    outline: none;
    cursor: pointer;
    vertical-align: middle;
    padding: 0;
    margin: 0;
    display: none;
}
.aplayer-play .aplayer-icon-play {
    position: absolute;
    left: 53%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 50px;
    width: 50px;
    display: inline;
}
.aplayer-pause .aplayer-icon-pause {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 50px;
    width: 50px;
    display: inline;
}

.aplayer-button {
    position: relative;
    border-radius: 50%;
    cursor: pointer;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, .15);
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    width: 100px;
    height: 100px;
    top: -40px;
}
.aplayer-button::before {
    content: '';
    display: block;
    border-radius: 50%;
    background: linear-gradient(45deg, #fc4a2b, #fd7334);
    position: absolute;
    z-index: 0;
    width: 80%;
    height: 80%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.aplayer-time {
    font-size: 15px;
    color: #ffffff;
    display: none;
}
.aplayer-time.active {
    display: block;
}
.noise-reduction {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
    padding-bottom: 15px;
    box-sizing: border-box;
}

.switch-wrapper {
    display: inline-block;
    height: 27px;
    margin: 0;
    position: relative;
    width: 51px;
}
.switch-wrapper input {
    height: 0;
    opacity: 0;
    width: 0;
}
.switch-slider {
    background-color: #9ba6c1;
    border: 1px solid #9ba6c1;
    border-radius: 34px;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}
.noise-reduction input:checked+.switch-slider:before {
    left: calc(100% - 23px);
}
.noise-reduction input:checked+.switch-slider {
    background-color: #00d905;
    border: 1px solid #00d905;
}
.switch-slider:before {
    background-color: #ffffff;
    border-radius: 50%;
    bottom: 2px;
    content: "";
    height: 21px;
    left: 2px;
    position: absolute;
    transition: .4s;
    width: 21px;
}

.audio-wave-pmgressbar {
    position: relative;
    max-width: 820px;
    height: 60px;
    bottom: 20px;
    display: block;
    width: 100%;
    margin: 0 auto;
}
.audio-wave-pmgressbar .aplayer {
    background-image: url("../video-converting-software/images/index-refresh/audio-wave.png");
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}
.aplayer-loaded {
    width: 100%;
}

.audio-wave-cover-list {
    width: 100%;
    height: 100%;
}
.audio-wave-cover-item {
    position: absolute;
    top: 0;
    display: none;
    transition: .3s;
    height: 100%;
    --ratio:calc(1080 / 1920 * 100%);
    overflow: hidden;
    border-radius: 0.5rem;
}
.audio-wave-cover-item.active {
    position: relative;
    display: block;
}

.audio-wave-cover-item img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
}
.audio-wave-cover-item::before {
    content: '';
    display: block;
    padding-top: var(--ratio, calc(9 / 16 * 100%));
}

@media (max-width: 1279px) {
    .audio-controller {
        width: 80%;
    }
}

@media (max-width: 1200px) {

}
@media (max-width: 992px) {
    .audio-wave{width:auto;}
    .audio-wave-content {
        display: none;
    }
}
@media (max-width: 768px) {
}
@media (max-width: 576px) {
    .audio-wave-cover-item {
        --ratio:calc(1 / 1 * 100%);
    }
}
