ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
* {
    margin: 0;
    padding: 0;
}
html {
    overflow-y: scroll; /*  这是为了兼容ie8，不支持:root, vw */
}

:root {
    overflow-y: auto;
    /* overflow-x: hidden; */
}

:root body {
    position: absolute;
}

body {
    width: 100%;
   
}

a {
    text-decoration: none;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.main {
    width: 1240px;
    margin: 0 auto;
    
}


.userInfo .header {
    width: 100%;
    height: 72px;
    position: relative;
    background-color: #fff;
    
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    box-shadow: 0 2px 6px rgba(0,0,0,.1);
    animation: fadeIn .5s ease-in both;
}


.logoBox {
    width: 150px;
    height: 36px;
    overflow: hidden;
    padding-top: 18px;
    padding-left: 10px;
}
.logo {
   height: 100%;
   /*background: url(https://img.1958xy.com/img/title/logo.png) no-repeat;
   background-position: center;*/
}


.menuBox {
    position: absolute;
    top: 26px;
    left: 190px;   
}
.menuBox .channelHome, 
.menuBox .channelMore {
    color: #222;
    opacity: .7;
}
.menuBox .channelHome {
    margin-right: 10px;
}
.menuBox .channelHome:hover,
.menuBox .channelMore:hover {
    opacity: 1;
} 
.menuBox .channelMore:hover + .channelMenu,
.menuBox .channelMenu:hover  {
    display: block;
}
.menuBox .channelMenu {
    display: none;
    position: absolute;
    z-index: 999;
    width: 220px;
    top: 32px;
    right: -86px;
    border-top: 2px solid #ff6428;
    background-color: rgba(255, 255, 255, 0.9);
}

.menuBox .channelMenu .channelMenuInner {
    padding: 9px 0px 8px 18px;
    box-shadow: 0px 1px 2px #ddd;
}

.menuBox .channelMenu .triangleUp {
    position: absolute;
    width: 0;
    height: 0;
    left: 50%;
    top: -14px;
    margin-left: -8px;
    border: 7px solid transparent;
    border-bottom-color: #ff6428; 
}
.menuBox .channelMenu .triangleUp .triangleInner {
    width: 0;
    height: 0;
    position: absolute;
    left: -5px;
    top: -2px;
    border: 5px solid transparent;
    border-bottom-color: #fff;
}
.menuBox .channelMenu .channelMenuInner .navLink {
    display: inline-block;
    min-width: 56px;
    line-height: 26px;
    padding: 0 0 0 8px;
    color: #222;
    font-size: 14px;
    letter-spacing: normal;
    transition: color 50ms ease-in;
}
.menuBox .channelMenu .channelMenuInner .navLink:hover {
    color: #ff6428;
}
/* .menuBox .channelMore:hover + .channelMenu, */
 /* .menuBox .channelMenu:hover  {
    display: block;
} */


.searchBox {
    width: 580px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 16px; 
    margin-left: -260px;
    border: 2px solid #ff6428;
    border-radius: 24px;
}
.searchBox .searchForm,
.searchBox .searchInner {
    width: 100%;
    height: 100%;
    position: relative;
}
.searchBox .searchInner .icon {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 15px;
    top: 11px;
    font-size: 20px;
    color: #ff6428;
    font-weight: 700;
}
.searchBox .searchInner .searchKWds {
    height: 40px;
    margin: 0 181px 0 40px;
}
@media (max-width: 1279px) {
    .searchBox .searchInner .searchKWds {
        margin-right:135px;
    }
}
.searchBox .searchInner .searchKWds .searchInput {
    width: 100%;
    height: 100%;
    padding: 0;
    line-height: 40px;
    color: #666;
    border: none;
    outline: 0;
    font-size: 14px;
    font-weight: 700;
}
.searchBox .searchInner .searchBtn {
    position: absolute;
    display: block;
    right: -2px;
    top: -2px;
    width: 100px;
    height: 44px;
    line-height: 44px;
    background-color: #ff6428;
    border: none;
    outline: 0;
    border-radius: 0 22px 22px 0;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
}


.smartBox {
    width: 440px;
    position: absolute;
    top: 42px;
    right: 98px;
    z-index: 999;
    border: 1px solid rgb(255, 255, 255);
    box-shadow: 0px 2px 2px 0 rgba(0, 0, 0, .2);
    background-color: #fff;
}
.smartBox.hide {
    display: none;
}
.smartBox .smartBoxInner {
    width: 100%;
    height: 100%;
    padding: 10px 0;
    box-sizing: border-box;
}
.smartBox .smartBoxInner .smartBoxInnerTop {
    margin: 0 10px 8px;
    font-size: 14px;
    color: #999;
    position: relative;
}
.smartBox .smartBoxInner .sbTools {
    position: absolute;
    right: 0;
    top: 1px;
    font-size: 12px;
    color: #999;
    cursor: pointer;
    text-decoration: underline;
}

.smartBox  .smartBoxInnerCont .sbItem {
    margin: 0 5px 0;
}
.smartBox  .smartBoxInnerCont .sbItem > a {
    padding: 5px;
    display: block;
    font-size: 14px;
    color: #222;
    line-height: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.smartBox  .smartBoxInnerCont .sbItem > a:hover {
    background-color: #f0f0f0;
    border-radius: 2px;
}
.smartBox  .smartBoxInnerCont .sbItem > a > span {
    display: inline-block;
    vertical-align: top;
}
.smartBox  .smartBoxInnerCont .sbItem > a > span:first-child {
    text-align: center;
    width: 22px;
    height: 22px;
    margin-right: 5px;
    font-size: 12px;
    color: #fff;
    border-radius: 2px; 
}
.smartBox  .smartBoxInnerCont .sbItem > a > span:last-child {
    max-width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sbNum1 {
    background-color: #ff0d29;
}
.sbNum2 {
    background-color: #ff6428;
}
.sbNum3 {
    background-color: #ffc600;
}
.sbNum  {
    background-color: #cacaca;
}



.quickInfo {
    position: absolute;
    right: 0;
    top: 16px;
    color: #000;
    
}
.infos,
.quickHistory,
.quickUpload,
.quickClient,
.quickUser {
    display: inline-block;           
    margin-right: 10px;
    transition: opacity 50ms ease-in;
    cursor: pointer;
}
.infos > a,
.quickHistory > a,
.quickUpload > a,
.quickClient > a,
.quickUser > a {
    display: inline-block;
    color:#fff;
    opacity: .6;
    position: relative;
    cursor: pointer;
  	text-align: center;
}
.infos:hover > a,
.quickHistory:hover > a,
.quickUpload:hover > a,
.quickClient:hover > a,
.quickUser:hover > a {
    opacity: 1;
  	color: #fff;
}  
.quickHistory > a:hover + .quickHistoryPop,
.quickHistory .quickHistoryPop:hover,
.quickClient > a:hover + .quickClientPop,
.quickClient  .quickClientPop:hover,
.quickUser > a:hover + .quickUserPop, 
.quickUser .quickUserPop:hover {
    display: block;
    background: transparent;
}

.quickInfo .quickIcon,
.quickInfo .quickText
 {
    display: block;
    font-size: 12px;
    text-align: center; 
   	width: 100%;
    background: transparent;
}
.icon-lishijilu:before,
.icon-shangchuan1:before,
.icon-pc:before,
.icon-yonghu:before,
.icon-tongzhi:before{
    display: block;
    font-weight: 700;
    font-size: 20px;
}
.icon-yonghu:before {
    font-size: 40px;
}
.quickHistoryPop,
.quickClientPop,
.quickUserPop {
    width: 350px;
    position: absolute;
    right: 0;
    top: 46px;
    z-index: 10;
    border-top: 2px solid #ff6428;
    display: none;
    transition: display 50ms ease;
    -webkit-transition: display 50ms ease;
    -moz-transition: display 50ms ease;
    -o-transition: display 50ms ease;
}
.quickHistoryPop {
    right: 42px;
}
.quickUserPop {
    width: 396px;
    display: none;   
}
.quickUserPop .quickUserPopInner {
    line-height: 26px;
    font-size: 14px;
    color: #999;
    background-color: #fff;
    position: relative;
    z-index: 2;
    border-radius: 0 0 1px 1px;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    box-shadow: 1px 2px 3px rgba(0,0,0,.1);
}
.quickUserPop .quickUserPopInner .quickUserHead {
    position: relative;
    height: 85px;
    padding: 5px 12px 0;
    overflow: hidden;
    background: url(https://img.1958xy.com/img/user/userinfo/pop_user_bg.jpg) 0 0 no-repeat;
}
.quickUserPop .accountType {
    display: inline-block;
    padding-right: 3px;
    vertical-align: top;
    letter-spacing: normal;
    font-size: 14px;
    color: #202020;
    
}
.quickUserPop .accountImg {
	width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 14px;
}
.quickUserPop .nickName {
    display: inline-block;
    padding-right: 3px;
    vertical-align: top;
    letter-spacing: normal;
    font-size: 14px;
    color: #202020;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 10em;
}
.quickUserPop .linkVipIcon {
    display: inline-block;
    vertical-align: top;
}
.quickUserPop .VipIconPic {
    display: inline-block;
    vertical-align: top;
    margin-top: 5px;
    width: 24px;
    height: 16px;
    border-radius: 0;
    background: none;
}
.quickUserPop .linkChange,
.quickUserPop .linkQuit {
    position: absolute;
    top: 8px;
    right: 12px;
    color: #999;
}
.quickUserPop .linkChange:hover,
.quickUserPop .linkQuit:hover {
    color: #000;
}
.quickUserPop .linkChange {  
    right: 55px;
}
.quickUserPop .quickUserVip {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
}
.vipNow {
    float: left;
    color: #202020;
}
.vipNext {
    float: right;
}
.openVip {
    display: inline-block;
    line-height: 24px;
    min-width: 50px;
    padding: 0 10px;
    text-align: center;
    color: #fff;
    background: #e3b54c;
    border-radius: 12px;
}
.openVip:hover {
    background-color: rgb(233, 196, 112);
}
.quickFeature {
    margin: 30px 70px 25px;
    overflow: hidden;
}
.comments,
.marks {
    float: left;
    width: 33.3333333%;
    text-align: center;
}

.comments .iconfont,
.marks .iconfont {
    font-size: 40px;
    line-height: 40px;
    color: #999;
}
.comments .iconfont:hover,
.marks .iconfont:hover {
    color:#000;
}
.comments > span,
.marks > span {
    display: block;
    white-space: nowrap;
    font-size: 12px;
    color: #202020;
}
.quickUserBtn {
    margin: 20px auto;
}
.quickUserBtn .quickUserBtnLink {
    width: 180px;
    background: #ff6428;
    color: #fff;
    display: block;
    height: 30px;
    margin: 10px auto;
    line-height: 30px;
    text-align: center;
    color: #fff;
    border-radius: 30px;
    border: none;
    font-size: 14px;
}
.quickHistoryPop:hover,
.quickClientPop:hover {
    display: block;
}
.quickClientPop {
    width: 150px;
    height: 150px;
    right: 20px;
}
.quickClientCont {
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
}
.quickClientCont > img {
    width: 100%;
    height: 100%;
}
.quickHistoryCont,
.quickClientCont {
    position: relative;
    z-index: 2;
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
    box-shadow: 1px 2px 3px rgba(0,0,0,.1) ;
    min-height: 180px;
}
.quickClientCont {
	 min-height: 100px;
}
.quickTimeLineBox {
    position: relative;
    max-height: 430px;
    overflow: auto;
    padding: 10px 0 10px 11px;
}

.quickVideoBox {
    border-left: 1px solid #eee;
}

.quickVideoList {
    position: relative;
    margin-bottom: 5px;
    top: -4px;
    font-size: 14px;
}

.quickVideoTitle {
    position: relative;
    padding-left: 15px;
    zoom: 1;
    margin: 10px 0 5px;
}
.dotBox {
    position: absolute;
    width: 5px;
    height: 5px;
    left: -7px;
    top: 4px;
    border-radius: 50%;
    background-color: #ff6428;
    border: 4px solid #fff;
} 
.dateTime {
    color: #ff6428;
}

.quickVideoItem {
    position: relative;
    height: auto;
    padding: 4px 15px 4px 118px;
    zoom: 1;
    margin-bottom: 18px;
    box-sizing: border-box;
    margin: 10px;
    border-radius: 4px;
}

.videoItemImg {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 100px;
    height: 56px;
    cursor: pointer;
}
.videoItemImg > img {
    width: 100%;
    height: 100%;
    display: inline-block;
    vertical-align: top;
    border-radius: 4px;
}
.videoItemTitle {
    display: block;
    max-width: 100%;
    height: 20px;
    line-height: 20px;
    color: #000;
    font-size: 12px;
    cursor: pointer;
}
.mainTitle {
    display: inline-block;
    max-width: 100%;
    font-size: 14px;
    height: 100%;
    margin-right: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: top;
}
.videoNum,
.videoProgress {
    display: block;
    position: static;
    font-size: 12px;
    line-height: 17px;
    height: 17px;
    color: #000;
}
.videoNum {
    margin: 1px 0 2px 0;
}
.videoProgress {
    color: rgba(0,0,0,.5);
}
.quickButton .getMore {
    display: block;
    width: 118px;
    height: 30px;
    line-height: 30px;
    margin: 10px auto;
    text-align: center;
    color: #fff;
    font-size: 14px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(to right,#ff850b 0,#ff5945 100%);
    background: -webkit-linear-gradient(to right,#ff850b 0,#ff5945 100%);
    background: -o-linear-gradient(to right,#ff850b 0,#ff5945 100%);
    background: -moz-linear-gradient(to right,#ff850b 0,#ff5945 100%);
}

.quickHistory .triangleUp,
.quickClient .triangleUp,
.quickUser .triangleUp {
    position: absolute;
    width: 0;
    height: 0;
    left: 50%;
    top: -15px;
    margin-left: -6px;
    border: 8px solid transparent;
    border-bottom-color: #ff6428; 
}
.quickClient .triangleUp {
    margin-left: -6px;
}
.quickUser .triangleUp {
    margin-left: 160px;
}
.quickHistory .triangleUp .triangleInner,
.quickClient .triangleUp .triangleInner,
.quickUser .triangleUp .triangleInner{
    width: 0;
    height: 0;
    position: absolute;
    left: -4px;
    top: -1px;
    border: 4px solid transparent;
    border-bottom-color: #fff;
}


.scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 4px;  
}
.scrollbar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0,0,0,.2);
    background-color: #dedede;
}
.scrollbar::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0,0,0,.2);
    background-color: #fff;
}

.quickVideoItem:hover {
    background-color: #eee;
}

.quickVideoEmpty {
    padding: 20px 0 6px;
    text-align: center;
}
.videoEmptyBox {
    width: 72px;
    height: 72px;
    display: block;
    margin: 0 auto 5px;
}
.videoEmptyBox + p {
    margin: 0;
}
.noHisIcon:before {
    font-size: 72px;
    color: #dedede;
}


.mainBody {
    margin-top: 30px;
    position: relative;
    z-index: 2;
    width: 100%;
}
.mainBody.addTop {
    margin-top: 102px;
}
.wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.userNav {
    float: left;
    width: 220px;  
}

.userNav.animation {
    animation: fadeIn .5s ease-in both;
}

.userShow {
    height: 220px;
    padding: 0 10px 0;
    text-align: center;
    background: #fbf2ef url(https://img.1958xy.com/%E7%94%A8%E6%88%B7%E4%B8%AD%E5%BF%83/avatar_bg_default.png) center bottom no-repeat;
    background-image: -webkit-image-set(url(https://img.1958xy.com/%E7%94%A8%E6%88%B7%E4%B8%AD%E5%BF%83/avatar_bg_default.png) 2x);
    background-size: 100% auto;
}
.navAvatar {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 20px auto 8px;
    overflow: hidden;
    position: relative;
}
.navAvatar > img  {
    width: 100%;
    height: 100%;
}
.navAvatar .mask {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 0, 0, .6);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
}
.navAvatar .toggleUser {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
    color: #fff;
    padding-top: 10px;
    z-index: 20;
}
.icon-zhanghaodenglu:before {
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 auto;
    font-size: 20px;
}
.navAvatar .toggleUser .inner {
    display: inline-block;
    width: 100%;
    line-height: 24px;
    font-size: 12px;
    text-align: center;
}
.userShow .userName {
    margin-bottom: 10px;
    color: #222;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.userShow .userName > a {
    color: #222;
}
.userShow .userName > a:hover {
    color: rgb(255, 100, 98);
}

.userHolly {
    height: 18px;
    line-height: 18px;
}
.userHolly .vipDesp {
    font-size: 12px;
    color: #999;
}
.vipBtn {
    display: block;
    width: 70px;
    height: 24px;
    line-height: 24px;
    margin: 10px auto 0;
    color: #fff;
    font-size: 14px;
    border-radius: 12px;
    background: #e3b54c;
}
.navList {
    padding: 10px 0;
    background: #f9f9f9;
  	margin: 0;
}
.navList .item {
    list-style: none;
    border-left: 3px solid transparent;
}
.navList .item.current {
    color: #ff6428;
    border-left: 3px solid #ff6428;
}
.navList .item.current .itemInner,
.navList .item:hover .itemInner {
    color: #ff6428;
  	text-decoration: none;
}
.navList .itemInner {
    display: block;
    padding: 0 0 0 38px;
    height: 24px;
    line-height: 24px;
    font-size: 14px;
    color: #666;
    margin: 18px 0;
    cursor: pointer;
}
.navList .itemInner .icon-lishijilu,
.navList .itemInner .icon-shoucang,
.navList .itemInner .icon-pinglun,
.navList .itemInner .icon-shangchuan,
.navList .itemInner .icon-shangchuan1,
.navList .itemInner .icon-shipinguanli,
.navList .itemInner .icon-goumaijilu,
.navList .itemInner .icon-tongzhi,
.navList .itemInner .text {
    display: inline-block;
    vertical-align: top;
}
.navList .itemInner .icon-lishijilu,
.navList .itemInner .icon-shoucang,
.navList .itemInner .icon-pinglun,
.navList .itemInner .icon-shangchuan,
.navList .itemInner .icon-shangchuan1,
.navList .itemInner .icon-shipinguanli,
.navList .itemInner .icon-goumaijilu,
.navList .itemInner .icon-tongzhi {
    font-size: 20px;
    font-weight: 700;
}
.navList .itemInner .text {
    display: inline-block;
    height: 24px;
    line-height: 24px;
}

.wrapperBody {
    float: right;
    width: 1000px;
}

.noData {
    padding: 120px 0 60px 0;
    text-align: center;
    clear: both;
}
.iconNoData {
    display: inline-block;
    width: 128px;
    height: 120px; 
    overflow: hidden;
    background: url(../image/icon_empty_subscript.png) no-repeat;
}

.noData .text {
    display: block;
    font-size: 18px;
    color: #999;
    padding: 30px 0;
}

.getData {
    margin: 0 10px;
}

.historyMd,
.mySaveMd {
    padding-top: 10px;
}
.modTitle {
    height: 12px;
    border-top: 1px solid #efefef;
    margin: 10px 0;
}
.modTitle .title {
    display: inline-block;
    zoom: 1;
    position: relative;
    height: 24px;
    line-height: 24px;
    padding: 0 10px 0 0;
    margin-top: -13px;
    font-size: 20px;
    background: #fff;
    vertical-align: top;
}
.historyToday  .modTitle .title,
.mySave  .modTitle .title {
    color: #ff7a0d;
}
.mySave  .modTitle .title {
    padding-left: 10px;
}
.iconToday,
.iconYestoday,
.iconLastWeek,
.iconEarlier {
    width: 10px;
    height: 10px;
    display: inline-block;
    background: url(https://img.1958xy.com/img/user/userinfo/sprite_common.png);
    _background: url(https://img.1958xy.com/img/user/userinfo/sprite_common.ie6.png);
    background-position: -90px -120px;
    background-repeat:  no-repeat;
    background-image: -webkit-image-set(url(https://img.1958xy.com/img/user/userinfo/sprite_common.png) 1x,url(https://img.1958xy.com/img/user/userinfo/sprite_common@2x.png) 2x);
    margin-top: -2px;
    vertical-align: middle;
}
.iconToday {
    height: 14px;
    background-position: -70px -120px;
}

.iconLastWeek {
    width: 10px;
    height: 10px;
    display: inline-block;
    background: url(https://img.1958xy.com/img/user/userinfo/sprite_common.png);
    _background: url(https://img.1958xy.com/img/user/userinfo/sprite_common.ie6.png);
    background-position: -90px -120px;
    background-repeat:  no-repeat;
    set(url(https://img.1958xy.com/img/user/userinfo/sprite_common.png) 1x,url(https://img.1958xy.com/img/user/userinfo/sprite_common@2x.png) 2x);
    margin-top: -2px;
    vertical-align: middle;
}

.scanList {
    margin-bottom: 20px;
    font-size: 0;
    letter-spacing: -5px;
}

.scanList .item {
    display: inline-block;
    width: 176px;
    height: 176px;
    margin: 10px;
    background: #f0f0f0;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}
.scanList .item:hover .iconClose,
.scanList .item:hover .iconPlay ,
.iconPlay:hover  {
    visibility: visible;
}

.scanList .item .imgBox,
.scanList .item .imgBox > img {
    width: 175px;
    height: 100px;
    display: block;
}

.iconClose {   
    position: absolute;
    top: 2px;
    right: 2px;
    width: 28px;
    height: 28px;
    line-height: 24px;
    font-size: 30px;
    font-style: normal;
    text-align: center;
    color: #eee;
    border-radius: 50%;
    background: rgba(0,0,0,.7);
    letter-spacing: normal;
    cursor: pointer;
    visibility: hidden;
}
.iconClose:hover {
    color: #ff7e0c;
    background: rgba(0,0,0,.7);
}
.iconClose:hover + .iconPlay {
    visibility: visible;
}
.iconPlay {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    cursor: pointer;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    margin-top: -36px;
    visibility: hidden;
}


.iconPlay.icon-bofang:hover:before {
    color: #ff7e0c;
}
.iconPlay.icon-bofang:before {
    content: "\e737";
    width: 40px;
    height: 40px;
    display: block;
    font-size: 40px;
    color: #fff;
   
}
.twoRow {
    font-size: 14px;
    width: auto;
    padding: 0 4px;
    margin-top: 5px;
    max-height: 42px;
    height: inherit;
    line-height: 20px;
    display: block;
    overflow: hidden;
    white-space: normal;
    letter-spacing: normal; 
    transition: color .1s ease-in-out; 
    -moz-transition: color .1s ease-in-out; 
    -o-transition: color .1s ease-in-out; 
    -webkit-transition: color .1s ease-in-out; 
}
.twoRow:hover > a {
    color: #ff7a0d;
}
.twoRow > a {
    color: #000;
    font-weight: 400;
    display: block;
    height: 100%;
}
.descp {
    position: absolute;
    left: 5px;
    bottom: 5px;
    color: #999;
    padding-left: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 88%;
    letter-spacing: normal;
    font-size: 12px;
    display: inline-block;
}
.iconPc {
    display: inline-block;
    vertical-align: top;
    width: 10px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 4px;
    background: url(https://img.1958xy.com/img/user/userinfo/sprite_common.png);
    _background: url(https://img.1958xy.com/img/user/userinfo/sprite_common.ie6.png);
    background-position: -10px -135px;
    background-repeat:  no-repeat;
    background-image: -webkit-image-set(url(https://img.1958xy.com/img/user/userinfo/sprite_common.png) 1x,url(https://img.1958xy.com/img/user/userinfo/sprite_common@2x.png) 2x);
}

.getMoreData {
    font-size: 14px;
    padding: 20px 0;
    text-align: center;
    color: #222;
}
.getMoreBtn,
.loading,
.records {
    color: #222;
}
.getMoreBtn:hover  {
    color: #ff7a0d;
}