﻿input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
}

input[type=range]:focus {
    outline: none;
}

.media_range::-webkit-slider-thumb {
    height: 0.4rem;
    width: 0.4rem;
    margin-top: -0.1rem;
    border: none;
    transition: 0.3s ease-in-out;
    border-radius: 0.2rem;
    background-color: #FF6500;
    box-sizing: border-box;
    border: solid 1px #FFFFFF;
}

.media_range {
    -webkit-appearance: none;
    flex: 1;
    border-radius: 0.1rem;
    height: 0.2rem;
    padding: 0;
    margin: 0 0.2rem;
    box-sizing: border-box;
    background-color: #FFD3B6;
}

    .media_range::-webkit-slider-runnable-track {
        -webkit-appearance: none;
        border-radius: 0.1rem;
        height: 0.2rem;
        padding: 0;
        box-sizing: border-box;
        background: rgba(255,211,182,0.2);
    }

.media_play {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

    .media_play .bt_ico {
        box-sizing: border-box;
        color: #4f8650;
        font-size: 0.3rem;
        line-height: 0.4rem;
        height: 0.5rem;
        margin: 0 0.1rem 0 0.1rem;
    }

.bt_play {
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
    padding: 0.25rem;
    margin: 0 0.5rem;
    box-sizing: border-box;
    background-color: #ea6e2d;
}

#tts_audio_play {
    box-sizing: border-box;
    position: fixed;
    left: 0;
    bottom: -0.3rem;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0.20rem 0.3rem 0.6rem 0.3rem;
    visibility: hidden;
    border-top-left-radius: 0.2rem;
    border-top-right-radius: 0.2rem;
    box-shadow: inset 0 0 0.3rem 0.05rem #ccf0e8;
    z-index:1;
}

    #tts_audio_play.show {
        visibility: visible;
    }

    #tts_audio_play .play_status {
        display: flex;
        flex-direction: row;
        align-items: center;
        height: 0.8rem;
        justify-content: center;
        position: relative;
        color: #333333;
        font-size: 0.3rem;
        line-height: 0.5rem;
    }

    #tts_audio_play .play_status {
        display: flex;
        flex-direction: row;
        align-items: center;
        height: 0.8rem;
        justify-content: center;
        position: relative;
        color: #333333;
        font-size: 0.3rem;
        line-height: 0.5rem;
    }

        #tts_audio_play .play_status .bt_close {
            width: 0.45rem;
            height: 0.45rem;
            position: absolute;
            right: 0;
        }

    #tts_audio_play .node_title {
        display: flex;
        flex-direction: row;
        align-items: center;
        height: 0.8rem;
        justify-content: center;
        position: relative;
        color: #09833D;
        font-size: 0.3rem;
        line-height: 0.5rem;
    }

.play_pan {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #707172;
    font-size: 0.30rem;
    margin: 0.15rem 0;
    box-sizing: border-box;
}

    .play_pan #MC {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: start;
        flex: 1;
        text-align: left;
        position: relative;
        box-sizing: border-box;
        margin:0 0.3rem;
    }

    .play_pan #M #progress {
        display: flex;
        background-color: #FF0000;
        height: 0.05rem;
        width: 0%;
        box-sizing: border-box;
    }

@media(max-width:600){

}

#bt_media {
    box-sizing: border-box;
    border-radius: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: fixed;
    right: 0.133333rem;
    bottom: 3.7rem;
    width: 1.653333rem;
    height: 1.653333rem;
    justify-content: center;
    color: #09843E;
    max-width: 68px;
    max-height: 68px;
    z-index:1;
}
#bt_media_pl {
    width: 1.653333rem;
    height: 1.653333rem;
    max-width: 68px;
    max-height: 68px;
}

#bt_media .close {
    position: absolute;
    top: -0.2rem;
    right: 0;
    width: 0.45rem;
    height: 0.45rem;
    max-width: 20px;
    max-height: 20px;
}

.bt_play_by_node {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0.3rem auto 0 auto;
    background-color: #FF6500;
    height: 0.7rem;
    width: 3rem;
    border-radius: 0.35rem;
    color: #FFFFFF;
    justify-content: center;
}

    .bt_play_by_node .tt{
        font-size:0.3rem;
        line-height:0.35rem;
    }

    .bt_play_by_node .ico {
        display: block;
        width: 0.4rem;
        height: 0.4rem;
        margin-right: 0.1rem;
    }

.fl_range {
    height: 0.2rem;
    background-color: #ffd3b6;
    border-radius: 0.1rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    position: relative;
}

    .fl_range .fl_range_progress {
        height: 0.2rem;
        background-color: #FF6500;
        border-radius: 0.1rem;
        width: 0%;
    }

    .fl_range .fl_range_slider {
        height: 0.4rem;
        width: 0.4rem;
        background-color: #FF6500;
        border-radius: 50%;
        border: solid 1px #FFFFFF;
        position: absolute;
        top: -0.1rem;
        left: calc(0% - 10px);
    }