
.audio-wave {
    background: url("../images/index-new/audio-wave-bg.jpg") no-repeat center #7884cb;
    background-size: cover;
    width: 970px;
    height: 546px;
    margin: 0 auto;
    padding: 2px;
    box-sizing: border-box;
}
.audio-wave-container {
    position: relative;
    height: 100%;
}
.audio-wave-content {
    position: absolute;
    background: rgba(255, 255, 255, .7);
    width: 100%;
    left: 0;
    bottom: 0;
    border-radius: 10px 10px 30px 30px;
    backdrop-filter: blur(30px);
}
.audio-type-list {
    background: rgba(255, 255, 255, .7);
    border-radius: 0 0 30px 30px;
}
.audio-type-list ul {
    display: flex;
    justify-content: center;
    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: 19px;
    line-height: 1.4;
    color: #4d4d4d;
    cursor: pointer;
    flex: auto;
}
.audio-type-item:hover {
    color: #f7a38c;
}
.audio-type-item.active {
    color: #fd7434;
}
.audio-type-item span {
    padding: 0 20px;
    display: inline-block;
    position: relative;
}
.audio-type-item.active span::after {
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fd7434;
    left: 0;
}

.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: #a1948c;
}
.noise-reduction {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    font-weight: 700;
    color: #4c4c4c;
}

.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: 800px;
    margin: 0 1%;
    height: 60px;
    bottom: 20px;
    display: inline-block;
    width: 98%;
}
.audio-wave-pmgressbar .aplayer {
    background-image: url("../images/index-new/audio-wave.png");
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}
.aplayer-loaded {
    width: 100%;
}

@media (max-width: 979px) {
    .audio-wave{width:auto;}
}