.hidden {
    display: none;
}

.childhidden * {
    display: none;
}

.gplayer_container_inner {
    position: relative;
}

.gplayer_container {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.gplayer_container * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
}

.gplayer_video {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gplayer_video video {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.gplayer_controls {
    position: absolute;
    display: block;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    z-index: 6;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    -webkit-transform: translateZ(0);
    -webkit-transition: bottom .3s ease;
    transition: bottom .3s ease;
    opacity: 0;
    overflow: visible;
    display: flex;
    display: -webkit-flex;
    align-content: center;
}

.gplayer_controls>* {
    z-index: 10;
    position: relative;
}

.gplayer_controls .gplayer_controls_bg {
    width: 100%;
    height: 130%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0)));
    background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    background: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
}

.gplayer_overlay_poster {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center;
    background-color: none;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.gplayer_poster_img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    background-color: rgba(0, 0, 0, 0);
    background-size: cover;
}

.gplayer_overlay_option {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
}

.gplayer_button_play {
    display: block;
    left: 0;
    top: 0;
    width: 68px;
    height: 68px;
    left: 50%;
    margin-left: -34px;
    top: 50%;
    margin-top: -34px;
    background-size: 50px;
    border: none;
    position: absolute;
    cursor: pointer;
    z-index: 10;
}

.gplayer_loading {
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, .5) url('../icons/loading_small.gif') center center no-repeat;
    -webkit-background-size: 25px 25px;
    background-size: 25px 25px;
    border-radius: 10px;
    z-index: 10;
}

.gplayer_controls button {
    display: block;
    padding: 0;
    border: 0 none;
    background: none;
    text-align: center;
    font-size: 0;
    cursor: pointer;
}

.gplayer_controls .gplayer_button {
    display: inline-block;
    width: 46px;
    height: 100%;
    left: 5px;
    vertical-align: top;
}

.gplayer_fullscreen_button {
    display: inline-block;
    width: 45px;
    height: 100%;
    background-position: left 0;
    right: 0;
    text-align: center;
}

.gplayer_fullscreen_button button {
    position: relative;
    width: 67%;
    height: 100%;
    display: inline-block;
}

.gplayer_play_button {}

.gplayer_play_button button {
    width: 65%;
    height: 100%;
}

.gplayer_play_button .gplayer_btn_value {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 16px;
    vertical-align: middle;
    background: none;
    border: 15px solid transparent;
    border-width: 10px 15px;
    border-left-color: #fff;
    font-size: 0;
    color: transparent;
    background: none;
}

.gplayer_time_rail {
    position: relative;
    display: inline-block;
    height: 100%;
    padding: 0;
    top: 2px;
    vertical-align: top;
    flex-direction: row;
    /* default 0 */
    display: flex;
    flex-grow: 1;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.gplayer_time_total {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    margin-left: 5px;
    margin-right: 5px;
    background: rgba(183, 182, 177, .9);
    cursor: pointer;
    transition: all 0.3s;
}

.gplayer_pc .gplayer_time_rail:hover .gplayer_time_total {
    transition: all 0.3s;
    height: 4px;
}

.gplayer_time_loaded,
.gplayer_time_current {
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 2;
    display: block;
    max-width: 100%!important;
    height: 100%;
    background: #FF9000;
}

.gplayer_time_panel {
    position: relative;
    right: 0;
    bottom: 0px;
    z-index: 2;
    font-size: 10px;
    color: #fff;
    height: 20px;
    line-height: 20px;
    display: block;
    font-family: PingFangSC-Light, HelveticaNeue-Light, arial;
    white-space: nowrap;
}

.gplayer_time_handle {
    position: absolute;
    z-index: 3;
    top: 50%;
    margin-top: -13px;
    right: -9px;
    display: block;
    width: 27px;
    height: 27px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    /* display: none; */
}

.gplayer_time_loaded {
    z-index: 1;
    background: rgba(255, 255, 255, .2);
}

.gplayer_time_handle em {
    content: '';
    position: absolute;
    left: 6px;
    top: 5px;
    width: 15px;
    height: 15px;
    /*background-image: -webkit-radial-gradient(50% 50%,circle closest-side,rgba(255,144,0,1) 31%,rgba(255,144,0,0.3) 100%);*/
    -webkit-background-clip: content-box;
    background-clip: content-box;
    border-radius: 100%;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
    border-bottom-left-radius: 100%;
    border-bottom-right-radius: 100%;
}

.tvp_fullscreen .txp_svg_fullscreen_true {
    display: none;
}

.tvp_fullscreen_true .txp_svg_fullscreen_true {
    display: block;
}

.tvp_fullscreen_true .txp_svg_fullscreen {
    display: none;
}

.txp_svg_pause {
    display: none;
}

.gplayer_pause .txp_svg_pause {
    display: block;
}

.gplayer_play .txp_svg_pause {
    display: none;
}

.gplayer_play .txp_svg_play {
    display: block;
}

.gplayer_pause .txp_svg_play {
    display: none;
}

.txp_svg_stop {
    display: none;
}

.txp_svg_replay {
    display: none;
}

.gplayer_none {
    display: none;
}
