* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: #333;
    cursor: pointer;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
    margin: 0;
}

em,
i {
    font-style: normal;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

img {
    border: 0;
    vertical-align: middle;
}

.transition {
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
}

.container {
    width: 1600px;
    max-width: 94%;
    margin: 0 auto;
}

.header-active {
    background-color: #333;
}

header .pc-head.header-active .logo img {
    max-width: 500px;
}

header .pc-head {
    width: 100%;
    position: fixed;
    z-index: 1020;
    box-shadow: 0px 0px 8px 0 rgba(0, 0, 0, 0.1);
}

header .pc-head .logo img {
    margin: 5px 0;
    max-width: 600px;
}

header .pc-head .nav>ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .pc-head .nav>ul>li>a {
    color: #333;
    font-size: 18px;
    margin: 0 25px;
    position: relative;
    font-weight: 700;
    text-align: center;
    display: block;
}

header .pc-head .nav>ul>li>a.active::after {
    width: 100%;
}

header .pc-head .nav>ul>li>a::after {
    content: '';
    width: 0;
    height: 3px;
    background-color: #333;
    position: absolute;
    display: block;
    margin-top: 5px;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
}

header .pc-head .nav>ul>li>a:hover::after {
    width: 100%;
}

header .pc-head .nav>ul>li>a>p {
    margin-bottom: 0;
}

header .pc-head .nav>ul>li>a>p:last-child {
    font-size: 14px;
    text-transform: uppercase;
}

header .pc-head .nav>ul>li:hover>a {
    color: #333;
}

header .pc-head .nav>ul>li.active>a {
    font-weight: 700;
    color: #333;
}

header .pc-head.header-active .nav ul>li>a,
header .pc-head.header-active .nav ul>li:hover>a {
    color: #fff;
}

header .pc-head.header-active .nav ul>li>a::after {
    background-color: #fff;
}

header .pc-head.header-active .nav>ul>li.active>a {
    color: #fff;
}

header .pc-head.header-active .nav>ul>li>a::before {
    background-color: #fff;
}

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: 5px;
}

.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: 50px 0 100px 0;
    background-color: #f8f8f8;
}

footer .foot ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

footer .foot ul li a {
    display: block;
    font-weight: 700;
    font-size: 20px;
    color: #333;
    text-align: center;
}

footer .foot ul li a p {
    margin-bottom: 0;
}

footer .foot ul li a p:last-child {
    text-transform: uppercase;
    font-size: 16px;
}

footer .foot .footlogo {
    margin-top: 100px;
    padding-bottom: 10px;
    border-bottom: 1px solid #b0b0b0;
}

footer .foot .footcontact {
    display: flex;
    margin-top: 20px;
}

footer .foot .footcontact p {
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

footer .foot .footcontact p:last-child {
    margin-left: 60px;
}

footer .foot .footcontact p span {
    padding-left: 10px;
}

.position {
    height: 60px;
    background-color: #f3f3f3;
    font-size: 14px;
}

.position .positioncur {
    background: url(../images/home.png) left center no-repeat;
    padding-left: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 60px;
}

.position .positioncur p {
    margin-bottom: 0;
}

.position .row {
    margin-left: 0;
    margin-right: 0;
}

.position a {
    color: #333;
}

.main {
    margin: 20px 0 50px 0;
}

.sidebar * {
    transition: unset;
}

.sidebar .submenu dl dt {
    color: #333;
    font-size: 20px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    position: relative;
    padding-bottom: 10px;
}

.sidebar .submenu dl dt span:last-child {
    text-transform: capitalize;
}

.sidebar .submenu dl dt::after {
    content: '';
    width: 80px;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: -1px;
}

.sidebar .submenu dl dd {
    margin: 0;
}

.sidebar .submenu dl dd .fitst {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.sidebar .submenu dl dd .fitst>a {
    line-height: 2;
    display: block;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-right: 5%;
    color: #333;
    padding: 10px 0;
    width: 80%;
}

.sidebar .submenu dl dd .fitst>a p {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

.sidebar .submenu dl dd .fitst>a p span:last-child {
    font-size: 14px;
}

.sidebar .submenu dl dd .fitst>a.on {
    font-weight: 700;
}

.sidebar .submenu dl dd .fitst>.navimg {
    width: 20%;
    height: 80px;
    line-height: 80px;
    text-align: center;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
}

.sidebar .submenu dl dd .fitst>.navimg img {
    object-fit: contain;

}

.sidebar .submenu dl dd .fitst>.navimg.on {
    transform: rotate(90deg);
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
}

.two {
    display: none;
}

.two a {
    display: block;
    color: #666;
    font-size: 15px;
    border-top: 1px dotted #e7e5e5;
    padding: 0 10% 0 10%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: url(../images/icon2.png) 6% center no-repeat;
    line-height: 2;
}

.two a:first-child {
    border-top: 0;
}

.two a p {
    margin-bottom: 0;
}

.two a p:last-child {
    font-size: 14px;
}

.two a:hover {
    background-color: #f1f1f1;
}

.contactbox .contacttop {
    padding-bottom: 10px;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.contactbox .contacttop::after {
    content: '';
    width: 80px;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: -1px;
}

.contactbox .contact-text {
    padding: 10px 0;
}

.contactbox .contact-text p {
    margin: 0;
    line-height: 2;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

/* 内页 */
.lnnertitle {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 1px solid #ddd;
    position: relative;
    line-height: unset;
}

.lnnertitle .lnnertitleline {
    margin-bottom: 0;
    width: fit-content;
    padding-bottom: 10px;
    position: relative;
}

.lnnertitle .lnnertitleline span:last-child {
    text-transform: capitalize;
}

.lnnertitle .lnnertitleline::after {
    content: '';
    height: 1px;
    width: 100%;
    background: #000;
    position: absolute;
    left: 0;
    bottom: -1px;
}

.content_text * {
    transition: unset;
}

.content_text p {
    line-height: 22px;
    padding: 10px;
    border: 1px solid #eeeeee;
}

.content_text p span:first-child {
    padding-bottom: 10px;
}

.content_text p b {
    color: #616062;
    font-weight: normal;
    white-space: nowrap;
}

.content_text p a {
    color: #666;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
}

.pagebar .pagination {
    display: flex;
    justify-content: center;
}

.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: #40489a;
    border: 1px solid #40489a;
}

.pagination a.page-num-current {
    color: #fff;
    background: #40489a;
    border: 1px solid #40489a;
}

@media screen and (max-width:768px) {
    .pagebar .pagination .zx {
        display: none;
    }
}

.hide {
    display: none;
}