body{background-color: #f9f9f9;}

#headerBox{
    width: 100%;
    height:56px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    z-index: 100;
    overflow: hidden;


}
.article-header{
    width: 100%;
    height: 56px;
    margin-top: 56px;
    z-index: 0;
}
.article-header-inner{
    box-sizing: content-box;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
    display: flex;
    justify-content: space-between;
    height: 56px;
}
.article-header-title{
    overflow: hidden;
    padding: 0 24px;
    max-width: 730px;
    align-items: center;
    height: 56px;
    line-height: 56px;
    font-size: 24px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-rendering: optimizelegibility;
}
.article-header-action{
    display: flex;
    align-items: center;
    height: 56px;
    flex-shrink: 0;
}
.article-header-action-author{
    display: inline-flex;
    align-items: center;
}
.article-header-action-author span:first-child{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}
.article-header-action-author span:last-child{
    color: #7d7d7d;
    margin: 0 10px;
}
.article-header-btns{
    position: relative;
    flex-shrink: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    user-select: none;
    transition: all .2s cubic-bezier(.645,.045,.355,1);
    font-size: 14px;
    padding: 4px 12px;
}
.article-header-action-follow{
    color: #ec7259;
    background-color: #fff;
    border:1px solid #ec7259;
}
.article-header-action-support{
    color: #fff;
    background-color: #ec7259;
    border:1px solid #ec7259;
    margin-left: 8px;
}
.header-space{height: 56px;background: transparent;}
.headerSwitch{
    animation: headerSwitch .3s ease-in;
    animation-fill-mode:forwards;
}
.headerRecovery{
    animation: headerRecovery .3s ease-in;
    animation-fill-mode:forwards;
}



.main{

}
.main-inner{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100vh - 66px);
    padding-top: 10px;
    font-size: 16px;
    box-sizing: content-box;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
}
.main-content{
    flex-shrink: 0;
    margin-bottom: 24px;
    margin-right: 10px;
    width: 730px;
}
.main-content-slide{
    padding: 32px;
    background-color: #fff;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 16px;
}
.main-article-title{
    font-size: 30px;
    font-weight: 700;
    word-break: break-word;
    color: #404040;
    text-rendering: optimizelegibility;
    margin-bottom: 0.5em;
}
.main-article-author{
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 32px;
    font-size: 13px;
}
.main-article-author-photo{
    display: block;
    border-radius: 50%;
    border: 1px solid #eee;
    min-width: 50px;
    min-height: 50px;
    width: 50px;
    height: 50px;
    overflow: hidden;
}
.main-article-author-photo img{
    object-fit: cover;
}
.main-article-author-more{
    margin-left: 8px;
}
.main-article-author-more p:first-child{
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    z-index: 2;
}
.main-article-author-more-name{
    font-size: 16px;
    font-weight: 500;
    margin-right: 8px;
}
.main-article-author-more-medal{
    flex-shrink: 0;
    margin-right: 8px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
}
.main-article-author-more-medal span{
    width: 90px;
    font-size: 14px;
    background: rgba(0,0,0,1);
    border-radius: 5px;
    color: #fff;
    padding: 5px 10px;
    position: absolute;
    left: -70%;
    top: 25px;
    display: none;

}
.main-article-author-more-medal span:after {
    content: '';
    position: absolute;
    left: 22%;
    top: -18px;
    transform: translateX(-50%);
    border-left:10px solid transparent;
    border-right:10px solid transparent;
    border-top:10px solid transparent;
    border-bottom:10px solid rgba(0,0,0,1);
}
.main-article-author-more-medal:hover .main-article-author-more-medal-span{
    display: block;
}



.main-article-author-more-follow{
    padding: 2px 9px;
    font-size: 12px;
    color: #ec7259;
    background-color: #fff;
    border:1px solid #ec7259;
}
.main-article-author-more p:last-child{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-article-author-more p:last-child span{
    color: #969696;
    font-size: 13px;

}
.main-article-author-more p:last-child span:nth-of-type(1){
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ec7259;

}
.main-article-author-more p:last-child span:nth-of-type(1) i{
    font-size: 18px;
    margin-right: 3px;
    transform: translateY(-1px);

}
.main-article-author-more p:last-child span:nth-of-type(2){
    margin-right: 10px;
}
.main-article-author-more p:last-child span:nth-of-type(3){
    margin-right: 10px;
}
.main-article-author-more p:last-child span:nth-of-type(4){

}
.main-article-detail{
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 20px;
    word-break: break-word;
    position: relative;
}
.main-article-action{
    justify-content: space-between;
    font-size: 14px;
    color: #969696;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
}
.main-article-action>div{
    display: flex;
    align-items: center;
}
.main-article-action-left span{
    margin-right: 12px;
    display: flex;
    align-items: center;
}
.main-article-action-left:first-child span a:first-child,.main-article-action-left>a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #969696;
    border: 1px solid #eee;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}
.main-article-action-left span a:last-child{
    margin-left: 8px;
    justify-content: space-between;
    font-size: 14px;
    color: #969696;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.main-article-action-left>a{
    transform: rotateX(180deg);
}
.main-article-action-right{
    display: flex;
    align-items: center;
}
.main-article-action-right>a{
    margin-right: 12px;
    display: flex;
    align-items: center;
    color: #969696;
}
.main-article-action-right>a i{
    display: inline-block;
    color: inherit;
    font-style: normal;
    line-height: 0;
    text-align: center;
    text-transform: none;
    vertical-align: -0.125em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}
.main-article-action-right>a span{
    margin-left: 5px;
    color: #969696;
}
.main-article-action-right-more>a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #969696;
    border: 1px solid #eee;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}
.main-article-action-right-more-box{
    position: absolute;
    bottom:45px;
    left: 0;
    margin-left:-50%;
    background: #fff;
    padding: 4px 0;
    border-radius: 4px;
    outline: none;
    -webkit-box-shadow: 0 2px 8px rgba(0,0,0,.15);
    box-shadow:  0 2px 8px rgba(0,0,0,.15);
    -webkit-transform: translateZ(0);
    transform: scale(.6);
    z-index: -1;
    opacity: 0;

}
.main-article-action-right-more-box a{
    display: block;
    padding: 8px 12px;
    color: #666;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.main-article-action-right-more-box a:hover{
    background-color: #f2f2f2;
}
.main-article-action-right-more-box a span{
    color: #666;
}
.main-article-action-right-more-box a i{
    font-size: 12px;
}
.main-article-action-right-more-share{
    position: absolute;
    top:0;
    right: -105%;
    background: #fff;
    padding: 4px 0;
    border-radius: 4px;
    outline: none;
    -webkit-box-shadow: 0 2px 8px rgba(0,0,0,.15);
    box-shadow:  0 2px 8px rgba(0,0,0,.15);
    -webkit-transform: translateZ(0);
    transform: scale(.6);
    z-index: -1;
    opacity: 0;
}
.main-article-action-right-more-share a{
    display: block;
}
.article-more-author{
    display: flex;
    align-items: center;
    background-color: #fafafa;
    border-radius: 4px;
    padding: 12px 16px;
}
.article-more-author .main-article-author{
    margin-bottom: 0;
}

.article-more-author-flow a{
    color: #ec7259;
}
.article-more-author-flow{
    position: absolute;
    right:16px;
    top: 50%;
    transform: translateY(-50%);
}
.article-more-author-brief{
    font-size: 14px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.article-more-author .main-article-author-more p:last-child span:nth-of-type(1){
    color: #969696;
}
.article-more-author .main-article-author-more p:last-child span{
    margin: 0;
    font-size: 14px;
}
.article-more-action{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 16px 0 32px;
}
.article-more-action p:nth-of-type(1){
    color: #ea6f5a;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    width: 100%;
}
.article-more-action div:nth-of-type(1){
    text-align: center;
    margin: 16px 0 6px;
}
.article-more-action div:nth-of-type(1) img{
    width: 200px;
    height: 70px;
}
.article-more-action p:nth-of-type(2){
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
}
.article-more-action-support{
    font-size: 16px;
    padding: 8px 16px;
}
.article-more-action p:nth-of-type(3){
    color: #666;
    margin-top: 24px;
}
/*推荐文章*/
.article-recommend-special{

}
.article-block-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 4px solid #ec7259;
    font-size: 18px;
    font-weight: 500;
    height: 20px;
    line-height: 20px;
}
.article-recommend-item-box{
    display: flex;
    flex-wrap: wrap;
}
.article-recommend-item{
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-right: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    background-color: #f5f5f5;
    padding: 5px 10px 5px 5px;
    border-radius: 4px;
}
.article-recommend-item img{
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    border-radius: 2px;
}
.article-recommend-item span{
    font-size: 14px;
    line-height: 20px;
}
.article-recommend-list .article-block-title{
    overflow: hidden;
}
.article-recommend-list .article-block-title a{
    float: right;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: normal;
    line-height: 18px;
}
.article-block-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}
.article-block-item-info{
    overflow: hidden;
}
.article-block-item-title{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #404040;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.article-block-item-abstract{
    font-size: 14px;
    color: #666;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.article-block-item-author{
    margin-top: 8px;
    display: flex;
    align-items: center;
}
.article-block-item-author a{
    display: flex;
    align-items: center;
}
.article-block-item-author a img{
    width: 24px;
    height: 24px;
    margin-right: 4px;
    border-radius: 50%;
}
.article-block-item-author a span{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
    color: #969696;
}
.article-block-item-author>span{
    margin-left: 12px;
    font-size: 13px;
    color: #969696;
}
.article-block-item-photo{
    display: block;
    flex-shrink: 0;
    width: 150px;
    height: 120px;
    border-radius: 4px;
    border: 1px solid hsla(0,0%,50.2%,.1);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
}
.article-block-pic-item .article-block-item-info{
    padding-right: 170px;
}










.main-author{
    flex-shrink: 0;
    width: 260px;
}



















.main-tool{
    position: fixed;
    z-index: 98;
    top: 216px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    left: calc((100vw - 1000px)/2 - 78px);
}
.main-tool-btn{
    position: relative;
    flex-direction: column;
    margin-bottom: 16px;
    cursor: pointer;
    color: #969696;
    display: flex;
    align-items: center;
}
.main-tool-btn span:first-child{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 18px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    background-color: #fff;
    color: #969696;
}
.main-tool-btn i{
    font-size: 24px;
}
.main-tool-btn span:last-child{
    display: block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 14px;
    text-align: center;
    color: #969696;
    margin-top: 4px;
    overflow: hidden;
}
.main-tool-btn i{
    font-size: 30px;
    color: #ea6f5a;
}
.main-tool-btn-inner span{
    margin-left: auto;
    margin-right: auto;
}
.main-tool-btn-tips-box{
    position: absolute;
    left: 100%;
    top: 0;
    padding-left: 20px;
    transform: scale(0);
    z-index: -1;
    opacity: 0;
}

.main-tool-btn-tips-box:after {
    content: '';
    position: absolute;
    left:-5px;
    top:15px;
    border-left:30px solid transparent;
    border-bottom:30px solid transparent;
    border-top:30px solid transparent;
    border-right:30px solid rgba(0,0,0,.15);
    z-index: -1;
    filter: blur(5px);
    opacity: .8;
}
.main-tool-btn-tips-line {
    content: '';
    position: absolute;
    left:-5px;
    top:25px;
    transform:translateY(-50%);
    border-left:13px solid transparent;
    border-bottom:13px solid transparent;
    border-top:13px solid transparent;
    border-right:13px solid #ffffff;
    z-index: 2;
}
.main-tool-btn-tips{
    padding: 5px 5px;
    background: #ffffff;
    border-radius: 10px;
    outline: none;
    -webkit-box-shadow: 0 2px 8px rgba(0,0,0,.15);
    box-shadow:  0 2px 8px rgba(0,0,0,.15);
    -webkit-transform: translateZ(0);
}
.main-tool-btn-tips p{
    font-size: 12px;
    color: #ec7259;
    display: block;
    text-align: center;
    margin-bottom: 10px;

}
.main-tool-btn-tips img{
    width: 300px;
    height: 300px;
    display: block;
    border-radius: 10px;
}
.main-author-block{
    padding: 16px;
}
.main-author-top-info .main-article-author{
    margin-bottom: 0;
}
.main-author-top .article-separate{
    margin: 16px 0;
}
.main-author-top-info .main-article-author-more{
    width: 100%!important;
}
.main-author-top-info .main-article-author-more p{
    width: 100%!important;
}
.main-author-top-info p:last-child{
    color: #969696;
    font-size: 12px;
}
.main-author-top-info .main-article-author-more-follow{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.main-author-top-article-list-item{
    margin-top: 16px;
}
.main-author-top-article-list-item a{
    font-size: 14px;
    line-height: 22px;
    color: #2d2d2d;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.main-author-top-article-list-item span{
    font-size: 12px;
    color: #969696;
}
.main-author-title{
    font-size: 16px;
    padding-left: 6px;
    height: 18px;
}
.main-author-hot-list-item{
    font-size: 14px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 12px;
}
.main-author-hot-list .main-author-hot-list-item:last-child {
    margin-bottom: 0;
}
.main-author-blade{
    position: fixed;
    top: 66px;
    width: 260px;
    height: 589.703px;
}














#backTop{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgba(0,0,0,.65);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5;
    list-style: none;
    -webkit-font-feature-settings: "tnum","tnum";
    font-feature-settings: "tnum","tnum";
    position: fixed;
    right: 100px;
    z-index: 10;
    width: 40px;
    height: 40px;
    cursor: pointer;
    bottom: 96px;
}
#backTop a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #8c8c8c;
    font-size: 18px;
    box-shadow: 0 1px 3px rgba(26,26,26,.1);
    background-color: #fff;
    transform: rotateX(180deg);
}
#backTop a i{
    font-size: 13px;
}


.showBar{
    animation: showBar .2s ease-in-out;
    animation-fill-mode:forwards;
}
.hideBar{
    animation: hideBar .2s ease-in-out;
    animation-fill-mode:forwards;
}
.showBarShare{
    animation: showBar .2s ease-in-out;
    animation-fill-mode:forwards;
    transform-origin: 0 0;
}
.hideBarShare{
    animation: hideBar .2s ease-in-out;
    animation-fill-mode:forwards;
    transform-origin: 0 0;
}
.showBarMore{
    animation: showBar .2s ease-in-out;
    animation-fill-mode:forwards;
    transform-origin: 50% 100%;
}
.hideBarMore{
    animation: hideBar .2s ease-in-out;
    animation-fill-mode:forwards;
    transform-origin: 50% 100%;
}
.showTipsBar{
    animation: showBar .2s ease-in-out;
    animation-fill-mode:forwards;
    transform-origin: 0 0;
}
.hideTipsMore{
    animation: hideBar .2s ease-in-out;
    animation-fill-mode:forwards;
    transform-origin: 0 0;
}
@keyframes headerSwitch {
    0%{transform: translateY(0%);z-index: -1;opacity: 0;}
    100%{transform: translateY(-100%);z-index: 1031;opacity: 1;}
}
@keyframes headerRecovery {
    0%{transform: translateY(-100%);z-index: 1031;opacity: 1;}
    100%{transform: translateY(0%);z-index: -1;opacity: 0;}
}
@keyframes headerSwitchNav {
    0%{transform: translateY(0%);z-index: 1031;opacity: 1;}
    100%{transform: translateY(-100%);z-index: -1;opacity: 0;}
}
@keyframes headerRecoveryNav {
    0%{transform: translateY(-100%);z-index: -1;opacity: 0;}
    100%{transform: translateY(0%);z-index: 1031;opacity: 1;}
}
@keyframes showBar {
    0%{transform: scale(0);z-index: -1;opacity: 0;}
    100%{transform: scale(1);z-index: 1031;opacity: 1;}
}
@keyframes hideBar {
    0%{transform: scale(1);z-index: 1031;opacity: 1;}
    100%{transform: scale(0);z-index: -1;opacity: 0;}
}
.headerSwitchNav{
    animation: headerSwitchNav .3s ease-in;
    animation-fill-mode:forwards;
}
.headerRecoveryNav{
    animation:headerRecoveryNav  .3s ease-in;
    animation-fill-mode:forwards;
}


.nav{border: 0;}
.main-left-footer a{
    font-size: 13px;
}
.main-left-footer .main-left-footer-copy{
    font-size: 13px;
}
