@charset "UTF-8";

/**************************  wrapper  ***************************/
.player {
    position: fixed;
    left: 0;
    bottom: 0;
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    z-index: 1;
    transition-duration: .3s;
    display:none;
}

.player-inner {
    display: -webkit-flex;
    display: flex;
    position: relative;
    box-sizing: border-box;
    background: #353535;
    border-top: .99px solid #151515; 
    z-index: 2;
    transition-duration: .2s;
}

.playlist-on .player-inner {
    border-top: .99px solid #505050; 
}

.global-nav-on .player,
.local-menu-on .player,
.search-on .player {
    bottom: -50px;
}

/**************************  info  ***************************/
.pl-info {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    -webkit-flex: 1;
    flex: 1;
    padding: 0 10px 0 10px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.pl-thum {
    -webkit-flex: none;
    flex: none;
    width: 30px;
    margin-right: 10px;
    position: relative;
    z-index: 1;
}
.pl-thum img {
    width: 100%;
}

.pl-title {
    word-wrap: break-word;
    min-width: 0;
    position: relative;
    z-index: 1;
    font-size: 12px;
    cursor: default;
}
.pl-title-inner {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.pl-title .main {
    color: #fff;
    font-size: 13px;
}
.pl-title .sub {
    color: #b1b1b1;
    font-size: 12px;
    margin-left: 10px;
}
.pl-progress {
    position: absolute;
    height: 100%;
    background: #202020;
    left: 0;
    top: 0;
}
.pl-loaded {
    position: absolute;
    height: 100%;
    background: #4e4e4e;
    left: 0;
    top: 0;
}
.jp-no-solution {
    z-index: 1;
    top: 20px;
    left: 30px;
    line-height: normal;
    color: #ff0000;
    display:none;
}

/**************************  button  ***************************/
.pl-btn {
    display: -webkit-flex;
    display: flex;
    box-sizing: border-box;
}

.pl-ctrl {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 49px;
    box-sizing: border-box;
    border-left: .99px solid #505050;
    cursor: pointer;
    position: relative;
    font-family: 'Material Icons';
    color: #fff;
    font-size: 20px;
}

.pl-ctrl.pl-btn-play {
    width: 100px;
    font-size: 24px;
}

.pl-ctrl:after {
    content: "";
    font-family: 'Material Icons';
    color: #fff;
    font-size: 20px;
}
.pl-ctrl.pl-btn-pause {
    width: 100px;
}
.pl-btn-vol:after {
    content: '\e050';
}
.pl-btn-playlist:after {
    content: '\e05f';
}

/**************************  volume  ***************************/
.pl-vol-wrap {
    z-index: 1;
    position: relative;
}

.pl-volslider-on .pl-btn-vol {
    border-left: none;
    padding-left: .99px;
}

.pl-volslider {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    position: absolute;
    right: 50px;
    top: 0;
    width: 0;
    height: 49px;
    background: #353535;
    overflow: hidden;
    box-sizing: border-box;
    cursor: default;
    transition-duration: .3s;
}
.pl-volslider-on .pl-volslider {
    width: 250px;
    border-left: .99px solid #505050;
}

.pl-vol-bg {
    width: 150px;
    padding-right: 8px;
}

.pl-volslider-btn {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 49px;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
}

.pl-volslider-btn:after {
    content: "";
    font-family: 'Material Icons';
    color: #fff;
    font-size: 20px;
}

.pl-volslider-close:after {
    content: '\e14c';
}
.pl-volslider-min:after {
    content: '\e04e';
}
.pl-volslider-bar {
    height: 2px;
    -webkit-flex: 1;
    flex: 1;
    background: #5d5d5d;
    position: relative;
    margin-right: 4px;
    cursor: pointer;
}
.pl-volslider-hilight {
    position: absolute;
    left: 0;
    top: 0;
    height: inherit;
    background: #c7c7c7;
}
.pl-volslider-hundle {
    position: absolute;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: #fff;
    top: 18.5px;
    left: 100%;
    margin: 0 -4px;
    cursor: pointer;
}

/**************************  playlist  ***************************/
.playlist {
    z-index: 1;
    position: absolute;
    bottom: -400px;
    left: 0;
    width: 100%;
    background: #353535;
    height: 400px;
    overflow: auto;
    transition-duration: .3s;
}
.playlist-on .playlist {
    bottom: 50px;
}
.playlist-header {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding: 0 0 0 10px;
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    position: fixed;
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    background: #353535;
    z-index: 1;
    border-bottom: .99px solid #505050;
}
.playlist-header-title {
    margin-right: auto;
    letter-spacing: 1px;
    word-wrap: break-word;
    min-width: 0;
}

.playlist-clear {
    cursor: pointer;
}
.playlist-clear:before {
    content: '\e14c';
    font-family: 'Material Icons';
    margin-right: 3px;
    font-size: 16px;
    vertical-align: bottom;
}
.playlist-close {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 49px;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    margin-left: 10px;
}
.playlist-close:after {
    content: '\e313';
    font-family: 'Material Icons';
    color: #b1b1b1;
    font-size: 20px;
}

.playlist-list {
    position: relative;
    top: 50px;
}
.playlist-li {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 0 0 10px;
    font-size: 12px;
    border-bottom: .99px solid #505050;
    cursor: pointer;
}

.playlist-li:hover {
    background: #505050;
}

.pl_list_current {
    background: #202020;
}

.playlist-li-thum {
    width: 30px;
    margin-right: 10px;
}
.playlist-li-thum img {
    width: 100%;
}
.playlist-li-title {
    margin-right: auto;
    color: #c7c7c7;
}
.playlist-li-title a {
    color: #c7c7c7;
}
.playlist-li-title span {
    color: #b1b1b1;
    margin-left: 10px;
}
.playlist-li-time {
    color: #c7c7c7;
}
.playlist-li-close {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 49px;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    margin-left: 10px;
}
.playlist-li-close:after {
    content: '\e14c';
    font-family: 'Material Icons';
    color: #696969;
    font-size: 16px;
}
.playlist-li-close:hover:after {
    color: #bb3a36;
}

#mask {
    display:none;
    position:fixed;
    top:50%;
    left:50%;
    width:70px;
    height:70px;
    margin-top:-35px;
    margin-left:-35px;
    background-color:#fff;
    opacity:0.8;
    -moz-opacity:0.8;
    filter:alpha(opacity = 80);
    border:1px solid #e0e0e0;
    -moz-border-radius:8px;
    -webkit-border-radius:8px;
    border-radius:8px;
    z-index:1000;
}
#jquery_jplayer {
    height:0;
}