﻿
body {
    margin: 0;
    padding: 0;
    border: 0 none;
    font-family: "微软雅黑";
    background-color: #fff;
}
/*包含以下四种的链接*/
a {
    text-decoration: none;
    color: #000;
}
    /*正常的未被访问过的链接*/
    a:link {
        text-decoration: none;
        color: #000;
    }
    /*已经访问过的链接*/
    a:visited {
        text-decoration: none;
        color: #000;
    }
    /*鼠标划过(停留)的链接*/
    a:hover {
        text-decoration: none;
        color: #000;
    }
    /* 正在点击的链接*/
    a:active {
        text-decoration: none;
        color: #000;
    }


.header_title {
    width: 100%;
    padding-left: 10px;
    border-left: 2px solid #00a8c5;
    color: #333;
    font-size: 16px;
    overflow: hidden;
    font-weight: 600;
}


/*分页标签*/
.pagearea {
    margin: 15px 10px;
}

.pageitem {
    padding: 0 10px;
    border: 1px solid #00a8c5;
    margin: 5px 10px;
    line-height: 25px;
    height: 25px;
    display: inline-block;
}

    .pageitem.action, .pageitem:hover {
        color: #fff;
        background: #00a8c5;
        cursor: pointer;
    }