/* 时间播放器 */
.timeplayerBox {
    position: absolute;
    bottom: 10px;
    width: 100%;
    z-index: 10;
}
.tplayer{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -38px;
    display: block;
}
.tplayer .tsetting {
    white-space: nowrap;
    clear: both;
    /*margin-bottom: 32px;*/
    display: inline-block;
    vertical-align: top;
}
.tplayer .tmode {
    display: inline-block;
    border-radius: 3px;
    box-shadow: 1px 1px 1px rgb(0 0 0 / 50%);
    margin-bottom: 6px;
}
.tplayer .tmode ul {
    display: inline-block;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
}
.tplayer .tmode li {
    position: relative;
    display: inline-block;

    padding: 6px 10px;
    line-height: normal;
    height: 32px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}
.tplayer .tmode li:first-child {
    border-radius: 3px 0 0 3px;
    border-right: 0;
}
.tplayer .tmode li:last-child {
    border-radius: 0 3px 3px 0;
    border-left: 0;
}
.tplayer .tmode .current, .tplayer .tmode .current:hover {
    cursor: default;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-weight: bold;
}
.tplayer .tmode li:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-weight: bold;
}
.tplayer .trange {
    background: #FFFFFF;
    color: #000000;
    font-size: 14px;
    border: 1px solid #CCCCCC;
    box-sizing: border-box;
    box-shadow: 0px 3px 5px rgb(0 0 0 / 25%);
    border-radius: 3px;
    display: block;
    cursor: pointer;
    width: max-content;
    vertical-align: top;
}
.tplayer .trange:hover {
    background: #efefef;
}
.tplayer .trange ul {
    padding: 0;
    margin: 0;
    list-style: none;
    padding: 8px 10px;
    overflow: hidden;
}
.tplayer .trange .setrange {
    float: left;
    margin-right: 4px;
    line-height: 16px;
}
.tplayer .trange li {
    float: left;
    margin-right: 4px;
    line-height: 16px;
}
.tplayer .trange li .t {
    display: inline-block;
    min-width: 62px;
}
.tplayer .tspeed {
    padding-top: 5px;
}
.tplayer .acbar {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 2;
    height: 30px;
}
.tplayer .play {
    position: relative;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    vertical-align: top;
    padding: 2px 6px;
}
.tplayer .play-btn {
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    background: transparent;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
}

.tplayer .play-btn i{
    line-height: 26px;
}
.tplayer .play-btn:hover {
    background: rgba(255,255,255,0.1);
}

.tplayer .timeline {
    position: relative;
    margin-left: 10px;
    height: 36px;
    min-width: 600px;
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
}
.tplayer .tlinepanel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.tplayer .processbar {
    height: 6px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 3px;
}
.tplayer .processbar .bar {
    height: 6px;
    overflow: hidden;
    background: #fff;
    width: 0;
}
.tplayer .timemarker {
    position: relative;
    height: 30px;
    /* overflow: hidden; */
    /* background: rgba(51, 51, 51, 0.3); */
    border-radius: 0 0 3px 3px;
}
.tplayer .timemarker * {
    cursor: pointer;
}
.tplayer .timemarker .range:first-child {
    border: none;
}
.tplayer .timemarker .range {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    /* border-left: 1px solid rgba(51, 51, 51, 0.4); */
    color: #333;
    text-shadow: 0px 0px 5px rgb(255 255 255);
    line-height: 30px;
    /* padding-left: 10px; */
    overflow: hidden;
}
/* .tplayer .timeline:hover .timemarker {
    background: rgba(51, 51, 51, 0.4);
} */
.tplayer .timeline .curtime {
    z-index: 1;
}
.tplayer .timeline .tooltip {
    z-index: 2;
    cursor: default;
    top: -30px;
    opacity: 1;
    white-space: nowrap;
}
.tplayer .timeline .curtime .tooltip-arrow {
    /* background: rgba(0,0,0,0.5); */
}
.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: rgba(10, 60, 111, 0.85);
}
/* .tplayer .timeline .tooltip.curtime .tooltip-inner {
    box-shadow: 1px 1px 2px rgb(0 0 0 / 30%);
} */
.tplayer .timeline .curtime .tooltip-inner {
    background: rgba(0,0,0,0.5);
    color: #fff;
}
.tplayer .timeline .tooltip-inner {
    width: 44px;
    /* 值为width的一半 */
    /* margin-left: -55px!important; */
    border-radius: 3px;
    background: rgba(0,0,0,0.5);
}
.tplayer .timeline .tooltip-inner.month {
    width: 60px;
}
.tplayer .timeplayer-popover.top {
    margin-top: -6px;
}
.tplayer .tsetting .timeplayer-popover .arrow {
    margin-left: -101px;
    border-width: 7px;
    bottom: -14px;
}
.tplayer .timeplayer-popover .popover-content {
    padding: 0;
}
.tplayer .timeplayer-popover .popover-close {
    position: absolute;
    top: 15px;
    right: 20px;
}
.tplayer .popover-close .aicon[action="popover-close"] {
    padding: 0;
    color: #C4C4C4;
    margin: 0;
    min-width: 20px;
    width: 20px;
    height: 20px;
    text-shadow: none ;
    background: transparent;
    border: none;
    font-size: 12px;
}
.tplayer .timeplayer-popover .popover-close .aicon i {
    line-height: 20px;
}
.tplayer .popover-head {
    padding: 10px 15px 10px 15px;
}
.tplayer .popover-head h3 {
    margin: 0;
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;
    color: #333333;
}
.tplayer .popover-body {
    padding: 0px 15px 15px 15px;
}
.tplayer .setter-range .tpoint {
    position: relative;
    height: 38px;
}
.tplayer .setter-range .tpoint span {
    margin-top: 3.5px;
    display: inline-block;
}
.tplayer .setter-range .tpoint .form-control[readonly] {
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    cursor: pointer;
    border-color: #ccc;
    box-shadow: none;
    color: #333;
}
.tplayer .popover-action {
    padding: 0 15px 15px 15px;
    text-align: right;
}
.tplayer .popover-action .btn {
    margin-left: 10px;
    font-size: 14px;
    line-height: 14px;
    padding: 6px 10px;
}
.datepicker table {
    border: 0;
}
.datepicker table tr td.disabled, .datepicker table tr td.disabled:hover .datepicker td.day.disabled, .datepicker td span.disabled {
    color: #ccc !important;
}
.playSpeed {
    /*position: absolute;*/
    height: 32px;
    text-align: center;
    line-height: 32px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    /*left: -50px;*/
    /*top: -14px;*/
    /*display: flex;*/
    align-items: center;
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    border-radius: 3px;
}
.playSpeed-item {
    padding: 0 5px;
}
.playSpeed-item:hover {
    background-color: rgb(255,255,255,0.1);
}
.acbar .play-speed-item.popover {
    background-color: transparent;
}
.acbar .play-speed-item .popover-content {
    background-color: rgba(0, 0, 0, 0.5) !important;
    color: #fff;
}
.acbar .play-speed-item.popover.top>.arrow:after {
    border-top-color: rgba(0, 0, 0, 0.5);
}
.acbar .play-speed-item .popover-content {
    width: 44px;
    box-sizing: border-box;
    text-align: center;
    padding: 0;
}
.acbar .play-speed-item .popover-content .text {
    width: 100%;
    padding: 5px 0;
    cursor: pointer;
}
.acbar .play-speed-item .popover-content .text:hover {
    background-color: rgb(255,255,255,0.1);
}