/* css实现图片旋转 */
#img-tag {
    /* -webkit-animation: rotateImg 8s linear infinite; */
    /* border: 1px solid #ccc; */
    border-radius: 50%;
    width: 50%;
    /* vertical-align: middle; */
}

#audioStyle {
    /* margin-left: 30%;
    margin-top: 10%; */
    margin: auto;
    background-color: #867368;
    width: 160px;
    border-radius: 10px;
    padding-top: 8px;
}

#audioStyle #imgTagDiv {
    text-align: center;
    line-height: 50px;
    margin-bottom: 6px;
}

/* #audioStyle #audioDiv audio {
    background-color: aqua;
} */
#audioStyle #audio_controls {
    width: 100%;
    height: 20px;
    border-radius: 6px;
    background-color: #6d564a;
    color: #B19E70;
    /* Firefox私有属性 */
    -moz-user-select: none;
    /* WebKit内核私有属性 */
    -webkit-user-select: none;
    /* IE私有属性(IE10及以后) */
    -ms-user-select: none;
    /* KHTML内核私有属性 */
    -khtml-user-select: none;
    /* Opera私有属性 */
    -o-user-select: none;
    /* CSS3属性 */
    user-select: none;
    /* 同一排元素居中显示 */
    display: flex;
    align-items: center;
    font-size: 9px;
}

#audioStyle #audio_controls #img_audio_play {
    float: left;
    margin-top: -1px;
    margin-left: 1px;
}

#audioStyle #audio_controls #img_audio_play #audio_play_tag {
    width: 16px;
    border-radius: 50%;
    cursor: pointer;
}

/* 时间 */
#audioStyle #audio_controls #audioDate {
    float: left;
    line-height: 50px;
    margin-left: 1px;
    width: 320px;
    /* width: 80%; */
    display: flex;
    align-items: center;
}

#audioDate #dateMS {
    float: left;
    width: 58px;
}

#audioDate .date_progress_bar {
    float: left;
    background-color: #867368;
    width: 54px;
    /* width: 66%; */
    height: 6px;
    border-radius: 6px;
}

#date_progress_bar_total {
    margin-left: 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

#date_progress_bar_one {
    background-color: #B19E70!important;
    width: 0px !important;
}

/* 时间抽 圆点 */
#date_progress_bar_circle {
    background-color: #B19E70!important;
    /* position: absolute;
    bottom: 296PX; */
    height: 12px !important;
    width: 12px !important;
    border-radius: 50% !important;
    z-index: 6;
}

/* 音量 */
#volume_bg {
    position: absolute;
    width: 10px;
    height: 86px;
    /* height: 310%; */
    background-color: #fff;
    bottom: 24px;
    border-radius: 2px;
    display: none;
}

#volume_size_title {
    font-size: 9px;
    text-align: center;
    font-weight: bold;
    margin-top: 2px;
}

#audio_volume {
    /* display: flex;
    align-items: center; */
    cursor: pointer;
    float: right;
    position: relative;
}

#audio_volume #volume_img {
    width: 11px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 2px;
}

#volume_small_img {
    width: 8px;
    position: absolute;
    bottom: 3px;
    left: 1px;
}

/* 音量条 */
#volume_progress_bar_total {
    display: none;
}

.volume_progress_bar {
    width: 6px;
    height: 60px;
    /* height: 70%; */
    background-color: #B19E70;
    position: absolute;
    left: 2px;
    bottom: 12px;
    border-radius: 6px;
}

.volume_progress_bar #volume_progress_bar_one {
    width: 6px;
    height: 12px;
    /* height: 50%; */
    background-color: #6d564a!important;
    position: relative;
    margin: 0 auto;
    border-radius: 6px;
}

.volume_progress_bar #volume_progress_bar_rectangle {
    width: 12px;
    height: 6px;
    border-radius: 50%;
    background-color: #B19E70;
    position: relative;
    margin-left: -3px;
}

.film-maker-main .xg-medias .xg-medias-m .media-box {
    background-image: none;
    border: none;
}

/* 音频标题 */
#audioTitle {
    height: 18px;
    background-color: #B19E70;
    border-radius: 6px;
    margin-top: -8px;
    padding: 0 8px;
    line-height: 18px;
    margin-bottom: 3px;
	color: #6d564a;
}
#audioTitle #audioTitleTxt {
    width: 80%;
    display: inline-block;
    font-weight: bold;
    font-size: 10px;
    cursor: move;
}
#audioTitle #audioClose {
    float: right;
    cursor: pointer;
    font-size: 6px;
}

@media (max-width: 450px) {
	.film-maker-main .xg-medias .xg-medias-m {
	    width: 100%;
	    height: 2.6rem;
	}
	.film-maker-main .xg-medias .xg-medias-m .m-list {
	    width: 45%;
	    height: 2rem;
	    float: right;
	}
}

@media (min-width: 450px) {
	#audioStyle {
	    /* margin-left: 30%;
	    margin-top: 10%; */
	    margin: auto;
	    background-color: #867368;
	    width: 200px;
	    border-radius: 10px;
	    padding-top: 12px;
	}
	
	#audioStyle #audio_controls {
	    width: 100%;
	    height: 20px;
	    border-radius: 6px;
	    background-color: #6d564a;
	    color: #B19E70;
	    /* Firefox私有属性 */
	    -moz-user-select: none;
	    /* WebKit内核私有属性 */
	    -webkit-user-select: none;
	    /* IE私有属性(IE10及以后) */
	    -ms-user-select: none;
	    /* KHTML内核私有属性 */
	    -khtml-user-select: none;
	    /* Opera私有属性 */
	    -o-user-select: none;
	    /* CSS3属性 */
	    user-select: none;
	    /* 同一排元素居中显示 */
	    display: flex;
	    align-items: center;
	    font-size: 9px;
	}
	#audioStyle #audio_controls #img_audio_play #audio_play_tag {
	    width: 12px;
	    border-radius: 50%;
	    cursor: pointer;
	}
	#audioStyle #audio_controls #img_audio_play {
	    float: left;
	    /* margin-top: 5px; */
	    margin-left: 2px;
	}
	#audioDate #dateMS {
	    float: left;
	}
	#audioStyle #audio_controls #audioDate {
	    float: left;
	    line-height: 50px;
	    /* margin-left: 1px; */
	    width: 300px;
	    /* width: 80%; */
	    display: flex;
	    align-items: center;
	}
	#audioDate .date_progress_bar {
	    float: left;
	    background-color: #867368;
	    width: 96px;
	    /* width: 66%; */
	    height: 6px;
	    border-radius: 6px;
	}
	#audio_volume #volume_img {
	    width: 12px;
	    margin-top: 12px;
	    margin-bottom: 10px;
	    margin-right: 5px;
	}
	#audioStyle #imgTagDiv {
	    text-align: center;
	    line-height: 50px;
	    margin-bottom: 10px;
	}
	#volume_bg {
	    position: absolute;
	    width: 12px;
	    height: 110px;
	    /* height: 310%; */
	    background-color: #fff;
	    bottom: 25px;
	    border-radius: 2px;
	    display: none;
	}
	#volume_small_img {
	    width: 9px;
	    position: absolute;
	    bottom: 3px;
	    left: 1px;
	}
	.volume_progress_bar {
	    width: 6px;
	    height: 85px;
	    /* height: 70%; */
	    background-color: #B19E70;
	    position: absolute;
	    left: 3px;
	    bottom: 13px;
	    border-radius: 6px;
	}
	.volume_progress_bar #volume_progress_bar_one {
	    width: 6px;
	    height: 66px;
	    /* height: 50%; */
	    background-color: #6d564a!important;
	    position: relative;
	    margin: 0 auto;
	    border-radius: 6px;
	}
	#volume_size_title {
	    font-size: 10px;
	    text-align: center;
	    font-weight: bold;
	    margin-top: 1px;
	}
	
	/* 音频标题 */
	#audioTitle {
	    height: 18px;
	    background-color: #B19E70;
	    border-radius: 6px;
	    margin-top: -12px;
	    padding: 0 8px;
	    line-height: 18px;
	    margin-bottom: 3px;
		color: #6d564a;
	}
	#audioTitle #audioTitleTxt {
	    width: 80%;
	    display: inline-block;
	    font-weight: bold;
	    font-size: 10px;
	    cursor: move;
	}
	#audioTitle #audioClose {
	    float: right;
	    cursor: pointer;
	    font-size: 6px;
	}
}

@media (min-width: 650px) {
	#audioStyle {
	    /* margin-left: 30%;
	    margin-top: 10%; */
	    margin: auto;
	    background-color: #867368;
	    width: 300px;
	    border-radius: 10px;
	    padding-top: 3px;
	}
	#audioStyle #audio_controls {
	    width: 100%;
	    height: 30px;
	    border-radius: 6px;
	    background-color: #6d564a;
	    color: #B19E70;
	    /* Firefox私有属性 */
	    -moz-user-select: none;
	    /* WebKit内核私有属性 */
	    -webkit-user-select: none;
	    /* IE私有属性(IE10及以后) */
	    -ms-user-select: none;
	    /* KHTML内核私有属性 */
	    -khtml-user-select: none;
	    /* Opera私有属性 */
	    -o-user-select: none;
	    /* CSS3属性 */
	    user-select: none;
	    /* 同一排元素居中显示 */
	    display: flex;
	    align-items: center;
	    font-size: 1px;
	}
	#audioStyle #audio_controls #img_audio_play #audio_play_tag {
	    width: 20px;
	    border-radius: 50%;
	    cursor: pointer;
	}
	#audioStyle #audio_controls #img_audio_play {
	    float: left;
	    /* margin-top: 5px; */
	    margin-left: 1px;
	}
	#audioDate #dateMS {
	    float: left;
	}
	#audioStyle #audio_controls #audioDate {
	    float: left;
	    line-height: 50px;
	    margin-left: 1px;
	    width: 320px;
	    /* width: 80%; */
	    display: flex;
	    align-items: center;
	}
	#audioDate .date_progress_bar {
	    float: left;
	    background-color: #867368;
	    width: 186px;
	    /* width: 66%; */
	    height: 6px;
	    border-radius: 6px;
	}
	#audio_volume #volume_img {
	    width: 16px;
	    margin-top: 12px;
	    margin-bottom: 10px;
	}
	#audioStyle #imgTagDiv {
	    text-align: center;
	    line-height: 50px;
	    margin-bottom: 6px;
	}
	#volume_bg {
	    position: absolute;
	    width: 20px;
	    height: 142px;
	    /* height: 310%; */
	    background-color: #fff;
	    bottom: 30px;
	    border-radius: 2px;
	    display: none;
	}
	#volume_small_img {
	    width: 16px;
	    position: absolute;
	    bottom: 3px;
	    left: 2px;
	}
	.volume_progress_bar {
	    width: 6px;
	    height: 100px;
	    /* height: 70%; */
	    background-color: #B19E70;
	    position: absolute;
	    left: 7px;
	    bottom: 24px;
	    border-radius: 6px;
	}
	.volume_progress_bar #volume_progress_bar_one {
	    width: 6px;
	    height: 66px;
	    /* height: 50%; */
	    background-color: #6d564a!important;
	    position: relative;
	    margin: 0 auto;
	    border-radius: 6px;
	}
	#volume_size_title {
	    font-size: 10px;
	    text-align: center;
	    font-weight: bold;
	    margin-top: 2px;
	}
	/* 音频标题 */
	#audioTitle {
	    height: 24px;
	    background-color: #B19E70;
	    border-radius: 6px;
	    margin-top: -3px;
	    padding: 0 8px;
	    line-height: 24px;
	    margin-bottom: 5px;
		color: #6d564a;
	}
	#audioTitle #audioTitleTxt {
	    width: 80%;
	    display: inline-block;
	    font-weight: bold;
	    font-size: 13px;
	    cursor: move;
	}
	#audioTitle #audioClose {
	    float: right;
	    cursor: pointer;
	    font-size: 10px;
	}
}

@media (min-width: 820px) {
	#audioStyle {
	    /* margin-left: 30%;
	    margin-top: 10%; */
	    margin: auto;
	    background-color: #867368;
	    width: 400px;
	    border-radius: 10px;
	    padding-top: 16px;
	}
	#audioStyle #audio_controls {
	    width: 100%;
	    height: 50px;
	    border-radius: 10px;
	    background-color: #6d564a;
	    color: #B19E70;
	    /* Firefox私有属性 */
	    -moz-user-select: none;
	    /* WebKit内核私有属性 */
	    -webkit-user-select: none;
	    /* IE私有属性(IE10及以后) */
	    -ms-user-select: none;
	    /* KHTML内核私有属性 */
	    -khtml-user-select: none;
	    /* Opera私有属性 */
	    -o-user-select: none;
	    /* CSS3属性 */
	    user-select: none;
	    /* 同一排元素居中显示 */
	    display: flex;
	    align-items: center;
	}
	#audioStyle #audio_controls #img_audio_play #audio_play_tag {
	    width: 25px;
	    border-radius: 50%;
	    cursor: pointer;
	}
	#audioStyle #audio_controls #img_audio_play {
	    float: left;
	    /* margin-top: 5px; */
	    margin-left: 10px;
	}
	#audioDate #dateMS {
	    float: left;
	    font-size: 12px;
	    width: 82px;
	}
	#audioStyle #audio_controls #audioDate {
	    float: left;
	    line-height: 50px;
	    margin-left: 6px;
	    width: 320px;
	    /* width: 80%; */
	    display: flex;
	    align-items: center;
	}
	#audioDate .date_progress_bar {
	    float: left;
	    background-color: #867368;
	    width: 210px;
	    /* width: 66%; */
	    height: 6px;
	    border-radius: 6px;
	}
	#audio_volume #volume_img {
	    width: 20px;
	    margin-top: 12px;
	    margin-bottom: 10px;
	}
	#audioStyle #imgTagDiv {
	    text-align: center;
	    line-height: 50px;
	    margin-bottom: 20px;
	}
	#volume_bg {
	    position: absolute;
	    width: 20px;
	    height: 142px;
	    /* height: 310%; */
	    background-color: #fff;
	    bottom: 40px;
	    border-radius: 2px;
	    display: none;
	}
	#volume_small_img {
	    width: 16px;
	    position: absolute;
	    bottom: 3px;
	    left: 2px;
	}
	.volume_progress_bar {
	    width: 6px;
	    height: 100px;
	    /* height: 70%; */
	    background-color: #B19E70;
	    position: absolute;
	    left: 7px;
	    bottom: 24px;
	    border-radius: 6px;
	}
	.volume_progress_bar #volume_progress_bar_one {
	    width: 6px;
	    height: 30px;
	    /* height: 50%; */
	    background-color: #6d564a!important;
	    position: relative;
	    margin: 0 auto;
	    border-radius: 6px;
	}
	#volume_size_title {
	    font-size: 10px;
	    text-align: center;
	    font-weight: bold;
	    margin-top: 2px;
	}
	/* 音频标题 */
	#audioTitle{
		height: 36px;
		background-color: #B19E70;
		border-radius: 10px;
		margin-top: -16px;
		padding: 0 8px;
		line-height: 36px;
		margin-bottom: 10px;
		color: #6d564a;
	}
	#audioTitle #audioTitleTxt {
		width: 80%;
		display: inline-block;
		font-weight: bold;
		cursor: move;
	}
	#audioTitle #audioClose {
		float: right;
		cursor: pointer;
		font-size: 12px;
	}
}

@media (min-width: 1030px) {
	#audioStyle {
	    /* margin-left: 30%;
	    margin-top: 10%; */
	    margin: auto;
	    background-color: #867368;
	    width: 480px;
	    border-radius: 10px;
	    padding-top: 16px;
	}
	#audioStyle #audio_controls {
	    width: 100%;
	    height: 50px;
	    border-radius: 10px;
	    background-color: #6d564a;
	    color: #B19E70;
	    /* Firefox私有属性 */
	    -moz-user-select: none;
	    /* WebKit内核私有属性 */
	    -webkit-user-select: none;
	    /* IE私有属性(IE10及以后) */
	    -ms-user-select: none;
	    /* KHTML内核私有属性 */
	    -khtml-user-select: none;
	    /* Opera私有属性 */
	    -o-user-select: none;
	    /* CSS3属性 */
	    user-select: none;
	    /* 同一排元素居中显示 */
	    display: flex;
	    align-items: center;
	}
	#audioStyle #audio_controls #img_audio_play #audio_play_tag {
	    width: 25px;
	    border-radius: 50%;
	    cursor: pointer;
	}
	#audioStyle #audio_controls #img_audio_play {
	    float: left;
	    /* margin-top: 5px; */
	    margin-left: 10px;
	}
	#audioDate #dateMS {
	    float: left;
	    font-size: 12px;
	    width: 82px;
	}
	#audioStyle #audio_controls #audioDate {
	    float: left;
	    line-height: 50px;
	    margin-left: 6px;
	    width: 405px;
	    /* width: 80%; */
	    display: flex;
	    align-items: center;
	}
	#audioDate .date_progress_bar {
	    float: left;
	    background-color: #867368;
	    width: 300px;
	    /* width: 66%; */
	    height: 6px;
	    border-radius: 6px;
	}
	#audio_volume #volume_img {
	    width: 20px;
	    margin-top: 12px;
	    margin-bottom: 10px;
	}
	#audioStyle #imgTagDiv {
	    text-align: center;
	    line-height: 50px;
	    margin-bottom: 20px;
	}
	#volume_bg {
	    position: absolute;
	    width: 20px;
	    height: 142px;
	    /* height: 310%; */
	    background-color: #fff;
	    bottom: 40px;
	    border-radius: 2px;
	    display: none;
	}
	#volume_small_img {
	    width: 16px;
	    position: absolute;
	    bottom: 3px;
	    left: 2px;
	}
	.volume_progress_bar {
	    width: 6px;
	    height: 100px;
	    /* height: 70%; */
	    background-color: #B19E70;
	    position: absolute;
	    left: 7px;
	    bottom: 24px;
	    border-radius: 6px;
	}
	.volume_progress_bar #volume_progress_bar_one {
	    width: 6px;
	    height: 30px;
	    /* height: 50%; */
	    background-color: #6d564a!important;
	    position: relative;
	    margin: 0 auto;
	    border-radius: 6px;
	}
	#volume_size_title {
	    font-size: 10px;
	    text-align: center;
	    font-weight: bold;
	    margin-top: 2px;
	}
	/* 音频标题 */
	#audioTitle{
		height: 36px;
		background-color: #B19E70;
		border-radius: 10px;
		margin-top: -16px;
		padding: 0 8px;
		line-height: 36px;
		margin-bottom: 10px;
		color: #6d564a;
	}
	#audioTitle #audioTitleTxt {
		width: 80%;
		display: inline-block;
		font-weight: bold;
		font-size: 16px;
		cursor: move;
	}
	#audioTitle #audioClose {
		float: right;
		cursor: pointer;
		font-size: 12px;
	}
}

@media (min-width: 1230px) {
	#audioStyle {
	    /* margin-left: 30%;
	    margin-top: 10%; */
	    margin: auto;
	    background-color: #867368;
	    width: 576px;
	    border-radius: 10px;
	    padding-top: 16px;
	}
	#audioStyle #audio_controls {
	    width: 100%;
	    height: 50px;
	    border-radius: 10px;
	    background-color: #6d564a;
	    color: #B19E70;
	    /* Firefox私有属性 */
	    -moz-user-select: none;
	    /* WebKit内核私有属性 */
	    -webkit-user-select: none;
	    /* IE私有属性(IE10及以后) */
	    -ms-user-select: none;
	    /* KHTML内核私有属性 */
	    -khtml-user-select: none;
	    /* Opera私有属性 */
	    -o-user-select: none;
	    /* CSS3属性 */
	    user-select: none;
	    /* 同一排元素居中显示 */
	    display: flex;
	    align-items: center;
	}
	#audioStyle #audio_controls #img_audio_play #audio_play_tag {
	    width: 25px;
	    border-radius: 50%;
	    cursor: pointer;
	}
	#audioStyle #audio_controls #img_audio_play {
	    float: left;
	    /* margin-top: 5px; */
	    margin-left: 10px;
	}
	#audioDate #dateMS {
	    float: left;
	    font-size: 12px;
	    width: 82px;
	}
	#audioStyle #audio_controls #audioDate {
	    float: left;
	    line-height: 50px;
	    margin-left: 6px;
	    width: 490px;
	    /* width: 80%; */
	    display: flex;
	    align-items: center;
	}
	#audioDate .date_progress_bar {
	    float: left;
	    background-color: #867368;
	    width: 380px;
	    /* width: 66%; */
	    height: 6px;
	    border-radius: 6px;
	}
	#audio_volume #volume_img {
	    width: 20px;
	    margin-top: 12px;
	    margin-bottom: 10px;
	}
	#audioStyle #imgTagDiv {
	    text-align: center;
	    line-height: 50px;
	    margin-bottom: 20px;
	}
	#volume_bg {
	    position: absolute;
	    width: 20px;
	    height: 142px;
	    /* height: 310%; */
	    background-color: #fff;
	    bottom: 40px;
	    border-radius: 2px;
	    display: none;
	}
	#volume_small_img {
	    width: 16px;
	    position: absolute;
	    bottom: 3px;
	    left: 2px;
	}
	.volume_progress_bar {
	    width: 6px;
	    height: 100px;
	    /* height: 70%; */
	    background-color: #B19E70;
	    position: absolute;
	    left: 7px;
	    bottom: 24px;
	    border-radius: 6px;
	}
	.volume_progress_bar #volume_progress_bar_one {
	    width: 6px;
	    height: 30px;
	    /* height: 50%; */
	    background-color: #6d564a!important;
	    position: relative;
	    margin: 0 auto;
	    border-radius: 6px;
	}
	#volume_size_title {
	    font-size: 10px;
	    text-align: center;
	    font-weight: bold;
	    margin-top: 2px;
	}
	/* 音频标题 */
	#audioTitle{
		height: 36px;
		background-color: #B19E70;
		border-radius: 10px;
		margin-top: -16px;
		padding: 0 8px;
		line-height: 36px;
		margin-bottom: 10px;
		color: #6d564a;
	}
	#audioTitle #audioTitleTxt {
		width: 80%;
		display: inline-block;
		font-weight: bold;
		font-size: 16px;
		cursor: move;
	}
	#audioTitle #audioClose {
		float: right;
		cursor: pointer;
		font-size: 12px;
	}
}
