body{
    background-color: #F9F9FA;
}
.top-nav{
    position: sticky;
    top: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.nav-logo{
    width: 240px;
}
.top-nav-user{
    height: 100%;
}
.top-nav-user-dropdown{
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.top-nav-user:hover .top-nav-user-dropdown{
    display: block !important;
}
/* 首页 */
.in-box{
    padding: 50px 0;
}
/* 文章列表 */
.goodcont{
    position: sticky;
    top: 60px;
}
.goodlist{
    border-bottom: 1px solid #EBEBEB;
}
.goodlist:last-child{
    border-bottom: none;
}
/*流程列表*/
.cloud-nav{
    position: sticky;
    top: 60px;
    z-index: 999;
}
.cloud-part-li{
    border-radius: 8px;
    box-shadow: 0 0 3px 0 rgba(0,0,0,.1);
    transition: 100ms ease-out !important;
}
.cloud-part-li:hover{
    transform: translate3d(0,-10px,0);
    box-shadow: 0 12px 30px 0 rgba(0,0,0,.2);
    transition-property: box-shadow,transform;
    transition-timing-function: cubic-bezier(.16,1,.29,.99);
}
/* 流程详情 */
.course-nav-box{
    height: 50px !important;
}
.course-nav{
    /*font-size: 17px !important;*/
    line-height: 50px !important;
    height: 50px !important;
    padding: 0 20px !important;
}
.course-nav.layui-this{
    font-weight: bolder;
    background-color: #f60;
    color: #fff !important;
}
.course-nav.layui-this:after{
    border-bottom: 2px solid #f60 !important;
    height: 50px !important;
}
.course-dombox{
    position: relative;
}
.course-domcont{
    display: none !important;
    position: absolute;
    top: 36px;
    z-index: 9;
    background: #fff;
    box-shadow: 0 0 3px 0 rgba(0,0,0,.1);
}
.course-domcont a{
    border-bottom: 1px solid #EBEBEB;
}
.course-domcont a:last-child{
    border-bottom: none;
}
.course-dombox:hover .course-domcont{
    display: flex !important;
}
/*商品页面*/
.shop-label{
    width: 100px;
    padding-right: 10px;
    text-align: right;
}
.shop-editnum {
    width: 28px;
    line-height: 28px;
    text-align: center;
    border: 1px solid #dfdfdf;
    cursor: pointer;
}
.shop-file-li{
    border-bottom: 1px solid hsl(0,0%,91%);
}
.charge-box .shop-file-li:last-child{
    border-bottom: none;
}
.kefu-li{
    padding: 10px;
}

.list-nav{
    font-weight: bolder;
    font-size: 15px;
    cursor: pointer;
    transition: 100ms ease-out;
}
.list-nav.open{
    border-bottom: 2px solid #0a8;
    color: #0a8;
}

.doc-title{
    background: rgba(0,0,0,.5);
    width: 100%;
    height: 100%;
    display: none;
    transition: 500ms ease-out;
}
.doc-li:hover .doc-title{
    display: flex;
}
.doc-picbox{
    width: 200px;
    flex-grow: 0;
}
.doc-contbox{
    padding-left: 20px;
    flex-grow: 2;
}
.doc-list-li{
    border-bottom: 1px dotted #dedede;
}
.doc-list-li:last-child{
    border-bottom: none;
}
.doc-body{
    height: 100vh;
    overflow: hidden;
}
.doc-left,.doc-right{
    height: 100%;
    overflow: hidden;
    transition: all .5s ease;
}
.doc-left{
    position: fixed;
    width: 300px;
    left: 0;
    top: 0;
    bottom: 0;
    border-right: 1px solid #ddd;
}
.doc-left.open{
    transform: translateX(-300px);
}
/*左侧LOGO*/
.doc-left-title{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 10px;
}
.doc-left-box{
    height: calc(100vh - 100px);
    overflow: auto;
}
/*左侧菜单*/
.doc-nav-li:hover{
    background-color: rgba(0,0,0,.03);
}
.doc-nav-li.active{
    background-color: rgba(0,0,0,.05);
}
/*右侧文档*/
.doc-right{
    position: relative;
    width: calc(100% - 300px);
    left: 300px;
}
.doc-right.open{
    width: 100%;
    left: 0;
}
.doc-right-top-icon{
    transition: all .5s ease;
}
.doc-right-top-icon.open{
    transform: rotateY(180deg);
}
.doc-cont{
    height: calc(100vh - 45px);
    overflow: hidden;
    background-color: #fff;
}
.doc-cont-box{
    height: 100%;
    overflow-y: auto;
}

.runend-item{
    padding: 10px 0;
    border-bottom: 1px dotted #dedede;
}