/* 内容 */
.mainBox{
    width: 100%;
    height: 680px;
    background: url('../images/bg.png') no-repeat center;
}
.main{
    width: 1204px;
    height: 680px;
    margin: 0 auto;
    background: url('../images/content.png') no-repeat center;
}

.navBar{
    width: 1002px;
    height: 50px;
    background: url('../images/bar.png') no-repeat center;
    margin: 0 auto;
    line-height: 50px;
    font-size: 14px;
    text-indent: 50px;
    color: rgb(49, 156, 212);
}
.navBar a{
    font-size: 14px;
    color: rgb(49, 156, 212);
}
.navBar span{
    font-family: 'consolas';
    margin: 0 5px;
}

.box{
    width: 1002px;
    height: 580px;
    border: 1px solid rgb(214, 214, 214);
    margin: 20px auto;
    background: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.type{
    width: 181px;
    height: 580px;
    border-right: 1px solid rgb(214, 214, 214);
    background: rgb(249, 248, 246);
}
.type div{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgb(214, 214, 214);
    cursor: pointer;
    user-select: none;
    border-left: 5px solid transparent;
    transition: all 0.3s;
}
.type div a {
    padding-left: 40px;
    height: 35px;
    line-height: 35px;
}
.type div#submenu1 a {
    background: url(../images/newsannouncenormal.png) no-repeat;
}
.type div#submenu1.current a {
    background: url(../images/newsannounceactive.png) no-repeat;
}
.type div#submenu2 a {
    background: url(../images/newsactivitiesnormal.png) no-repeat;
}
.type div#submenu2.current a {
    background: url(../images/newsactivitiesactive.png) no-repeat;
}

.type div#faqmenu1 a, .type div#faqmenu1.current a {
    background: url(../images/3.png) no-repeat;
    line-height: 28px;
}
.type div#faqmenu2 a, .type div#faqmenu2.current a {
    background: url(../images/4.png) no-repeat;
    line-height: 28px;
}
.type div#faqmenu3 a, .type div#faqmenu3.current a {
    background: url(../images/5.png) no-repeat;
    line-height: 28px;
}

.type div img{
    width: 30px;
    margin-right: 15px;
}
.type div p{
    font-size: 16px;
    color: rgb(126, 126, 126);
}
.type div.current{
    background: rgb(255, 255, 255);
    border-left: 5px solid rgb(250, 82, 4);
}
.type div.current p{
    color: rgb(250, 82, 4);
}
.list{
    width: 780px;
    height: 540px;
    padding: 20px;
}
.list .item{
    padding: 20px;
    border-bottom: 1px dashed rgb(219, 219, 219);
}
.list .item p:first-child{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.list .item p:first-child a{
    display: block;
    width: 600px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: rgb(49, 156, 212);
    font-size: 16px;
}
.list .item p:first-child a img{
    width: 40px;
}
.list .item p:first-child a:hover{
    text-decoration: underline;
}
.list .item p:first-child span{
    color: rgb(165, 165, 165);
    font-size: 14px;
}
.list .item p:last-child{
    display: block;
    width: 600px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    color: rgb(165, 165, 165);
    padding-top: 10px;
}
.nodata{
    font-size: 14px;
    color: rgb(165, 165, 165);
}
.pagelist{
    text-align: right;
    margin-top: 30px;
}
.pagelist a{
    color: rgb(126, 126, 126);
}
.pagelist span{
    display: inline-block;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    background: rgb(224, 224, 224);
    font-size: 12px;
    cursor: pointer;
    transition: all .3s;
    border-radius: 3px;
}
.pagelist span:hover{
    background: rgb(244, 106, 39);
    color: rgb(255, 255, 255);
}
.pagelist span.currentPage{
    background: rgb(244, 106, 39);
    color: rgb(255, 255, 255);
}

.log{
    width: 780px;
    height: 540px;
    padding: 20px;
    overflow-y: auto;
}
/* 自定义滚动条 */
.log::-webkit-scrollbar {
    width : 10px;
    height: 1px;
}
.log::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: rgb(233, 233, 233);
}
.log::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: rgb(255, 255, 255);
}
.logTitle{
    text-align: center;
    font-size: 20px;
    color: rgb(83, 83, 83);
}
.logContent{
    padding: 20px;
    font-size: 14px;
    color: rgb(97, 97, 97);
    line-height: 28px;
}
.logContent p{
    padding: 8px 0;
}
.logTime{
    padding: 0 20px;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    color: rgb(172, 172, 172);
}