::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F1F1F1;
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #F1F1F1;
}

::-webkit-scrollbar-thumb {
    background-color: #A8A8A8;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #e84518;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: #333;
    cursor: pointer;
    text-decoration: none;
}

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;
}

.container-fluid {
    width: 1800px;
    max-width: 94%;
    margin: 0 auto;
}

.container {
    width: 1600px;
    max-width: 94%;
    margin: 0 auto;
}

header .pc-head.header-active .logo img {
    max-height: 90px;
}

header .pc-head {
    width: 100%;
    position: fixed;
    z-index: 1020;
    background-color: rgba(0, 0, 0, .4);
    box-shadow: 0px 0px 8px 0 rgba(0, 0, 0, 0.1);
}

header .pc-head .logo img {
    margin: 5px 0;
}

header .pc-head .nav * {
    transition: unset;
}

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: #fff;
    font-size: 18px;
    margin: 0 20px;
    padding-bottom: 5px;
    position: relative;
}

header .pc-head .nav>ul>li.active>a {
    font-weight: 700;
    border-bottom: 3px solid #e84518;
}

header .pc-head .nav>ul>li>a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    margin-bottom: -3px;
    background-color: #e84518;
    transition: width 0.5s;
}

header .pc-head .nav>ul>li:hover>a::before {
    font-weight: 700;
    width: 100%;
}

header .pc-head .nav .dropdown-menu {
    background: rgba(0, 0, 0, .8);
    margin: 0;
    border-radius: 6px;
    border-top-left-radius: 0;
    border: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

header .pc-head .nav .dropdown-menu li:hover {
    background-color: #C7000A;
}

header .pc-head .nav .dropdown-menu .dropdown-item {
    padding: 0;
}

header .pc-head .nav .dropdown-menu .dropdown-item a {
    background: unset;
    padding: 10px 30px;
    display: block;
    font-weight: normal;
    color: #fff;
}

header .m-head,
header .m-nav {
    display: none;
}

.pc-head select {
    border: 1px solid #fff;
    color: #fff;
    background-color: transparent;
    padding: 3px 10px;
    font-size: 14px;
    outline: none;
}

.pc-head select option {
    color: #333;
}

.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 {
    background-color: #353434;
    padding: 40px 0 50px 0;
}

footer .foot-fluid {
    width: 80%;
    margin: 0 auto;
}

footer .foot-fluid .foot-text {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

footer .foot-fluid .foot-text p {
    margin: 0;
    color: #fff;
    font-size: 24px;
    padding-left: 20px;
}

footer .foot-fluid .foot-text span {
    padding-right: 20px;
}

footer .foot-fluid .ewm {
    text-align: center;
}

footer .foot-fluid .ewm img {
    width: 120px;
    margin-bottom: 20px;
}

footer .foot-fluid .ewm p {
    color: #fff;
    margin: 0;
    font-size: 21px;
}

.m-foot {
    display: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    z-index: 10;
}

.m-foot a {
    display: block;
    text-align: center;
    padding: 7px 0;
    font-size: 12px;
    line-height: 1;
}

.m-foot a i {
    display: block;
    height: 20px;
    background: no-repeat center;
    background-size: contain;
    margin-bottom: 4px;
}

.m-foot a i.i1 {
    background-image: url(../images/f_01.png);
}

.m-foot a i.i2 {
    background-image: url(../images/f_02.png);
}

.m-foot a i.i3 {
    background-image: url(../images/f_04.png);
}

.m-foot a i.i4 {
    background-image: url(../images/f_03.png);
}

.pagebar .pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.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: #C7000A;
    border: 1px solid transparent;
}

.pagination a.page-num-current {
    color: #fff;
    background: #C7000A;
    border: 1px solid #C7000A;
}

@media screen and (max-width:768px) {
    .pagebar .pagination .zx {
        display: none;
    }
}

.pagination {
    justify-content: center;
}

.pagination li a {
    color: #000;
}

.pagination .page-link:hover {
    border: 1px solid #C7000A;
}

.pagination select {
    outline: none;
    font-size: 14px;
    border: 1px solid #ccc;
    margin: 0 2px;
}

/* 为<select>元素设置滚动条颜色 */
select::-webkit-scrollbar {
    width: 4px;
    /* 设置滚动条的宽度 */
}

select::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* 设置滚动条轨道的颜色 */
}

select::-webkit-scrollbar-thumb {
    background: #333;
    /* 设置滚动条滑块的颜色 */
}

select::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* 鼠标悬浮时滚动条滑块的颜色 */
}

.pagenav {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.pagenav a {
    color: #333;
}

.hide {
    display: none;
}

.copy {
    padding: 15px 0;
    border-top: 1px solid #ccc;
    background-color: #353434;
    color: #fff;
    text-align: center;
    font-size: 14px;
}

.copy a {
    color: #fff;
}

.homecopy {
    color: #fff;
    font-size: 20px;
}

.homecopy:hover {
    color: #fff;
}