.container {
    max-width: 1360px;
    margin: 0 auto;
}

header .pc-head .hotline {
    display: flex;
    align-items: center;
    cursor: default;
}

header .pc-head .hotline .head-tel {
    padding-left: 10px;
}

header .pc-head .hotline .head-tel p {
    font-weight: 500;
    margin: 0;
    font-size: 20px;
}

.pc-head {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 1020;
    background-color: #fff;
    box-shadow: 0 0 18px rgba(0, 0, 0, .2);
}

.pc-head .logo img {
    margin: 10px 0;
}

.pc-head .hotle ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pc-head .hotle ul li a {
    color: #000;
    font-size: 18px;
    margin: 0 30px;
    font-weight: 500;
    position: relative;
}

.pc-head .hotle * {
    transition: unset;
}

.pc-head .hotle ul li:hover a {
    font-weight: 700;
    color: #1b70c1;
}

.pc-head .hotle ul li.active a {
    font-weight: 700;
    color: #1b70c1;
}

header .m-head,
header .m-nav {
    display: none;
}

.hamburger {
    padding: 15px 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.hamburger--slider .hamburger-inner {
    top: 0;
}

.hamburger--slider .hamburger-inner::before {
    top: 10px;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    transition-timing-function: ease;
    transition-duration: 0.2s;
}

.hamburger--slider .hamburger-inner::after {
    top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
    -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
    -webkit-transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -20px, 0) rotate(-90deg);
    transform: translate3d(0, -20px, 0) rotate(-90deg);
}

footer {
    padding: 3rem 0;
    background-color: #00498e;
}

footer .footlogo h1 {
    color: #fff;
    font-weight: 500;
    line-height: 1.5;
    font-size: 48px;
}

footer .footnav dl dt a {
    color: #fff;
    line-height: 3;
    font-weight: 500;
    font-size: 18px;
}

.slide {
    padding-top: 108px;
}

.slide img {
    width: 100%;
    height: 100%;
}

.main {
    margin-top: 50px;
    margin-bottom: 100px;
}

.breadcrumb li a {
    padding: 0 5px;
}

.sidebar .submenu {
    background: #00498e;
    padding: 18px;
}

.sidebar .submenu dl {
    margin: 0;
}

.sidebar .submenu dl dt {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .6);
    margin-bottom: 12px;
}

.sidebar .submenu dl dd {
    margin: 0;
    border-bottom: 1px dashed rgba(255, 255, 255, .2);
}

.sidebar .submenu dl dd a {
    color: #fff;
    line-height: 2.6;
    display: block;
}

.sidebar .contactbox {
    background: #00498e;
    color: #fff;
    padding: 18px;
    margin-top: 6px;
}

.sidebar .contactbox h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.sidebar .contactbox p {
    line-height: 1.4;
    margin-bottom: 6px;
    font-size: 14px;
}

.breadcrumb {
    font-size: 14px;
    color: #999;
}

.breadcrumb li a {
    padding: 0 5px;
    color: #333;
}

/* 分页样式 */
.pagebar .pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination a {
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
    font-size: 14px;
    padding: 6px 8px;
    margin: 0 2px;
    border-radius: 3px;
}

.pagination a:hover {
    color: #00498e;
    border: 1px solid #00498e;
}

.pagination a.page-num-current {
    color: #fff;
    background: #00498e;
    border: 1px solid #00498e;
}

@media screen and (max-width:768px) {
    .pagebar .pagination .zx {
        display: none;
    }
}