@charset "UTF-8";
body {
    font-family: 'Open Sans', 'Microsoft YaHei', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

html,
body,
div,
span,
applet,
object,
iframe,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0px;
    border: 0;
    font-size: 100%;
    outline: none;
}

ul,
li,
ol {
    list-style: none;
}

table,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    margin: 0 auto!important;
}

caption,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0px;
}

a {
    text-decoration: none;
}

a:link,
a:visited {
    text-decoration: none;
}

a:active,
a:hover {
    text-decoration: none;
}

.clearfix:before,
.clearfix:after {
    display: table;
    content: "";
    line-height: 0px;
}

.clearfix:after {
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.container {
    position: relative;
    width: 1360px;
    margin: 0 auto;
}


/* 等比填充 */

*[class*="rect-"] {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    overflow: hidden;
}

*[class*="rect-"] .full {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    *height: auto;
}

.rect-50 {
    padding-bottom: 50%;
}

.rect-67 {
    padding-bottom: 67%;
}

.imgZoom img,
.imgY180 img {
    -moz-transition: all .5s ease 0s;
    -ms-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    -webkit-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
}

.imgZoom {
    overflow: hidden;
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.imgZoom:hover img {
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.imgY180:hover img {
    cursor: pointer;
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg)
}
@media screen and (min-width: 1280px) and (max-width: 1360px) {
    .container {
        width: 96%;
    }
}

/* header */

.header {
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 999;
}

.header .headerTop {
    position: relative;
}

.header .headerTop .container {
    display: flex;
    height: 100%;
    flex-direction: row;
    justify-content: space-between;
}

.header .headerTop .logo {
    position: relative;
    margin: 17px 0;
}

.header .headerTop .logo img {
    height: 65px;
}

.header .headerTop .so_search {
    position: relative;
    float: right;
    width: 22%;
    height: 38px;
    margin: 31px 0;
    border-radius: 20px;
    background: #f0f5fa;
}

.header .headerTop .so_search .search {
    position: relative;
}

.header .headerTop .so_search .search .search-txt {
    float: left;
    width: 82%;
}

.header .headerTop .so_search .search input {
    padding: 0 5%;
    color: #333;
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    line-height: 38px;
    background: none;
    box-sizing: border-box;
}

.header .headerTop .so_search .search .search-btn {
    float: right;
    width: 46px;
    height: 38px;
}

.header .headerTop .so_search .search button {
    background: url(../img/so.png) center no-repeat;
    width: 46px;
    height: 38px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    outline: none;
}

.header .nav {
    width: 100%;
    position: relative;
    height: 60px;
    background: #065fb1;
}

.header .nav_c>ul>li {
    float: left;
    line-height: 60px;
    width: 11.111111%;
    text-align: center;
    position: relative;
    display: flex;
    align-content: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header .nav_c>ul>li>a {
    display: block;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
}

.header .nav_c>ul>li::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background: #065fb1;
    right: 1px;
    top: 0;
}

.header .nav_c>ul>li::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background: #065fb1;
    right: 0;
    top: 0;
}

.header .nav_c>ul>li:hover,
.header .nav_c>ul>li.active {
    background: #07569f;
}

.header .nav_c .sub {
    display: none;
    width: 100%;
    left: 0;
    top: 60px;
    z-index: 9999;
    border-top: 4px #e2e418 solid;
    position: absolute;
    background: #065fb1;
}

.header .nav_c .sub li {
    zoom: 1;
    width: 100%;
    position: relative;
}

.header .nav_c .sub li:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .2);
}

.header .nav_c .sub a {
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 45px;
    margin: 0;
}

.header .nav_c .sub li:hover {
    background: #07569f;
}

.station {
    width: 100%;
    height: 162px;
}


/* banner */

.banner {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.banner .bd {
    position: relative;
    z-index: 0;
    margin: 0 auto;
    overflow: hidden;
}

.banner .bd li {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.banner .bd li img {
    width: 100%;
    vertical-align: top;
}

.banner .hd {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
}

.banner .hd li {
    display: inline-block;
    *display: inline;
    zoom: 1;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    line-height: 999px;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
}

.banner .hd .on {
    width: 28px;
    background: #065fb1;
}

.banner .prev,
.banner .next {
    display: none;
    position: absolute;
    z-index: 1;
    top: 50%;
    margin-top: -32px;
    left: 8%;
    z-index: 1;
    width: 40px;
    height: 64px;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: 0.5;
}

.banner .next {
    left: auto;
    right: 8%;
    background-position: -40px 0;
}


/* Inpart */

.Inpart {
    width: 100%;
    position: relative;
    padding: 60px 0;
    background: #fff;
}

.Innews {
    width: 65%;
    float: left;
}

.Innews .top {
    margin-bottom: 20px;
    border-bottom: 2px #dddddd solid;
}

.Innews .top .title {
    float: left;
    font-size: 32px;
    color: #333333;
}

.Innews .top .hd {
    float: right;
}

.Innews .top .hd li {
    position: relative;
    float: left;
    font-size: 18px;
    color: #333;
    margin-right: 50px;
    line-height: 45px;
    font-weight: bold;
    cursor: pointer;
}

.Innews .top .hd li:last-child {
    margin-right: 0;
}

.Innews .top .hd li.on {
    color: #065fb1;
}

.Innews .top .hd li.on:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 3px;
    left: 0;
    bottom: -2px;
    background: #065fb1;
}

.Innews .top .hd li.on::after {
    position: absolute;
    content: '';
    left: 50%;
    bottom: -1px;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    border: 3px solid transparent;
    border-bottom: 6px solid #065fb1;
}

.Innews .top .more {
    float: right;
    line-height: 50px;
    font-size: 14px;
    color: #065fb1;
}

.Innews .newsTab {
    width: 100%;
    position: relative;
}

.Innews .newsTab .bd {
    width: 100% !important;
    height: auto !important;
}

.Innews .newsTab .bd .Newsitem {
    width: 100% !important;
}

.Innews .Imgnews {
    position: relative;
    width: 46%;
    float: left;
}

.Innews .Imgnews .item {
    position: relative;
}

.Innews .Imgnews .item p {
    position: relative;
    width: 100%;
    padding: 0 1%;
    height: 55px;
    line-height: 55px;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
}

.Innews .Imgnews .item .tic {
    position: absolute;
    bottom: 30px;
    width: 92%;
    padding: 0 4%;
    z-index: 22;
}

.Innews .Imgnews .item .tic dd {
    float: left;
    font-size: 15px;
    color: #fff;
}

.Innews .Imgnews .item .tic span {
    float: right;
    font-size: 16px;
    color: #fff;
}

.Innews .newsList {
    width: 51.5%;
    float: right;
}

.Innews .newsList li {
    position: relative;
    width: 100%;
    height: 45px;
    line-height: 45px;
    border-bottom: 1px #ccc dashed;
}

.Innews .newsList li a {
    display: block;
    float: left;
    max-width: 72%;
    font-size: 16px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.Innews .newsList li span {
    font-size: 15px;
    float: right;
    color: #999;
}

.Innews .newsList li:hover a {
    color: #065fb1;
    font-weight: bold;
}

.Inabout {
    position: relative;
    width: 31%;
    float: right;
}

.Inabout .top {
    height: 45px;
    margin-bottom: 20px;
    border-bottom: 2px #dddddd solid;
}

.Inabout .top .title {
    float: left;
    font-size: 32px;
    color: #333333;
}

.Inabout .top .more {
    float: right;
    font-size: 15px;
    color: #333;
    line-height: 45px;
}

.Inabout .top .more:hover {
    color: #065fb1;
}

.Inabout .Abocon {
    position: relative;
    width: 100%;
}

.Inabout .Abocon .Profile {
    font-size: 15px;
    color: #333;
    line-height: 28px;
    margin-bottom: 10px;
}
.Inabout .Abocon .Img{ 
    width:100%;
}
.Inabout .Abocon .Img img {
    max-width: 100%;
}


/* Inaptitude */

.Inaptitude {
    width: 100%;
    position: relative;
    padding: 60px 0;
    background: #f7f7f7 url(../img/aptitudebg.jpg) center no-repeat;
}

.Inaptitude .top {
    margin-bottom: 20px;
    border-bottom: 2px #dddddd solid;
}

.Inaptitude .top .title {
    float: left;
    font-size: 32px;
    color: #333333;
}

.Inaptitude .top .hd {
    float: right;
}

.Inaptitude .top .hd li {
    position: relative;
    float: left;
    font-size: 18px;
    color: #333;
    margin-right: 50px;
    line-height: 45px;
    font-weight: bold;
    cursor: pointer;
}

.Inaptitude .top .hd li:last-child {
    margin-right: 0;
}

.Inaptitude .top .hd li.on {
    color: #065fb1;
}

.Inaptitude .top .hd li.on:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 3px;
    left: 0;
    bottom: -2px;
    background: #065fb1;
}

.Inaptitude .top .hd li.on::after {
    position: absolute;
    content: '';
    left: 50%;
    bottom: -1px;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    border: 3px solid transparent;
    border-bottom: 6px solid #065fb1;
}

.Inaptitude .aptitudeTab {
    position: relative;
}

.Inaptitude .aptitudeTab .aptitudeitem {
    width: 100%;
}

.Inaptitude .aptitudeTab .swiper-slide {
    position: relative;
    float: left;
    border: 2px #eee solid;
    background: #fff;
    box-sizing: border-box;
}

.Inaptitude .aptitudeTab .swiper-slide.tpt-md-4 {
    width: 23.875%;
    margin-right: 1.5%;
}

.Inaptitude .aptitudeTab .swiper-slide.tpt-md-4:last-child {
    margin-right: 0;
}

.Inaptitude .aptitudeTab .swiper-slide p {
    width: 100%;
    height: 55px;
    padding: 0 4%;
    line-height: 55px;
    font-size: 16px;
    color: #333;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    box-sizing: border-box;
}

.Inaptitude .aptitudeTab .swiper-slide:hover {
    border: 2px #065fb1 solid;
}

.Inaptitude .aptitudeTab .swiper-slide:hover p {
    color: #065fb1;
}


/* Injoin */

.Injoin {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background: url(../img/join_bg.jpg) center no-repeat;
}

.Injoin .title {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.Injoin .more {
    width: 240px;
    height: 50px;
    margin: 50px auto 0;
    border: 1px solid rgba(255, 255, 255, .3);
    box-sizing: border-box;
}

.Injoin .more a {
    display: block;
    font-size: 16px;
    color: #fff;
    line-height: 50px;
    text-align: center;
}

.Injoin .more .ico {
    background: url(../img/joinm.png);
    width: 50px;
    height: 16px;
    margin-left: 15px;
    display: inline-block;
    -moz-transition: all .5s ease 0s;
    -ms-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    -webkit-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
}

.Injoin .more:hover .ico {
    margin-left: 25px;
}


/* Inproject */

.Inproject {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background: #fff;
}

.Inproject .top {
    margin-bottom: 20px;
}

.Inproject .top .title {
    float: left;
    font-size: 32px;
    color: #333333;
}

.Inproject .top .hd {
    float: right;
}

.Inproject .top .hd li {
    position: relative;
    float: left;
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin-right: 50px;
    line-height: 45px;
    cursor: pointer;
}

.Inproject .top .hd li:last-child {
    margin-right: 0;
}

.Inproject .top .hd li.on {
    color: #065fb1;
}

.Inproject .top .hd li.on:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 3px;
    left: 0;
    bottom: -2px;
    background: #065fb1;
}

.Inproject .projectTab {
    position: relative;
}
.Inproject .projectTab .bd{ width:100% !important}

.Inproject .projectTab .item {
    width: 100%;
}

.Inproject .projectTab .swiper-slide {
    position: relative;
    float: left;
    background: #fff;
    box-sizing: border-box;
}

.Inproject .projectTab .swiper-slide.tpt-md-2 {
    width: 49.25%;
    margin-right: 1.5%;
}

.Inproject .projectTab .swiper-slide.tpt-md-2:last-child {
    margin-right: 0;
}

.Inproject .projectTab .swiper-slide p {
    width: 100%;
    height: 60px;
    padding: 0 4%;
    line-height: 60px;
    font-size: 17px;
    color: #333;
    font-weight: bold;
    background: #f5f5f5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    box-sizing: border-box;
}

.Inproject .projectTab .swiper-slide:hover p {
    color: #065fb1;
}

.Inproject .projectTab .swiper-button-prev {
    position: absolute;
    width: 60px;
    height: 60px;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .5) url(../img/tprev.png) center no-repeat;
    z-index: 999;
    cursor: pointer;
}

.Inproject .projectTab .swiper-button-next {
    position: absolute;
    width: 60px;
    height: 60px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .5) url(../img/tnext.png) center no-repeat;
    z-index: 999;
    cursor: pointer;
}

.Inproject .projectTab .swiper-button-prev:hover {
    background: rgba(6, 95, 177, .5) url(../img/tprev.png) center no-repeat;
}

.Inproject .projectTab .swiper-button-next:hover {
    background: rgba(6, 95, 177, .5) url(../img/tnext.png) center no-repeat;
}


/* pagebanner */

.pagebanner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.pagebanner img {
    display: block;
    width: 100%;
}


/* PageMain */

.PageMain {
    position: relative;
    width: 100%;
}

.PageMain .subNavBox {
    width: 100%;
    height: 70px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.PageMain .subNavBox .curNav {
    float: right;
    line-height: 70px;
    color: #333;
}

.PageMain .subNavBox .curNav .home {
    display: inline-block;
    width: 19px;
    height: 16px;
    background: url(../img/fangzi.png);
    margin-right: 5px;
    margin-bottom: -1px;
}

.PageMain .subNavBox .curNav a {
    color: #333;
    margin: 0 5px;
    font-size: 15px;
}

.PageMain .subNavBox .curNav a:hover {
    color: #065fb1;
}

.PageMain .subNavBox .subNav {
    float: left;
}

.PageMain .subNavBox .subNav li {
    padding: 0 25px;
    font-size: 16px;
    height: 70px;
    line-height: 70px;
    display: inline-block;
    text-align: center;
    position: relative;
}

.PageMain .subNavBox .subNav li::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 18px;
    background: #ddd;
    right: 0;
    top: 50%;
    margin-top: -9px;
}

.PageMain .subNavBox .subNav li:last-child {
    margin-right: 0;
}

.PageMain .subNavBox .subNav li:last-child::after {
    display: none;
}

.PageMain .subNavBox .subNav li a {
    font-size: 17px;
    color: #333;
}

.PageMain .subNavBox .subNav li.open a,
.PageMain .subNavBox .subNav li:hover a {
    color: #065fb1;
    font-weight: bold;
}

.boxMax {
    position: relative;
    padding: 60px 0;
    background: #f8f8f8;
}

.boxMax .cover {
    padding: 40px 30px;
    font-size: 17px;
    line-height: 2.2;
    color: #333;
    background: #fff;
}

.boxMax .cover img {
    max-width: 100%;
}


/* boxNews */

.boxNews {
    position: relative;
    width: 100%;
}

.boxNews li {
    position: relative;
    float: left;
    width: 49%;
    margin-right: 2%;
    margin-bottom: 20px;
    background: #fff;
}

.boxNews li::after {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    background: #065fb1;
    -moz-transition: all .5s ease 0s;
    -ms-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    -webkit-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
}

.boxNews li:hover::after {
    width: 100%;
}

.boxNews li:nth-child(2n) {
    margin-right: 0;
}

.boxNews li a {
    display: block;
    position: relative;
    padding: 20px 3%;
}

.boxNews li .news_text {
    position: relative;
}

.boxNews li .news_text .img {
    display: block;
    line-height: 1;
    overflow: hidden;
    float: left;
    width: 28%;
    margin: 0 15px 0 0;
}

.boxNews li .news_text .img img {
    display: block;
    width: 100%;
    transition: 0.48s;
}

.boxNews li .news_fix h3 {
    color: #232323;
    font-size: 17px;
    line-height: 1.2;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 15px;
    font-weight: bold;
    overflow: hidden;
    transition: 0.35s;
}

.boxNews li .news_fix p {
    height: 56px;
    color: #666;
    font-size: 15px;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.boxNews li .news_fix span {
    display: inline-block;
    margin-top: 10px;
    font-size: 15px;
    color: #666;
}

.boxNews li a:hover .news_text figure img {
    transform: scale(1.06);
    -webkit-transform: scale(1.06);
    -moz-transform: scale(1.06);
}

.boxNews li a:hover .news_fix h3 {
    color: #065fb1;
}

.Newslist {
    width: 69.91%;
}

.Newslist .Newslistbg {
    padding: 4%;
    background: #fff;
}

.Newslist .pageNewsT {
    width: 100%;
    margin: 0 auto;
    font-size: 24px;
    color: #333;
    font-weight: bold;
    text-align: center;
}

.Newslist .pageNewsC {
    width: 100%;
    margin: 0 auto;
    font-size: 14px;
    color: #333;
    padding: 20px 0;
    border-bottom: dashed 1px #999;
    text-align: center;
}

.Newslist .pageNewsD {
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
    color: #333;
    line-height: 34px;
    margin-top: 20px;
}

.Newslist .pageNewsD img {
    max-width: 100%;
    margin: 5px 0;
}

.Newslist .pageNewsD a {
    color: #333;
}

.Newslist .pageNewsD table {
    width: 100% !important;
    border-collapse: collapse;
}

.Newslist .pageNewsD table,
.Newslist .pageNewsD tr {
    font-size: 15px;
    color: #333;
}

.Newslist .pageNewsD table,
.Newslist .pageNewsD th,
.Newslist .pageNewsD td {
    text-align: center;
    font-size: 15px;
    border: 1px solid #333;
}

.Newslist01 {
    width: 27.75%;
}

.Newslist01 .nsearch-lant {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 19px;
    color: #333333;
    border-left: 6px solid #065fb1;
    line-height: 1;
    padding-left: 8px;
}

.Newslist01 .news_hot .item {
    margin-bottom: 15px;
}

.Newslist01 .news_hot .infor {
    padding: 20px 15px;
    background: #fff;
}

.Newslist01 .news_hot .infor .tit {
    font-size: 17px;
    color: #333;
    font-weight: bold;
    margin-bottom: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.Newslist01 .news_hot .infor .con {
    font-size: 14px;
    color: #666;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
}



/* maxHonor */
.tablep{position:relative; margin-bottom:40px;  text-align: center;}
.tablep li{display: inline-block; margin: 0;  text-align: center; color: #333333; position: relative;width: auto;vertical-align: top;}
.tablep li::before{content: ''; position: absolute; height: 3px; width: 0; left: 25%; bottom: -10px; background-color: #065fb1; transition: all 0.4s;}
.tablep li.active::before,.tablep li:hover::before{ width: 50%;}
.tablep li a{position: relative;font-size: 17px;line-height: 30px;padding: 0 40px;color: #333;display: block;transition: all 0.4s;} 
.tablep li:hover a,.tablep li.active a{ color: #065fb1; font-weight:700;}
.tablep li::after{content: ''; position: absolute; width: 1px; height: 40%; right: 0; top: 30%; background-color: #ccc;}
.tablep li:last-child::after{ display: none;}


.maxHonor {
    position: relative;
}

.maxHonor .item {
    width: 24.1%;
    float: left;
    margin-right: 1%;
    cursor: pointer;
    margin-bottom: 15px;
}

.maxHonor .item:nth-child(4n) {
    margin-right: 0;
}

.maxHonor .item .cover {
    padding: 3px;
    border: 1px #ddd solid;
}

.maxHonor .item p {
    font-size: 15px;
    line-height: 50px;
    background: #f9f9f9;
    color: #333;
    text-align: center;
}

.maxHonor .item:hover p {
    background: #065fb1;
    color: #fff;
}

.maxHonor .item:hover .cover {
    border: 1px #065fb1 solid;
    background: #065fb1;
}


/* boxProject */

.boxProjectTop {
    position: relative;
    width: 100%;
    padding: 30px 20px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #333;
    line-height: 2;
    background: #fff;
    box-sizing: border-box;
}

.boxProject {
    position: relative;
}

.boxProject li {
    float: left;
    width: 32.333%;
    margin-right: 1.5%;
    margin-bottom: 1.5%;
    cursor: pointer;
}

.boxProject li:nth-child(3n) {
    margin-right: 0;
}

.boxProject li p {
    width: 100%;
    height: 60px;
    padding: 0 4%;
    line-height: 60px;
    font-size: 17px;
    color: #333;
    font-weight: bold;
    background: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    box-sizing: border-box;
}

.boxProject li:hover p {
    color: #065fb1;
}

.boxProject .Newslist01 .news_hot .infor .tit {
    margin-bottom: 0
}


/* boxCulture */

.boxCulture {
    position: relative;
}

.boxCulture li {
    float: left;
    width: 32.333%;
    margin-right: 1.5%;
    margin-bottom: 1.5%;
}

.boxCulture li:nth-child(3n) {
    margin-right: 0;
}

.boxCulture li p {
    width: 100%;
    height: 60px;
    padding: 0 4%;
    line-height: 60px;
    font-size: 17px;
    color: #333;
    font-weight: bold;
    background: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    box-sizing: border-box;
}

.boxCulture li:hover p {
    color: #065fb1;
}

.boxCulture .Newslist01 .news_hot .infor .tit {
    margin-bottom: 0
}

.boxJoin {
    position: relative;
    width: 100%;
}

.boxJoin .jnlist {
    position: relative;
}

.boxJoin .jnlist li {
    text-align: center;
    font-size: 17px;
    color: #fff;
    width: 18%;
    line-height: 56px;
    float: left;
    margin-right: 0.5%;
    background: #065fb1;
}

.boxJoin .jnlist li:first-child {
    width: 26%;
}

.boxJoin .jnlist li:last-child {
    margin-right: 0;
}

.boxJoin .joblist {
    width: 100%;
    position: relative;
    margin-top: 10px;
}

.boxJoin .joblist .list_dt {
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    border-bottom: 1px solid #ddd;
}

.boxJoin .joblist .list_dt p {
    text-align: center;
    font-size: 15px;
    color: #333;
    width: 18%;
    line-height: 56px;
    float: left;
    margin-right: 0.5%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.boxJoin .joblist .list_dt p:last-child:hover {
    color: #065fb1;
}

.boxJoin .joblist .list_dt p:first-child {
    width: 26%;
}

.boxJoin .joblist .list_dt p:last-child {
    margin-right: 0;
}

.boxJoin .joblist #open {
    border-bottom: 1px solid #065fb1;
}

.boxJoin .joblist .list_dd {
    display: none;
    padding: 30px;
    font-size: 15px;
    line-height: 2;
    color: #555;
    background: #f0f6fb;
}

.boxJoin .joblist .list_dd .jointd {
    position: relative;
    width: 160px;
    height: 50px;
    margin-top: 40px;
    font-size: 17px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 50px;
    background: #387fc0;
}
.boxJoin .joblist .list_dd .jointd a{ color:#fff}
.boxJoin .joblist .list_dd .jointd:hover {
    background: #065fb1;
}

.boxJoin .jtitle {
    margin-bottom: 20px;
    font-size: 20px;
    color: #065fb1;
    font-weight: bold;
    text-align: center;
}

.boxJoin .form-group {
    position: relative;
    float: left;
    width: 50%;
    margin-bottom: 20px;
    text-align: center;
    line-height: 40px;
}

.boxJoin .form-groupw {
    width: 100%;
}

.boxJoin .form-group .label {
    float: left;
    width: 12%;
    font-size: 14px;
    color: #666;
    text-align: right;
    vertical-align: middle;
    margin-right: 10px;
}

.boxJoin .form-groupw .label {
    width: 6%;
}

.boxJoin .form-group .form-control {
    width: 100%;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 28px;
    border: 1px #ddd solid;
    border-radius: 4px;
    box-sizing: border-box;
}

.boxJoin .form-group .control {
    width: 100%;
    height: 34px;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 28px;
    border: 1px #ddd solid;
    border-radius: 4px;
}

.boxJoin .form-group .form-input {
    position: relative;
    float: left;
    width: 80%;
}

.boxJoin .form-groupw .form-input {
    width: 90%;
}

.boxJoin .button {
    width: 190px;
    height: 45px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 45px;
    color: #fff;
    font-weight: 700;
    box-shadow: none;
    outline: none;
    border: none;
    border-radius: 4px;
    text-align: center;
    background: #065fb1;
    cursor: pointer;
}

.boxJoin .button:hover {
    background: #14928a;
}


/*  联系我们 */

.contact {
    float: left;
    width: 38%;
    padding: 10px 0;
    font-size: 18px;
    color: #333;
}

#allmap {
    float: right;
    width: 60%;
    height: 280px;
}


/* 信息公开 */
.xinxibox{background: #fff; padding: 20px;}
.page_xinxi{ position: relative; padding: 30px 0; background-color: #f9f9f9;}
.page_xinxi .xinxibox{ background: #fff; padding:30px;}
.page_xinxi .xinxibox .ls-navtop{ padding: 25px; background: #065fb1; }
.page_xinxi .xinxibox .ls-navtop .img { width: 46px; height: 40px;  display: inline-block; vertical-align: middle;}
.page_xinxi .xinxibox .ls-navtop .img img{ width: 100%;}
.page_xinxi .xinxibox .ls-navtop span{display: inline-block; vertical-align: middle; font-size: 26px; font-weight: bold; color: #fff; padding-left: 20px;}
.page_xinxi .xinxibox>.left {position: relative; width: 22%;}
.Menunav {position: relative;-moz-transition: all .5s ease 0s;-ms-transition: all .5s ease 0s;-o-transition: all .5s ease 0s;-webkit-transition: all .5s ease 0s;transition: all .5s ease 0s;}
.Menunav .Menu {background: #f8f8f8;padding: 20px 10px;}
/*第一层*/
.Menunav .Menu .level1{ margin-bottom: 10px;}
.Menunav .Menu .level1>a{ display:block;height: 55px;line-height:55px;color: #333;padding-left: 15px; font-size: 17px; font-weight: bold; position: relative; background: #fff; transition:all .5s ease 0s;}
.Menunav .Menu .level1>a:hover{ text-decoration: none; color:#065fb1;}
.Menunav .Menu .level1 .nav-more {display: block;width: 16px;height: 16px;position: absolute;right: 10px;top: 50%; margin-top: -8px; background: url(../img/jiantou.png) no-repeat center;background-size: auto 16px;-webkit-transition: all 0.4s ease 0.1s;transition: all 0.4s ease 0.1s;}
.Menunav .Menu .level1:hover .nav-text,.Menunav .Menu .level1.current .nav-text{color:#065fb1;}
.Menunav .Menu li:hover .nav-more,.Menunav .Menu li.current .nav-more {display: block;width: 16px;height: 16px;position: absolute;right: 10px;top: 50%;margin-top: -8px;
background: url(../img/jiantouh.png) no-repeat center;background-size: auto 16px;-ms-transform: rotate(90deg);-webkit-transform: rotate(90deg);transform: rotate(90deg);}
 /*第二层*/
 .Menunav .Menu li ul{ overflow: hidden; }
 .Menunav .Menu li ul.level2{ display: none;}
 .Menunav .Menu li.current ul.level2{ display: block; }
 .Menunav .Menu li.current .level2 li .level3{display: none;}
 .Menunav .Menu li.current .level2 li.finve .level3{ display: block;}
 .Menunav .Menu li ul.level2 li a{ display: block; height: 50px; line-height: 50px;color: #444;font-size: 16px; font-weight: normal; padding-left: 20px;border-bottom: 1px solid #dedede;  transition:all 1s ease 0s;}
 .Menunav .Menu li ul.level2 li.finve>a{ position: relative; color: #065fb1; font-weight: bold;}
 .Menunav .Menu li ul.level2 li.finve>a::after{position: absolute; content:''; right: 10px; top: 50%; transform: translateY(-50%); width: 5px; height: 5px; background: #065fb1; transform: rotate(45deg);-ms-transform: rotate(45deg);-moz-transform: rotate(45deg);-webkit-transform: rotate(45deg);-o-transform: rotate(45deg);}
 /* 第三层 */
 .Menunav .Menu li ul.level3{ display: none;}
 .Menunav .Menu li.current ul.level3{ display: block; }
 .Menunav .Menu li.current .level3 li .level4{display: none;}
 .Menunav .Menu li.current .level3 li.finve .level4{ display: block;}
 .Menunav .Menu li ul.level3 li a{ display: block; height: 45px; line-height: 45px;color: #555;font-size: 15px; font-weight: normal; padding-left:30px; border-bottom: 1px solid #eee; transition:all 1s ease 0s;}
 .Menunav .Menu li ul.level3 li.finve>a{ position: relative; color: #065fb1; font-weight: bold;}
 .Menunav .Menu li ul.level3 li.finve>a::after{position: absolute; content:''; right: 10px; top: 50%; transform: translateY(-50%); width: 5px; height: 5px; background: #065fb1; transform: rotate(45deg);-ms-transform: rotate(45deg);-moz-transform: rotate(45deg);-webkit-transform: rotate(45deg);-o-transform: rotate(45deg);}
/* 第四层 */
.Menunav .Menu li ul.level4{ display: none;}
.Menunav .Menu li.current ul.level4{ display: block; }
.Menunav .Menu li.current .level4 li .level5{display: none;}
.Menunav .Menu li.current .level4 li.finve .level5{ display: block;}
.Menunav .Menu li ul.level4 li a{ display: block; height: 40px; line-height: 40px;color: #666;font-size: 15px; font-weight: normal; padding-left:40px; border-bottom:none; transition:all 1s ease 0s;}
.Menunav .Menu li ul.level4 li.finve>a{ position: relative; color: #065fb1; font-weight: bold;}
.Menunav .Menu li ul.level4 li.finve>a::after{position: absolute; content:''; right: 10px; top: 50%; transform: translateY(-50%); width: 5px; height: 5px; background: #065fb1; transform: rotate(45deg);-ms-transform: rotate(45deg);-moz-transform: rotate(45deg);-webkit-transform: rotate(45deg);-o-transform: rotate(45deg);}
.page_xinxi .xinxibox .right{position: relative;width: 75%;float: right;}
.page_xinxi .xinxibox .right .ejbt {position: relative;height: 45px;line-height: 45px;margin-bottom: 30px;padding: 0 15px; background: #f8f8f8;}
.page_xinxi .xinxibox .right .ejbt .cat {position: relative;display: inline;float: left; height: 45px; font-size: 22px; font-weight: bold;color: #065fb1;padding: 0 20px; z-index: 2;}
.page_xinxi .xinxibox .right .ejbt .cat::after{position: absolute;content: '';left: 0;top: 50%;margin-top: -9px;width: 5px;height: 18px;background-color: #065fb1;}
.page_xinxi .xinxibox .right .ls-list{ position: relative; margin-top: 25px;}
.page_xinxi .xinxibox .right .ls-title{height: 42px; line-height: 42px;  font-size: 18px; overflow: hidden;  clear: both; margin-bottom: 10px; color: #333; background: #f8f8f8; padding: 0 15px;}
.page_xinxi .xinxibox .right .ls-title span{ color: #065fb1; font-weight: bold;}
.page_xinxi .xinxibox .right .ls-title .m{font-size: 14px;  float: right;color: #666;}
.page_xinxi .xinxibox .right .ls-title .m:hover{color: #065fb1;}
.page_xinxi .xinxibox .right .ls-lb{ position: relative; margin-bottom: 25px;}
.page_xinxi .xinxibox .right .ls-lb li{ width: 100%; position: relative;vertical-align:bottom; height: 36px;}
.page_xinxi .xinxibox .right .ls-lb li::before{ position: absolute; content: ''; width: 9px; height: 7px; background: url(../img/xin_icon.png); left: 0; top: 50%; margin-top: -3.5px;}
.page_xinxi .xinxibox .right .ls-lb li a{ font-size: 16px; color: #444; line-height: 36px;display:block;float:left;max-width:78%; padding-left: 20px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1;  -webkit-box-orient: vertical; }
.page_xinxi .xinxibox .right .ls-lb li span{ font-size: 15px; float: right; color: #999; line-height: 36px;}
.page_xinxi .xinxibox .right .ls-lb li:hover a{color: #065fb1; font-weight:bold;}
.page_xinxi .xinxibox .right .ls-lbn li{ width: 100%; position: relative;vertical-align:bottom; height: 36px;}
.page_xinxi .xinxibox .right .ls-lbn li::before{ position: absolute; content: ''; width: 9px; height: 7px; background: url(../img/xin_icon.png); left: 0; top: 50%; margin-top: -3.5px;}
.page_xinxi .xinxibox .right .ls-lbn li a{ font-size: 16px; color: #444; line-height: 36px;display:block;float:left;max-width:78%; padding-left: 20px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1;  -webkit-box-orient: vertical; }
.page_xinxi .xinxibox .right .ls-lbn li span{ font-size: 15px; float: right; color: #999; line-height: 36px;}
.page_xinxi .xinxibox .right .ls-lbn li:hover a{color: #065fb1; font-weight:bold;}
.page_xinxi .xinxibox .right .ls-lbn li:nth-child(5n)::after{ position: absolute; content: '';left: 0; bottom: -15px; width: 100%; height: 0; border-bottom: 1px #dadada dashed;}
.page_xinxi .xinxibox .right .ls-lbn li:nth-child(5n){ margin-bottom: 30px;}
.page_xinxi .xinxibox .right .con table{border-collapse:collapse;width:100% !important;}
.page_xinxi .xinxibox .right .con table,.page_xinxi .xinxibox .right .con tr{ font-size: 15px; color: #444; }
.page_xinxi .xinxibox .right .con table,.page_xinxi .xinxibox .right .con th,.page_xinxi .xinxibox .right .con td{border: 1px solid #333333; text-align: center; font-size: 16px;line-height: 3;}
.page_xinxi .xinxibox .right .con table thead tr td{ font-size: 17px; color: #333; font-weight: bold;}
.page_xinxi .wz_top{height:auto; line-height:28px; padding-bottom: 10px; border-bottom: 2px solid #f0f0f0; font-size:17px; margin-bottom: 30px;}
.page_xinxi .wz_top .home{display: inline-block; width: 17px; height: 16px;  background: url(../img/fangzi.png); margin-right: 5px; margin-bottom: -1px;}
.page_xinxi .wz_top a{color: #000;margin: 0 5px;}
.page_xinxi .wz_top a:hover{color: #065fb1;}
.newstitle{ font-size:24px; line-height:40px; text-align:center; color:#000;}
.xinshow .xinxiNewsT{ width:100%; margin:0 auto; font-size:24px; text-align:center; color:#333; }
.xinshow .xinxiNewsC{ width:100%;  font-size:15px; color:#666; text-align:center; line-height: 30px; margin-bottom: 20px;}
.xinshow .xinxiNewsC .fa-print{display: inline-block; background: url(../img/print.gif) center no-repeat; width: 18px; height: 15px;}
.xinshow .xinxiNewsC p{ margin: 0 10px;text-align: center;display: inline-block; }
.xinshow .xinxiNewsC p a{ font-size: 15px; color: #333;}
.xinshow .xinxiNewsD{ width:100%; margin:0 auto; font-size:16px; color:#333; line-height:2;  padding: 20px 0px;  border-top: 1px solid #ccc;}
.xinshow .xinxiNewsD img{ max-width:100%; margin:5px 0;}
.xinshow .xinxiNewsD table{border-collapse:collapse;width:100%;}
.xinshow .xinxiNewsD table,tr{ font-size: 15px; color: #444; }
.xinshow .xinxiNewsD table,th, td{border: 1px solid #333;text-align: center; font-size: 16px; }
.wzclose{ height:54px; border-top:1px solid #cccccc; text-align:right; font-size:15px; color:#999;}
.wzclose a{ color:#999; line-height:54px; cursor:pointer;}


/* footer*/

.footer {
    position: relative;
    width: 100%;
    background: #065fb1;
}

.footer .footTop {
    padding: 50px 0;
}

.footer .footTop .footNav {
    float: left;
    width: 62%;
}

.footer .footTop .footNav a {
    display: block;
    position: relative;
    float: left;
    padding: 0 2%;
    font-size: 16px;
    color: #fff;
    line-height: 40px;
}

.footer .footTop .footNav a:hover {
    opacity: 0.8;
}

.footer .footTop .footNav a::after {
    position: absolute;
    content: '';
    right: 0;
    top: 50%;
    width: 1px;
    height: 15px;
    background: #fff;
    transform: translateY(-50%);
}

.footer .footTop .footNav a:last-child:after {
    display: none;
}

.footer .footTop .footNav a:first-child {
    padding-left: 0;
}

.footer .footTop .footNav a:last-child {
    padding-right: 0;
}

.footer .footTop .link {
    position: relative;
    float: right;
    width: 28%;
}

.footer .footTop .link .link_s {
    border-bottom: 2px solid rgba(255, 255, 255, .3);
    cursor: pointer;
}

.footer .footTop .link .link_txt {
    position: relative;
    float: left;
    width: 85%;
    line-height: 40px;
    font-size: 15px;
    color: #fff;
}

.footer .footTop .link .link_btn {
    float: right;
    width: 15%;
    height: 40px;
    background: url(../img/h_jt.png) center no-repeat;
}

.footer .footTop .link .diy_list {
    position: absolute;
    display: none;
    bottom: 42px;
    left: 0;
    z-index: 999;
    border-top: none;
    width: 100%;
    background: #07569f;
}

.footer .footTop .link .diy_list a {
    display: block;
    box-sizing: border-box;
    list-style: none;
    width: 100%;
    padding: 0 10px;
    line-height: 45px;
    font-size: 15px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.footer .footTop .link .diy_list a:hover {
    background: #065fb1;
}

.footer .footMassage {
    margin-top: 45px;
}

.footer .footMassage .item {
    float: left;
}

.footer .footMassage .item .p1 {
    font-size: 16px;
    color: #fff;
    padding-left: 25px;
    margin-bottom: 15px;
}

.footer .footMassage .item .p2 {
    font-size: 22px;
    color: #fff;
    font-weight: bold;
}

.footer .footMassage .item p {
    font-size: 16px;
    color: #fff;
}

.footer .footMassage .item:nth-child(1) {
    width: 37%;
}

.footer .footMassage .item:nth-child(1) .p1 {
    background: url(../img/mico1.png) center left no-repeat;
}

.footer .footMassage .item:nth-child(2) {
    width: 35%;
}

.footer .footMassage .item:nth-child(2) .p1 {
    background: url(../img/mico2.png) center left no-repeat;
}

.footer .footMassage .item:nth-child(3) {
    width: 28%;
}

.footer .footMassage .item:nth-child(3) .p1 {
    background: url(../img/mico3.png) center left no-repeat;
}

.footer .copy {
    position: relative;
    color: #fff;
    line-height: 80px;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.footer .copy a {
    font-size: 15px;
    color: #fff;
}

.footer .copy a:hover {
    opacity: 0.8;
}


/* main CSS */

#pictureViewer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .7);
    z-index: 10000;
}

#pictureViewer>.content {
    background-color: #fff;
    position: absolute;
    width: 50%;
    height: 590px;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#pictureViewer .menu-bar {
    width: 100%;
}

#pictureViewer .menu-bar .handel {
    width: 40px;
    height: 40px;
    float: right;
    background-repeat: no-repeat;
    background-position: 50%;
    cursor: pointer;
}

#pictureViewer .menu-bar .handel:hover {
    background-color: #065fb1;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

#pictureViewer .menu-bar .handel.maximization {
    background-image: url(../img/icon/maximization_black.png);
    background-size: 14px;
}

#pictureViewer .menu-bar .handel.maximization:hover {
    background-image: url(../img/icon/maximization_white.png);
}

#pictureViewer .menu-bar .handel.miniaturization {
    background-size: 16px;
    background-image: url(../img/icon/miniaturization_black.png);
}

#pictureViewer .menu-bar .handel.miniaturization:hover {
    background-image: url(../img/icon/miniaturization_white.png);
}

#pictureViewer .menu-bar .handel.close-view {
    background-image: url(../img/icon/close_black.png);
    background-size: 15px;
}

#pictureViewer .menu-bar .handel.close-view:hover {
    background-image: url(../img/icon/close_white.png);
}

#pictureViewer .handel-prev,
#pictureViewer .handel-next {
    display: inline-block;
    width: 50px;
    height: 70px;
    position: relative;
    top: calc(50% - 80px);
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: 50%;
    cursor: pointer;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

#pictureViewer .handel-prev {
    background-image: url(../img/icon/prev_blank.png);
}

#pictureViewer .handel-next {
    background-image: url(../img/icon/next_blank.png);
}

#pictureViewer .handel-prev:hover,
#pictureViewer .handel-next:hover {
    background-color: #065fb1;
}

#pictureViewer .handel-prev:hover {
    background-image: url(../img/icon/prev_white.png);
}

#pictureViewer .handel-next:hover {
    background-image: url(../img/icon/next_white.png);
}

#pictureViewer .picture-content {
    display: inline-block;
    width: 80%;
    height: calc(100% - 80px);
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
}

#pictureViewer .picture-content .cover {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#pictureViewer .counter {
    position: absolute;
    bottom: 0;
    height: 40px;
    line-height: 40px;
    width: 100%;
    text-align: center;
    color: #808080;
    font-size: 13px;
}

#pictureViewer .hide {
    display: none;
}

#pictureViewer .left {
    float: left;
}

#pictureViewer .right {
    float: right;
}

#pictureViewer .clear-flex {
    clear: both;
}

#pictureViewer img {
    max-width: 100%;
    max-height: 100%;
}


/* fenye */

.pages {
    margin: 20px auto 0;
    text-align: center;
    font-size: 14px;
}

.pages li {
    display: inline-block;
    height: 36px;
    margin: 0 1px;
    line-height: 36px;
    background: #fff;
}

.pages li a {
    text-align: center;
    color: #333;
    padding: 0 15px;
}

.pages .active {
    background: #065fb1;
    text-decoration: none
}

.pages .active a {
    color: #fff;
}

.pages li:hover {
    background: #065fb1;
    text-decoration: none
}

.pages li:hover a {
    color: #fff;
}

.pages span {
    display: inline-block;
    height: 26px;
    line-height: 26px;
    border: 1px solid #ccc;
    color: #333;
    text-align: center;
    padding: 0 13px;
}

.pages1 {
    width: 100%;
    padding: 2% 0;
    background: #fff;
    border-top: 1px #ccc dashed;
    margin-top: 20px;
}

.pages1_l {
    float: left;
    width: 100%;
}

.pages1_l a {
    line-height: 26px;
    color: #333;
    font-size: 15px;
}

.pages1_l:hover a {
    color: #065fb1;
}

.pages1_r {
    float: left;
    width: 100%;
}

.pages1_r a {
    line-height: 26px;
    color: #333;
    font-size: 15px;
}

.pages1_r:hover a {
    color: #065fb1;
}