div {
    box-sizing: border-box;
}
.placeholder {
    height: 60px;
    clear: both;
}
/*body{*/
/*    font: 14px Helvetica Neue, Helvetica, PingFang SC, Tahoma, Arial, sans-serif;!important;*/
/*}*/

/*.more-nav-list{*/
/*    position: absolute;*/
/*    !*right: 39px;*!*/
/*    top:60px;*/
/*    width: 102px;*/
/*    height: auto;*/
/*    background: #fff;*/
/*    padding: 5px 0;*/
/*    border-radius: 0 0 4px 4px;*/
/*    box-shadow: 0 1px 12px 0 rgb(0 0 0 / 30%);*/
/*}*/
/*.more-nav-list li{*/
/*    width: 100%;*/
/*    height: 40px;*/
/*    line-height: 40px;*/
/*    text-align: center;*/
/*}*/
/*.more-nav-list li a {*/
/*    display: inline-block;*/
/*    width: 100%;*/
/*    height: 40px;*/
/*    line-height: 40px;*/
/*    font-size: 14px;*/
/*    text-align: center;*/
/*    color:#333;*/
/*    padding: 0;*/
/*}*/
/*.more-nav-list li a:hover{*/
/*    background:rgba(0,0,0,0.1);*/
/*    color: #666;*/
/*}*/


/*分页样式*/
.pagination-box {
    width: 100%;
    background-color: #fff;
    margin: 30px 0 20px 0;
    height: 60px;
    line-height: 60px;
    text-align: center;
}
.pagination{
    width: 100%;
    min-height:40px;
    height: auto;
    /*padding:20px 0;*/
    margin: 0 auto!important;
    text-align: center;
}
.pagination a{
    display:inline-block;
    margin-right:12px;
    height:24px;
    border:1px #cccccc solid;
    background:#fff;
    text-decoration:none;
    color:#808080;
    font-size:12px;
    line-height:24px;
    margin-top: 3px;
    padding: 2px 16px;
    border-radius: 8px;
    box-sizing: unset;
}
.pagination input.public-page-input{
    margin-right:12px;
    width: 30px;
    padding:4px 6px;
    height:24px;
    border:1px #cccccc solid;
    font-size:12px;
    line-height:24px;
    border-radius: 4px;
    margin-top: 3px;
    text-align: center;
    background: #eeeeee;
}
.pagination input.public-page-back{
    display:inline-block;
    margin-right:12px;
    width: 46px;
    height:34px;
    border:1px #cccccc solid;
    background:#fff;
    color:#808080;
    font-size:12px;
    line-height:24px;
    border-radius: 4px;
    margin-top: 3px;
    cursor: pointer;
}
.pagination input.public-page-back:hover{
    color:#ff003c;
    border:1px #ff003c solid;
}
.pagination a:hover{
    color:#ff003c;
    background: white;
    border:1px #ff003c solid;
}
.pagination a.cur{
    border:1px #ff003c solid;
    background:#ff003c;
    color:#fff;
}
.pagination p{
    display: inline-block;
    padding:4px 18px;
    font-size:12px;
    height:24px;
    line-height:24px;
    color:#bbb;
    border:1px #ccc solid;
    background:#fcfcfc;
    margin:3px 12px 0 0;
    border-radius: 4px;
    cursor:pointer
}
.pagination p.pageRemark{
    border-style:none;
    background:none;
    margin-right:0;
    padding:4px 0;
    color:#666;
    font-size: 14px;
}
.pagination p.pageRemark b{
    color:black;
    font-weight: inherit;
}
.pagination p.pageEllipsis{
    border-style:none;
    background:none;
    padding:4px 0;
    color:#808080;
}

/*内容空盒子*/
.empty-content-box{
    width: 100%;
    height: 400px;
    border-radius: 4px;
    background: #ffffff;
}
.empty-content-img{
    width: 400px;
    height: 280px;
    margin: 0 auto;
    background: url(./../../img/empty-content.png)center bottom no-repeat;
    background-size: 262px 207px;
}
.empty-content-box p {
    text-align: center;
    margin: 20px 0 10px 0;
    font-size: 16px;
}
.empty-content-box a{
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #4fabd6;
}


/* 弹窗内容 */
.open-prompt {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
.open-prompt .prompt-content {
    margin: 15% auto;
    width: 600px;
    height: 380px;
    border-radius: 4px;
    background-color: #ffffff;
    border: solid 1px #e6e6e6;
    box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.3);
}
.open-prompt .prompt-title {
    text-align: center;
    font-size: 14px;
    height: 54px;
    line-height: 54px;
    text-indent: 35px;
    /*border-bottom: 1px solid #e6e6e6;*/
    color: #666;
}
.open-prompt .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    margin-right: 20px;
    margin-top: 7px;
}
.open-prompt .close:hover,
.open-prompt .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}