/* 头部 */
.pc-nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 999;
}
.pc-nav .area{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pc-nav .area .n_items{
    width: 78%;
}
.pc-nav .area .n_items ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pc-nav .area .n_items li{
    padding: 0 7px;
    line-height: 80px;
    position: relative;
}
.pc-nav .area .n_items li a{
    display: inline-block;
    height: 100%;
    font-size: 18px;
	color: #ffffff;
}
.pc-nav .area .logo{
    width: 16.16%;
}
.pc-nav .area .n_items li::before{
    content: "";
    display: block;
    width: 0;
    height: 4px;
	background-color: #ffffff;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    transition: all .3s linear;
}
.pc-nav .area .n_items li:hover::before{
    width: 100%;
}
.n-active::before{
    width: 100% !important;
}
/* 头部结束 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    border-radius: 4px; }
.pagination > li {
    display: inline; }
.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857;
    text-decoration: none;
    color: #002fa7;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px; }
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px; }
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px; }
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eeeeee;
    border-color: #ddd; }
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    background-color: #002fa7;
    border-color: #002fa7;
    cursor: default; }