*{
    margin: 0;
}
.netWork-page{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.netWork-page .banner-image img{
    width: 100%;
    height: 400px;

}
.netWork-page .content-box-title{
    margin-top: 20px;
    padding: 20px;
}
.netWork-page .content-box-title .first-title{
    font-weight: bold;
    font-size: 28px;
    color: #2F2B28;
    line-height: 22px;
    font-family: Arial;
}
.netWork-page .content-box-title .second-title{
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}
.netWork-page .content-box-title .second-title span{
    font-weight: 400;
    font-size: 18px;
    color: #266DD0;
    line-height: 22px;
    
}
.netWork-page .netWork-page-content{
    width: calc(100vw - 200px);
}
.netWork-page .content-box-title .second-title .party-active{
    color: #A40001;
}
.netWork-page .content-box-title .currentPage{
    font-weight: 400 !important;
    font-size: 12px !important;
    color: #8B8C8C !important;
    line-height: 22px;
}
.netWork-page  .content-tab{
    background: #F2F2F2;
    height: 41px;
    display: flex;
    align-items: center;
    margin-top: 24px;
    margin: 24px 20px;
    cursor: pointer;
}
.netWork-page  .content-tab .active{
    background-color:  #266DD0;
    color: #fff !important;
}
.netWork-page  .content-tab .party-active{
    background-color: #A40001;
    color: #fff;

}
.netWork-page .content-box .content-tab span{
    font-weight: 400;
    font-size: 16px;
    color: #363A3F;
    line-height: 22px;
    width: 134px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
} 
.netWork-page .content-tab span{
    font-weight: 400;
    font-size: 16px;
    color: #363A3F;
    line-height: 22px;
    width: 134px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
} 
/* 分页样式 */
/* 分页 */
.netWork-page #pagination{
    display: flex;
    justify-content: center;
}
.netWork-page #pagination .page-button{
    width: 30px;
    height: 30px;
    border: 1px solid #eee;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    margin-right: 10px;
}
.netWork-page #pagination .active{
    background: #266DD0;
    color: #fff;
}
/* 消息框 */
#messageBox {
    display: none;
}
 
#messageBox.visible {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
 
#messageBox .content .close {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}
 
#messageBox .hidden {
    display: none;
}