
*{box-sizing: border-box;}

.audio_main{
	width:850px;
	height:500px;
}
.audio_title{
	text-align: center;
	padding: 20px 0px;
}

.audio_main_center{display: flex;flex-direction: column; height:calc(100% - 67px); justify-content: space-around;}
.audio_path .audio_bg{background: #414344; padding: 20px; border-radius: 50%;width: 260px; height: 260px; overflow: hidden; margin: 0 auto;}
.audio_path .audio_bg img{
	border-radius: 50%; 
	width: 220px; 
	height: 220px;
}
.audio_path .audio_bg.active img{
	animation: 10s animationName infinite linear;
}
.audio_info{margin-bottom: 20px;}
.audio_info .audio_info_title{
	color:#a3a3a3;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 5px;
}
.audio_info .audio_info_tag{
	display: flex;
	color: #a3a3a3;
}
.audio_info .audio_info_tag span{display: flex; background: #bfe8ff;color: #587ccc;font-size: 11px; align-items: center; justify-content: center; border-radius: 10px; padding: 0px 8px; margin-right: 5px;}

.audio_silder{
	padding: 0px 30px;
}
.audio_silder .silder{background: #fff; border-radius: 20px;width: 100%; height: 4px; position: relative; margin-bottom: 10px;}
.audio_silder .silder_color{height: 4px; border-radius: 20px; background: #20c6a3;width: 0;}
.audio_silder .silder_box{width: 10px; height: 10px; border-radius: 50%; background: #fff; position: absolute; top: -3px;left: 0;}
.audio_silder .silder_tiem{
	display: flex;
	justify-content: space-between;
	color: #fff;
	font-size: 12px; 
	margin-bottom: 20px;
}

.audio_play .play_stop{background: #20c6a3;width: 60px; height: 60px; border-radius: 50%; margin: 0 auto;overflow: hidden;display: flex; align-items: center;
justify-content: center;}
.audio_play .play_icon{background: #20c6a3;width: 60px; height: 60px; border-radius: 50%; margin: 0 auto;overflow: hidden;display: flex; align-items: center;
    justify-content: center;}
.audio_play .play_icon span{display: block;background: url('../images/play_icon.png') no-repeat; background-size: 100%;width: 25px; height: 25px; overflow: hidden;
margin-left:3px;}

.audio_play .play_stop span{display: block;background: url('../images/stop_icon.png') no-repeat; background-size: 100%;width: 25px; height: 25px; overflow: hidden;}
    

.audio_play .play_icon img{margin-left: 5px;}
.audio_play img{width: 80%; height: 80%;}
.audio_flex{position: fixed; left: 0; bottom: 0;width: 100%; background: #fff;display: flex; justify-content: space-between;
padding: 10px 15px;}
.audio_flex .audio_flex_left{display: flex;}
.audio_flex .audio_flex_left .logo{width: 40px; height: 40px; overflow: hidden; background:#20c6a3 ;}
.audio_flex .audio_flex_left .infos_text{padding-left: 10px;}
.audio_flex .audio_flex_left .infos_text .bt{font-size: 14px; color: #333;}
.audio_flex .audio_flex_left .infos_text .texts{font-size: 12px;color: #666;}
.audio_flex .audio_flex_right a{display: flex;width: 100px; height: 36px; background: #20c6a3; border-radius: 20px; font-size: 14px;
color: #fff; align-items: center; justify-content: center;text-decoration: unset;}



/*动画*/
@keyframes animationName{
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

