html {
    --ew: 1280px;
}

@font-face {
    font-family: 'SourceHanSansCN-Regular';
    src: url("../font-face/SourceHanSansCN-Regular.otf")
}

* {
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: #4D4D4D;
    box-sizing: border-box;
    font-family: 'SourceHanSansCN-Regular';
}

a,
a:visited,
a:focus,
a:active,
a:link {
    text-decoration: none;
    outline: 0;
}

a.disabled {
    pointer-events: none;
}

ul {
    padding: 0;
    list-style: none;
}

[v-cloak] {
    display: none;
}

/* 页眉 */
header {
    width: 100%;
    min-width: var(--ew);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #FFFFFF;
}

.navbar {
    width: 100%;
    padding: 0 39px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #EAEAEA;
}

.nav-header {
    width: auto;
    height: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo-mian {
    width: 304.5px;
    height: 24px;
    user-select: none;
    color: transparent;
    margin-right: 96px;
    background-size: 100% 100%;
    background-image: url("../img/logo.png");
}

.logo-sub {
    width: 247px;
    height: 12px;
    display: none;
    user-select: none;
    color: transparent;
    background-size: 100% 100%;
    background-image: url("../img/sub-logo.png");
}

.nav-menu {
    margin-right: -20px;
}

.nav-menu,
.nav-menu ul {
    width: 420px;
    height: 25px;
}

.nav-menu ul li {
    width: 70px;
    margin-bottom: 2px;
    display: inline;
    float: left;
    user-select: none;
}

.nav-menu ul li a {
    width: 70px;
    font-size: 15px;
    display: inline-block;
    text-decoration: none;
    color: #4D4D4D;
    letter-spacing: 1px;
    text-align: center;
}

hr {
    width: 28px;
    height: 2px;
    border: none;
    margin-left: 20px;
    background: #F2C1A4;
    transition: .3s ease-in-out;
}

.nav-menu ul li:hover~hr {
    background: #E6844A;
}

.nav-menu ul li:nth-child(1):hover~hr {
    margin-left: 20px !important;
}

.nav-menu ul li:nth-child(2):hover~hr {
    margin-left: 90px !important;
}

.nav-menu ul li:nth-child(3):hover~hr {
    margin-left: 158px !important;
}

.nav-menu ul li:nth-child(4):hover~hr {
    margin-left: 230px !important;
}

.nav-menu ul li:nth-child(5):hover~hr {
    margin-left: 300px !important;
}

.nav-menu ul li:nth-child(6):hover~hr {
    margin-left: 370px !important;
}

#nav-bg {
    position: fixed;
    height: 40px;
    width: 40px;
    bottom: 30px;
    right: -200vw;
    border-radius: 50%;
    z-index: 100;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translate(var(--translate-x), var(--translate-y)) scale(var(--scale));
    transform: translate(var(--translate-x), var(--translate-y)) scale(var(--scale));
    will-change: transform;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.menu-btn {
    position: fixed;
    height: 40px;
    width: 40px;
    bottom: 30px;
    right: -100vw;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    margin: 0;
    padding: 0 10px;
    border: none;
    z-index: 99999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#toggle-btn {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    color: #fc4a1a;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

#toggle-btn span {
    position: relative;
    width: 100%;
}

#toggle-btn span {
    margin-top: -3px;
}

#toggle-btn span+span {
    margin-top: 6px;
}

#toggle-btn span:before,
#toggle-btn span:after {
    content: "";
    position: absolute;
    top: 0;
    background: #fc4a1a;
    opacity: 0.8;
    height: 100%;
    width: 10px;
    height: 4px;
    -webkit-transition: 0.25s cubic-bezier(0.6, 0, 0.3, 1);
    transition: 0.25s cubic-bezier(0.6, 0, 0.3, 1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

#toggle-btn span:before {
    left: 0;
    border-radius: 3px 0 0 3px;
}

#toggle-btn span:after {
    right: 0;
    border-radius: 0 3px 3px 0;
}

#toggle-btn.shown span:nth-of-type(1):before {
    -webkit-transform: translate3d(2px, 2.5px, 0) rotate(45deg);
    transform: translate3d(2px, 2.5px, 0) rotate(45deg);
}

#toggle-btn.shown span:nth-of-type(1):after {
    -webkit-transform: translate3d(-2px, 2.5px, 0) rotate(-45deg);
    transform: translate3d(-2px, 2.5px, 0) rotate(-45deg);
}

#toggle-btn.shown span:nth-of-type(3):before {
    -webkit-transform: translate3d(2px, -2.5px, 0) rotate(-45deg);
    transform: translate3d(2px, -2.5px, 0) rotate(-45deg);
}

#toggle-btn.shown span:nth-of-type(3):after {
    -webkit-transform: translate3d(-2px, -2.5px, 0) rotate(45deg);
    transform: translate3d(-2px, -2.5px, 0) rotate(45deg);
}

#toggle-btn.shown span:nth-of-type(2):before,
#toggle-btn.shown span:nth-of-type(2):after {
    opacity: 0.0001;
}

#toggle-btn.shown span:nth-of-type(2):before {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
}

#toggle-btn.shown span:nth-of-type(2):after {
    -webkit-transform: translateX(200%);
    transform: translateX(200%);
}

#toggle-btn.shown:before {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

#toggle-btn:before {
    content: "";
    -webkit-transition: 0.2s 0.2s;
    transition: 0.2s 0.2s;
    position: absolute;
    top: 3px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    border-radius: inherit;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    z-index: -2;
}

#toggle-btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: #ffffff;
    z-index: -1;
}

.nav-menu-mobile {
    width: 100%;
    height: 0;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
}

.nav-menu-mobile ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nav-menu-mobile li {
    font-size: 30px;
    color: #212121;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transform: translate(-20px, 20px) scale(0.9);
    transform: translate(-20px, 20px) scale(0.9);
    -webkit-transition: 0s;
    transition: 0s;
    opacity: 0.0001;
    visibility: hidden;
    will-change: transform;
}

.nav-menu-mobile li+li {
    margin-top: 30px;
}

#toggle-btn.shown~.nav-menu-mobile {
    height: 100vh;
    opacity: 1;
    visibility: visible;
}

#toggle-btn.shown~.nav-menu-mobile ul li {
    width: 100%;
    text-align: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    -webkit-transition: 0.35s cubic-bezier(0.4, 2.08, 0.55, 1);
    transition: 0.35s cubic-bezier(0.4, 2.08, 0.55, 1);
}

#toggle-btn.shown~.nav-menu-mobile ul li:nth-child(1) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

#toggle-btn.shown~.nav-menu-mobile ul li:nth-child(2) {
    -webkit-transition-delay: 0.125s;
    transition-delay: 0.125s;
}

#toggle-btn.shown~.nav-menu-mobile ul li:nth-child(3) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.nav-link-mobile {
    text-align: center;
    position: relative;
    touch-action: manipulation;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    user-select: none;
    text-shadow: 0 0 1px #000 inset;
}

.nav-link-mobile:before,
.nav-link-mobile:after {
    position: absolute;
    content: "";
    height: 3px;
    width: 30px;
    background: #EF8546;
    top: calc(50% - 1px);
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.5, 0.5, 0, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.5, 0.5, 0, 1);
    transition: transform 0.3s cubic-bezier(0.5, 0.5, 0, 1);
    transition: transform 0.3s cubic-bezier(0.5, 0.5, 0, 1),
        -webkit-transform 0.3s cubic-bezier(0.5, 0.5, 0, 1);
}

.nav-link-mobile:before {
    left: 0;
    -webkit-transform: translateX(calc(-100% - 10px)) scaleX(0);
    transform: translateX(calc(-100% - 10px)) scaleX(0);
    -webkit-transform-origin: left;
    transform-origin: left;
}

.nav-link-mobile:after {
    right: 0;
    -webkit-transform: translateX(calc(100% + 10px)) scaleX(0);
    transform: translateX(calc(100% + 10px)) scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right;
}

.nav-link-mobile.active {
    color: #EF8546;
}

.nav-link-mobile.active:before,
.nav-link-mobile:hover:before {
    -webkit-transform: translateX(calc(-100% - 10px)) scaleX(1);
    transform: translateX(calc(-100% - 10px)) scaleX(1);
    -webkit-transform-origin: right;
    transform-origin: right;
}

.nav-link-mobile.active:after,
.nav-link-mobile:hover:after {
    -webkit-transform: translateX(calc(100% + 10px)) scaleX(1);
    transform: translateX(calc(100% + 10px)) scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
}

/* 空状态 */
.empty {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.empty img {
    width: 191px;
    height: 22px;
}

.empty p {
    font-size: 14px;
    color: #808080;
    margin-top: 20px;
}

/* 分页 */
.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 80px 0;
}

.pagination ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}

.pagination li {
    width: 35px;
    height: 35px;
    margin: 0 2px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
}


.pagination li:active,
.pagination li.active {
    background-color: #E6844A;
}

.pagination li.arrow_left,
.pagination li.arrow_right {
    position: relative;
    background-color: transparent !important;
}

.pagination li.arrow_left::after,
.pagination li.arrow_right::after {
    position: absolute;
    content: "";
    top: 11px;
    left: 11px;
    width: 13px;
    height: 13px;
}

.pagination li.arrow_left::after {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg t="1665307264817" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" style="fill:rgba(77,77,77);"><path d="M704 908.8 307.2 512 704 115.2c25.6-25.6 25.6-70.4 0-96-25.6-25.6-70.4-25.6-96 0L166.4 460.8C147.2 480 140.8 492.8 140.8 512s6.4 32 19.2 51.2l441.6 441.6c25.6 25.6 70.4 25.6 96 0C729.6 979.2 729.6 934.4 704 908.8z"></path></svg>');
}

.pagination li.arrow_right::after {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg t="1665307214054" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" style="fill:rgba(77,77,77);"><path d="M294.4 908.8 684.8 512 294.4 115.2c-25.6-25.6-25.6-70.4 0-96 25.6-25.6 70.4-25.6 96 0L832 460.8c12.8 12.8 19.2 32 19.2 51.2S844.8 544 832 563.2l-441.6 441.6c-25.6 25.6-70.4 25.6-96 0C262.4 979.2 262.4 934.4 294.4 908.8z"></path></svg>');
}

.pagination li.arrow_left:active:after {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg t="1665307264817" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" style="fill:rgba(230,132,74);"><path d="M704 908.8 307.2 512 704 115.2c25.6-25.6 25.6-70.4 0-96-25.6-25.6-70.4-25.6-96 0L166.4 460.8C147.2 480 140.8 492.8 140.8 512s6.4 32 19.2 51.2l441.6 441.6c25.6 25.6 70.4 25.6 96 0C729.6 979.2 729.6 934.4 704 908.8z"></path></svg>');
}

.pagination li.arrow_right:active:after {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg t="1665307214054" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" style="fill:rgba(230,132,74);"><path d="M294.4 908.8 684.8 512 294.4 115.2c-25.6-25.6-25.6-70.4 0-96 25.6-25.6 70.4-25.6 96 0L832 460.8c12.8 12.8 19.2 32 19.2 51.2S844.8 544 832 563.2l-441.6 441.6c-25.6 25.6-70.4 25.6-96 0C262.4 979.2 262.4 934.4 294.4 908.8z"></path></svg>');
}

.pagination li.hide_arrow {
    opacity: 0;
    cursor: default;
}

.pagination li a {
    font-size: 12px;
    line-height: 35px;
}

/* 页脚 */
footer {
    width: 100%;
    min-width: var(--ew);
    background-color: #E8E8E8;
}

.copyright {
    width: 100%;
    padding: 80px 0 30px 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    border-bottom: 1px solid #DDD;
}

.copyright .qr-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 80px;
}

.copyright .qr-wrapper .qr-box {
    width: 135px;
    height: 165px;
    display: flex;
    flex-direction: column;
}

.copyright .qr-wrapper .qr-box img {
    width: 135px;
    height: 135px;
    user-select: none;
}

.copyright .qr-wrapper .qr-box {
    margin-left: 30px;
}

.copyright .qr-wrapper .qr-box:first-child {
    margin: 0;
}

.qr-title {
    width: 100%;
    font-size: 12px;
    line-height: 30px;
    color: #808080;
    text-align: center;
}

.copyright .about-us {
    height: 135px;
    display: flex;
    flex-direction: column;
    align-content: space-between;
    justify-content: space-between;
    margin-left: 80px;
}

.copyright .about-us .company-name {
    font-size: 16px;
    color: #666666;
}

.copyright .about-us .company-info-wrapper {
    display: flex;
    flex-direction: column;
}

.copyright .about-us .company-info {
    font-size: 12px;
    color: #666666;
    line-height: 30px;
}

.recordcode {
    width: 100%;
    padding: 20px 0;
}

.recordcode a {
    width: 100%;
    font-size: 14px;
    height: 16px;
    line-height: 16px;
    display: flex;
    justify-content: center;
}


.recordcode .icon-police {
    display: inline-block;
    width: 14px;
    height: 16px;
    margin-right: 6px;
    background: url(https://bkssl.bdimg.com/static/wiki-common/widget/component/footer/img/icon-police_5f07082.png) 0 0 no-repeat;
    vertical-align: middle;
}

@media (max-width: 850px) {
    html {
        --ew: 100%;
    }

    /* 页眉 */
    .navbar {
        padding: 12px 20px;
        height: auto;
    }

    .nav-header {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .logo-mian {
        width: 38.0625vw;
        height: 3vw;
        margin: 0 0 12px 0;
        background-image: url("../img/logo.png");
    }

    .logo-sub {
        display: flex;
        width: 53.6vw;
        height: 2.6vw;
    }

    .nav-menu {
        display: none;
    }

    .menu-btn,
    #nav-bg {
        right: 30px;
    }

    /* 分页 */
    .pagination {
        margin: 40px 0;
    }

    /* 页脚 */
    .copyright {
        padding: 20px 0;
        justify-content: space-evenly;
    }

    .copyright .qr-wrapper {
        margin: 0;
    }

    .copyright .qr-wrapper .qr-box {
        width: 100px;
        height: 118px;
    }

    .copyright .qr-wrapper .qr-box img {
        width: 100px;
        height: 100px;
    }

    .copyright .qr-wrapper .qr-box {
        margin-left: 15px;
    }

    .copyright .about-us {
        height: 100px;
        margin: 0 !important;
    }

    .copyright .about-us .company-info {
        line-height: 20px;
    }

    .recordcode {
        padding: 10px 0;
    }
}

@media (max-width: 660px) {

    /* 页脚 */
    .copyright {
        padding: 20px;
        flex-direction: column;
    }

    .copyright .qr-wrapper .qr-box {
        width: 70px;
        height: 100px;
    }

    .copyright .qr-wrapper .qr-box img {
        width: 70px;
        height: 70px;
    }

    .copyright .qr-wrapper {
        width: 100%;
        margin: 0;
    }

    .copyright .about-us {
        width: 100%;
        height: auto;
        margin: 15px 0 0 0 !important;
    }

    .copyright .company-info-wrapper {
        margin-top: 15px;
    }
}