* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, "Source Han Sans CN", sans-serif;
}

a{
    cursor: pointer;
}

.anchor{
    position: relative;
    top: -100px;
}

:root {
    --root-font-size: 16;
    --rem: var(--root-font-size) * 1rem;
}

html {
    font-size: var(--root-font-size)px;
}

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

a *{
    cursor: pointer;
}

li {
    list-style: none;
}

button {
    outline: none;
    border: none;
}

body,
html {
    height: 100%;
}

/* 公共部分样式 */
.text-ellipsis-l1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.text-ellipsis-l2 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-break: anywhere;
    -webkit-box-orient: vertical;
}

.navigation-bar {
    color: #113b77;
    line-height: 55px;
    text-align: right;
    background-color: #f0f2f5;
    padding-right: calc(162 / var(--rem));
}

.navigation-bar a {
    color: #000;
}

.page {
    --page-root-font-size: 16px;
    --page-bg: #f0f2f5;
    --page-footer-bg: #022F6F;
    --page-main-max-width: 1400px;
    --page-footer-max-width: 1400px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.page .page-header {
    background-color: #fff;
    flex: 0 0 auto;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1001;
}

.page>.page-header .page-header-top {
    color: #fff;
    font-size: 14px;
    line-height: 50px;
    background-color: #022F6F;
    padding-right: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.page>.page-header section {
    color: #f0f3f8;
}

.page>.page-header section a {
    color: #f0f3f8;
}

.page>.page-header .lang {
    font-weight: bold;
    margin-left: 26px;
    display: flex;
    align-items: center;

    display: none;
}

.page .mobile-nav .lang{
    display: none;
}

.page>.page-header .lang>img {
    width: 17px;
    height: 17px;
    margin-right: 12px;
}

.page>.page-header .lang>a {
    color: #fff;
    margin-right: 18px;
    position: relative;
}

.page>.page-header .lang>a.active::after {
    content: "";
    display: block;
    width: 27px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: 10px;
}

.page>.page-header .lang>a:nth-last-of-type(1) {
    margin-right: 0;
}

.page>.page-header .page-nav {
    max-width: 1960px;
    width: 100%;
    margin: auto;
    height: 65px;
    display: flex;
    align-items: center;
    padding-left: 60px;
}
.page>.page-header .page-nav >a {
    flex: 0 1 auto;
}

.page>.page-header .page-nav>nav {
    margin-left: 80px;
}

@media (max-width: 1280px) {
    .page>.page-header .page-nav>nav{
        margin-left: 40px;
    }
}

.page>.page-header .page-nav>nav ul {
    display: flex;
    justify-content: space-around;
}

@supports (justify-content: space-evenly) {
    .page>.page-header .page-nav>nav ul {
        justify-content: space-evenly;
    }
}

.page>.page-header .page-nav>nav ul li {
    /* padding-right: 65px; */
    flex: 0 0 auto;
    max-width: 200px;
}

.page>.page-header .page-nav>nav ul li:nth-last-of-type(1) {
    padding-right: 0;
}

.page>.page-header .page-nav .page-logo {
    /*width: 120px;*/
    height: 48px;
    width: auto;
    flex: 0 0 auto;
}

.page>.page-header .page-nav nav {
    flex: 1 1 0;
}

.page .page-header .page-nav .search {
    flex: 0 1 0;
    height: 100%;
    background-color: var(--input-bg-color);
    padding: 0 40px 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page .page-header .search-content {
    width: 290px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    position: relative;
}

.page .page-header .btn-search {
    position: absolute;
    right: 0;
    top: -10px;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: url("../image/search-icon.png") center/20px 20px no-repeat rgba(255, 255, 255, .2);
    cursor: pointer;
}

.page .page-header .btn-search:hover{
    background-color: rgba(255, 255, 255, .6);
}


.page .page-header .search input {
    color: #fff;
    border: none;
    outline: none;
    background-color: transparent;
    display: block;
    width: 100%;
    height: 100%;
}

.page .page-header .search input::placeholder {
    color: #fff;
}

.page .mobile-page-header {
    display: none;
    padding: 12px;
    justify-content: space-between;
    align-items: center;
}

.page .mobile-page-header .page-logo {
    /*width: 150px;*/
    height: 40px;
    width: auto;
}

.page .mobile-page-header .feature {
    width: 24px;
    height: 24px;
    background-image: url(../image/menu.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.page .mobile-page-header .feature.active {
    background-image: url(../image/close.svg);
}

.page .mobile-nav {
    display: none;
    position: relative;
    height: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
}

.page .mobile-nav.open {
    transition: height .3s ease-in;
}

.page .mobile-nav.close {
    transition: height .3s ease-in;
}

.page .mobile-nav::after {
    content: "";
    display: block;
    width: 100%;
    height: calc(100vh - 56.7px);
    background-color: rgba(0, 0, 0, .7);
    position: absolute;
    top: 0;
    left: 0;
}

.page .mobile-nav ul li.search {
    flex: 0 0 auto;
    height: 100%;
    background-color: var(--input-bg-color);
    padding: 12px;
    display: flex;
    align-items: center;
}

.page .mobile-nav ul li.search .search-content {
    width: 290px;
    color: #fff;
    border-bottom: 1px solid #cdb3b9;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

.page .mobile-nav ul li.search .search-content>img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.page .mobile-nav ul li.search input {
    color: #fff;
    border: none;
    outline: none;
    background-color: transparent;
}

.page .mobile-nav ul li.search input::placeholder {
    color: #fff;
}

.page .mobile-nav ul {
    color: #fff;
    background-color: var(--root-bg-color);
    z-index: 1;
    position: relative;
}

.page .mobile-nav ul li a {
    color: #fff;
}

.page .mobile-nav ul li {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.page .mobile-nav ul li.section a {
    color: #fff;
}

.page .mobile-nav .lang {
    margin-left: 0;
}

.page .page-main {
    flex: 1 1 0;
}

.page>.page-footer {
    flex: 0 0 auto;
    width: 100%;
    color: #fff;
    margin: auto;
    background-color: var(--page-footer-bg);
    padding: 78px 0;
}

.page>.page-footer .page-footer-content {
    max-width: var(--page-footer-max-width);
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.page>.page-footer a {
    color: #fff;
}

.page>.page-footer dl.detail-info {
    flex: 1 1 0;
    padding-right: 10px;
}

.page>.page-footer dl.detail-info dd {
    padding-bottom: 8px;
}

.page>.page-footer dl.detail-info .icon-item{
    padding-top: 8px;
}


.page>.page-footer dl.detail-info dd:not(.icon-item){
    width: 100%;
}

.page>.page-footer dl.detail-info dt {
    padding-bottom: 7px;
}

.page>.page-footer dl.detail-info dd:nth-last-of-type(1) {
    padding-bottom: 0;
}

.footer-contact-title{
    font-size: 1.25em;
    font-weight: bold;
    margin-bottom: .5em;
}

.page>.page-footer ul.footer-nav {
    flex: 0 1 235px;
}

.page>.page-footer ul.footer-tabs {
    flex: 0 1 225px;
}

.page>.page-footer ul.footer-nav li,
.page>.page-footer ul.footer-tabs li {
    line-height: 30px;
    padding-bottom: 10px;
}

.page>.page-footer ul.footer-nav li:nth-last-of-type(1),
.page>.page-footer ul.footer-tabs li:nth-last-of-type(1) {
    padding-bottom: 0;
}

.page>.page-footer dl.other {
    flex: 0 1 316px;
}

.page>.page-footer dl.other dt {
    padding-bottom: 8px;
}

.page>.page-footer dl.other dd {
    line-height: 30px;
    padding-bottom: 8px;
}

.page>.page-footer dl.other dd a {
    /*color: #8197b7;*/
    color: #fff;
}

/*.page>.page-footer dl.other dd a:hover{
    color: #fff;
}*/

.page>.page-footer dl.other dd:nth-last-of-type(1) {
    padding-bottom: 0;
}

.page>.page-footer dl.about-us {
    height: max-content;
    flex: 0 1 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0 15px;
}

.page>.page-footer dl.about-us dt {
    flex: 0 0 100%;
    padding-bottom: 0;
}

.page>.page-footer dl.about-us .icon-item a {
    flex: 1 0 0;
    text-align: center;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page>.page-footer dl.about-us dd>span {
    padding-top: 10px;
}

.page>.page-footer dl.about-us .logo-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: #5087CD;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.page>.page-footer dl.about-us .logo-icon+span{
    margin-top: 4px;
}

.page>.page-footer dl.about-us .logo-icon img {
    display: block;
}

.page>.page-footer dl.about-us .logo-icon .logo-qr{
    position: absolute;
    bottom: calc(100% + 10px);
    width: 280%;
    left: 50%;
    transform: translate(-50%, 10px);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    transition: .4s cubic-bezier(0.15, 1, 0.336, 1);
    visibility: hidden;
}

.page>.page-footer dl.about-us .logo-icon:hover .logo-qr {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
}

/*@media (max-width: 600px) {
    .page > .page-footer dl.about-us .logo-icon .logo-qr {
        display: none;
    }
}*/

.page>.page-footer section.privacy {
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    padding-top: 114px;
    flex: 0 1 100%;
    display: flex;
    justify-content: space-between;
}

.page>.page-footer section.privacy a {
    color: #fff;
}

.page>.feature {
    position: fixed;
    bottom: 10%;
    right: 10px;
    display: flex;
    flex-direction: column;
    z-index: 1002;
}

.page>.feature li {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding: 20px 14px;
    transition: all .3s ease;
}

.page>.feature li:hover {
    background-color: var(--feature-hover-bg);
}

.page>.feature li:nth-last-of-type(1) {
    border-bottom: none;
}

.page>.feature li,
.page>.feature li a {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page>.feature li {
    background-color: var(--root-bg-color);
}

.page>.feature li span {
    padding-top: 10px;
}

.page .feature li img {
    width: 20px;
}

.page .feature li.back-top {
    display: none;
}

.page .feature li.back-top.active {
    display: flex;
    transition: all .3s linear;
}

@media screen and (max-width: 1600px) {
    .page>.page-footer {
        padding: 30px 20px;
    }

    .page .feature {
        font-size: 12px;
    }

    .page>.feature li {
        padding: 12px 4px;
    }

    .page>.page-footer .page-footer-content {
        width: 100%;
        max-width: 1080px;
    }
    .page>.page-footer section.privacy {
        padding-top: 50px;
    }
}

@media screen and (max-width: 1024px) {

    .page>.page-header .page-header-top,
    .page>.page-header .page-nav {
        display: none;
    }

    .page>.page-footer .page-footer-content>* {
        padding-bottom: 20px;
    }

    .page>.page-footer dl.detail-info,
    .page>.page-footer ul.footer-nav,
    .page>.page-footer ul.footer-tabs,
    .page>.page-footer dl.other {
        flex: 0 0 25%;
    }

    .page .navigation-bar {
        padding-right: 20px;
    }

    .page .mobile-page-header {
        display: flex;
    }

    .page .mobile-nav {
        display: block;
    }

    .page .feature {
        font-size: 12px;
    }

    .page .feature li img {
        width: 20px;
    }

    .page>.page-footer .page-footer-content {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {

    .page>.page-footer dl.detail-info,
    .page>.page-footer ul.footer-nav,
    .page>.page-footer ul.footer-tabs {
        flex: 0 0 calc(100% / 3);
    }

    .page>.page-footer dl.other,
    .page>.page-footer dl.about-us {
        flex: 0 0 50%;
    }

    .page>.page-footer section.privacy {
        padding-top: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .page>.page-footer section.privacy p {
        padding-bottom: 10px;
    }
}

@media screen and (max-width: 425px) {
    .page>.page-footer {
        padding: 20px 20px;
    }

    .page>.page-footer .page-footer-content {
        gap: 20px 0;
    }

    .page>.page-footer dl.detail-info {
        flex: 0 1 100%;
    }

    .page>.page-footer ul.footer-nav,
    .page>.page-footer ul.footer-tabs {
        flex: 0 1 50%;
    }

    .page>.page-footer dl.other,
    .page>.page-footer dl.about-us {
        flex: 0 0 100%;
    }

    .page>.page-footer section.privacy {
        padding: 0;
    }

    .page>.page-footer ul.footer-nav,
    .page>.page-footer ul.footer-tabs,
    .page>.page-footer dl.other {
        display: none;
    }
}

@media (max-width: 640px) {
    .page>.feature{
        right: 0;
    }

    .page>.feature li{
        background-color: rgba(68, 68, 68, .8);
        /*background-color: var(--feature-hover-bg);*/
    }
}

@media (min-width: 426px) {
    .page>.page-footer .page-footer-content{
        justify-content: space-between !important;
    }
    .page-footer .detail-info,
    .page-footer .footer-nav,
    .page-footer .footer-tabs,
    .page-footer .other{
        flex: 0 0 auto  !important;
    }

}


@media (min-width: 1024px) {
    .page-footer .about-us{
        flex: 0 0 365px !important;
    }
}

@media (max-width: 1024px) and (min-width: 426px) {
    .page-footer .about-us{
        padding-top: 20px !important;
        flex: 0 0 100% !important;
    }
}
