:root {
    --pc: #0339a6; /* ä¸»è‰²è°ƒ */
    --sc: #d1e3ff; /* è¾…åŠ©è‰²è°ƒ */
    --bg: #f6f9fb; /* èƒŒæ™¯è‰² */
    --white:#ffffff; /* ç™½è‰² */
    --txt: #353535; /* ä¸»è¦æ–‡å­—é¢œè‰² */
    --txt-sec: #666666; /* æ¬¡è¦æ–‡å­—é¢œè‰² */
    --fs-s: 16px; /* å° */
    --fs-r: 18px; /* æ­£å¸¸ */
    --fs-m: 20px; /* ä¸­ç­‰ */
    --fs-ms: 22px; /* å¤´éƒ¨èœå•æ  */
    --fs-ml: 25px; /* ä¸­ç­‰åå¤§ */
    --fs-msl: 30px; /* ä¸­ç­‰åå¤§å¤§ */
    --fs-l: 36px; /* h2*/
    --fs-el: 60px; /* h1*/
    --sp-es: 20px;
    --sp-s: 28px;
    --sp-l: 56px;
    --box: 1140px;
    --mainfont: 'Helvetica Now Display';
    --assist: 'Average';
}


@font-face {
    font-family: 'Helvetica Now Display';
    src: url(../../../../../../../../../themes/fangda/assets/fonts/en/HelveticaNowDisplay-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Now Display';
    src: url(../../../../../../../../../themes/fangda/assets/fonts/en/HelveticaNowDisplay-Bold.ttf) format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Now Display';
    src: url(../../../../../../../../../themes/fangda/assets/fonts/en/HelveticaNowDisplay-ExtraBold.ttf) format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Average';
    src: url(../../../../../../../../../themes/fangda/assets/fonts/en/Average-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    overflow-x: hidden;
}

body, html {
    font-size: var(--fs-s);
    line-height: 1em;
    font-family: var(--mainfont);
}

a {
    color: var(--pc);
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    text-decoration: underline;
}

.font-date {
    font-family: var(--assist);
}

.container {
    max-width: var(--box);
}

ul{
    list-style-type: none;
}

input,textarea{
    outline: none;
}


/* å­—ä½“å¤§å° */


/*ç‰ˆå¿ƒ*/
.container {
    width: var(--box);
    margin: 0 auto;
}
section {
    padding-left: 72px;
    padding-right: 72px;
}

/* å¤´éƒ¨ */
#page-header {
    width: 100%;
    min-height: 16.667vw;
    /*min-height: 260px;*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-size: cover;
}
#page-header .header-container {
    width: 100%;
    padding: var(--sp-es) 3.75%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: visibility .3s, opacity .3s, transform .3s, padding .3s, background-color .6s;
    top: -100px;
    transform: translateY(100px);
    position: relative;
    z-index: 10000;
}

#page-header .logo svg {
    display: block;
    fill: var(--white);
    width: 200px;
}


#page-header .right {
    display: flex;
    align-items: center;
}

.wpml-ls ul {
    display: flex;
}
.wpml-ls li {
    color: var(--white);
    font-size: var(--fs-ms);
    position: relative;
}
.wpml-ls li:not(:last-child):after {
    position: absolute;
    background: var(--white);
    content: "";
    width: 2px;
    height: var(--fs-m);
    color: #fff;
    transform: rotate(11deg);
    right: -2px;
    top: 8px!important;
}
.wpml-ls a {
    color: var(--white);
    padding: 5px 10px 6px;
    text-transform: uppercase;
    display: block;
    line-height: 1.2em;
    text-decoration: none !important;
}
.wpml-ls a:focus {
    text-decoration: underline !important;
}

#page-header .search {
    cursor: pointer;
    margin-left: var(--sp-s);
    margin-right: var(--sp-l);
    width: var(--fs-ml);
}
#page-header .search svg {
    width: 100%;
    fill: var(--white)
}

#page-header .menu-btn,
.close-btn {
    width: calc(var(--fs-m) * 2);
    height: calc(var(--fs-m) * 2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: visible;
    --lineHeight: 3px;
}
.close-btn {
    position: relative;
    cursor: n-resize;
}

#page-header .menu-btn .menu-line {
    width: 100%;
    height: var(--lineHeight);
    background-color: var(--white);
    position: relative;
}
#page-header .menu-btn .menu-line:before,
#page-header .menu-btn .menu-line:after,
.close-btn:before,
.close-btn:after {
    content: '';
    height: var(--lineHeight);
    width: 100%;
    position: absolute;
    background-color: inherit;
    transition: all .3s;
}
.close-btn:before {
    background-color: var(--pc);
    transform: rotate(45deg);
}
.close-btn:after {
    background-color: var(--pc);
    transform: rotate(135deg);
}

#page-header .menu-btn .menu-line:before {
    top: -6px;
    transform: translateY(-100%);
}
#page-header .menu-btn .menu-line:after {
    bottom: -6px;
    transform: translateY(100%);
}
#page-header .menu-btn.active .menu-line {
    visibility: hidden;
}
#page-header .menu-btn.active .menu-line:before {
    visibility: visible;
    transform: rotate(45deg);
    top: 0;
    background-color: var(--pc);
}
#page-header .menu-btn.active .menu-line:after {
    visibility: visible;
    transform: rotate(135deg);
    bottom: 0;
    background-color: var(--pc);
}

#page-header .header-container.sticky {
    position: fixed;
    background: #fff;
    left: 0;
    box-shadow: 0px 0px 10px #6f6f6f;
    --white: #000;
    padding: 0 3.75%;
    transform: translateY(0);
    visibility: hidden;
    opacity: 0;
    height: 70px;
}
#page-header .header-container.sticky.show {
    transform: translateY(100px);
    visibility: visible;
    opacity: 1;
}
#page-header .header-container.sticky.temp-hide {
    background: unset !important;
    box-shadow: unset !important;
}

#page-header .logo {
    position: relative;
    padding: 0.75rem 0;
}

#page-header .logo img {
    height: 44px;
    width: auto;
}

#page-header .header-container img.sticky-logo {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

#page-header .header-container.sticky img.sticky-logo {
    opacity: 1;
    visibility: visible;
}

.fadeInDown {
    animation: fadeInDown 0.7s;
}
.fadeInUp {
    animation: fadeInUp 0.7s;
}

@keyframes fadeInDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}





#page-footer {
    background: #575454;
    padding: var(--sp-s) 0;
}
.footer-container {
    width: 92.5%;
    margin: 0 auto;
    display: flex;
    align-items: start;
    justify-content: space-between;
    color: var(--white);
}
.footer-container a {
    color: var(--white);
    font-weight: 700;
}
.footer-container .copyright-box {
    text-align: end;
    line-height: 1.5em;
    font-weight: 700;
}





#menu-popup-box {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    left: 0;
    top: 0;
    background-color: #f5f5f5;
    background-image: var(--wpr-bg-d1419544-1b86-4d28-8eab-9db82c559664);
    background-size: cover;
    padding: 100px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: all .5s;
}
#menu-popup-box::-webkit-scrollbar {
    display: none; /* é’ˆå¯¹ Chrome, Safari å’Œ Opera */
}
.menu-content {
    max-width: var(--box);
    margin: 0 auto;
}

#menu-popup-box .open-submenu {
    user-select: none;
}
#menu-popup-box .submenu {
    display: none;
    padding-bottom: var(--sp-s);
}
#menu-popup-box .submenu.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
#menu-popup-box .submenu.active a {
    opacity: 1;
    visibility: visible;
}
#menu-popup-box .submenu li {
    width: 25%;
    float: left;
}
#menu-popup-box .submenu a {
    width: 100%;
    display: block;
    text-align: center;
    font-size: var(--fs-m);
    color: #000;
    font-weight: 600;
    padding: var(--sp-s) 0;
    line-height: 1.5em;
    height: 5.5em;
    opacity: 0;
    visibility: hidden;
}
#menu-popup-box .submenu a:hover {
    text-decoration: none;
    color: var(--pc);
}
#menu-popup-box .submenu::after {
    content: "";
    display: table;
    clear: both;
}
#menu-popup-box .menu-item > div,
#menu-popup-box .menu-item > a {
    padding: var(--sp-s) 0;
    cursor: pointer;
    color: #000;
    font-size: 40px;
    text-align: center;
    display: block;
    line-height: 1.5em;
    font-weight: 700;
}
#menu-popup-box .menu-item > div:hover,
#menu-popup-box .menu-item > a:hover {
    text-decoration: none;
    color: var(--pc);
}


#global-search-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100001;
    background-color: rgba(0,0,0,0.2);
    display: none;
}
.close-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    left: 0;
    top: 0;
    cursor: n-resize;
}
.global-search-box {
    background-color: #e5e5e5;
    padding: var(--sp-l) calc(var(--sp-l) * 2) calc(var(--sp-l) * 2);
    transform: translateY(-100%);
    transition: transform .5s;
    position: relative;
    z-index: 3;
}
.global-search-box.active {
    transform: translateY(0);
}
.global-search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.global-search-header svg {
    width: 200px;
    fill: var(--pc)
}
.global-search-content {
    margin-top: calc(var(--sp-l) * 2);
    position: relative;
}
.global-search-content label {
    position: absolute;
    top: -10000em;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
.global-search-content svg {
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: var(--fs-ml);
    height: var(--fs-ml);
    fill: var(--pc);
    cursor: pointer;
    z-index: 10;
}
#global-search {
    width: 50%;
    font-size: var(--fs-ml);
    padding: 10px 0;
    background: unset;
    border-bottom: 2px solid #0339a6;
    border-top: none;
    border-left: none;
    border-right: none;
}
#global-search::placeholder {
    color: var(--pc);
}

.more-year-container {
    padding: var(--sp-l) 0;
}
.more-year-container h2 {
    color: var(--txt);
    font-weight: 700;
    line-height: 1.5em;
    font-size: var(--fs-l);
    border-top: 1px solid;
    padding-top: var(--sp-s);
    padding-bottom: var(--sp-s);
}
.more-year-container ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    grid-column-gap: var(--sp-s);
    grid-row-gap: var(--sp-s);
}
.more-year-container a {
    font-size: var(--fs-r);
    display: flex;
    align-items: center;
}
.more-year-container svg {
    fill: var(--pc);
    height: 1em;
    width: 1em;
    display: block;
    margin-right: 6px;
}

#wechat-share-popup {
    position: fixed;
    left: 0;
    top: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 100002;
    display: none;
}
#wechat-share-popup .colse-cover {
    position: absolute;
    left: 0;
    top: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.9;
}
#wechat-share-popup .share-icon {
    position: absolute;
    right: 5px;
    top: 5px;
    display: flex;
    align-items: end;
    padding: 5px 10px 10px 3rem;
    width: 100%;
    justify-content: space-between;
    pointer-events: none;
}
#wechat-share-popup .share-icon span {
    color: #fff;
    font-size: 16px;
    line-height: 1em;
}
#wechat-share-popup .share-icon svg {
    fill: #fff;
    width: 80px;
    height: auto;
}
#wechat-share-popup .share-copy {
    position: absolute;
    bottom: 0;
    padding: 5rem 3rem;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
}
#wechat-share-popup .share-copy input {
    border-radius: 0;
    display: block;
    padding: 10px;
    border: none;
    width: 100%;
    background: #fff;
    color: #000;
    box-shadow: 0 3px 3px rgba(0,0,0,0.2);
    flex: 1;
    font-size: 20px;
}
#wechat-share-popup .share-copy-btn {
    background: var(--pc);
    color: #fff;
    line-height: 1.1em;
    box-shadow: 0 3px 3px rgba(0,0,0,0.2), 1px 1px 3px rgba(255,255,255,0.2) inset;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    width: 100%;
    height: 3rem;
}
#wechat-share-popup .share-copy-btn svg {
    width: 1.8em;
    height: 1.8em;
    display: block;
}

.cookie-popup {
    position: fixed;
    left: 0;
    top: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 10005;
    display: none;
}
.cookie-popup.holdon:before {
    content: '';
    width: 10px;
    height: 20px;
    top: 0;
    left: var(--sp-l);
    transform: translateY(-100%);
    background: var(--pc);
}
.cookie-popup.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.cookie-popup .close-cover {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: #000;
    opacity: 0.8;
}
.cookie-popup .cookie-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 10;
    padding: var(--sp-s) var(--sp-l);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cookie-popup .cookie-content .left {
    width: 70%;
}
.cookie-popup .cookie-content .right {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: end;
}
.cookie-content .accept-btn {
    margin-left: var(--sp-s);
    margin-right: var(--sp-l);
    padding: calc(var(--sp-s) / 3) var(--sp-s);
    background: var(--pc);
    color: var(--white);
    cursor: pointer;
}
.cookie-content a {
    text-decoration: underline;
}
.cookie-content .close-btn {
    width: var(--fs-m);
    height: var(--fs-m);
    --lineHeight: 1px;
}
.cookie-title {
    font-size: var(--fs-m);
    text-transform: uppercase;
    color: var(--pc);
    margin-bottom: calc(var(--sp-s) / 2);
    font-family: var(--assist);
}
.cookie-description {
    line-height: 1.4em;
}

@media screen and (max-width: 1760px) {
    :root {
        --box: 1080px;
    }
}

@media screen and (max-width: 1660px) {

    :root {
        --fs-s: 15px; /* å° */
        --fs-r: 17px; /* æ­£å¸¸ */
        --fs-m: 19px; /* ä¸­ç­‰ */
        --fs-ms: 20px; /* å¤´éƒ¨èœå•æ  */
        --fs-ml: 23px; /* ä¸­ç­‰åå¤§ */
        --fs-msl: 27px; /* ä¸­ç­‰åå¤§å¤§ */
        --fs-l: 32px; /* h2*/
        --fs-el: 50px; /* h1*/
        --sp-es: 16px;
        --sp-s: 24px;
        --sp-l: 48px;
        --box: 1000px;
    }

    #page-header .logo svg {
        width: 180px;
    }

}

@media screen and (max-width: 1200px) {
    :root {
        --fs-s: 14px; /* å° */
        --fs-r: 16px; /* æ­£å¸¸ */
        --fs-m: 17px; /* ä¸­ç­‰ */
        --fs-ms: 18px; /* å¤´éƒ¨èœå•æ  */
        --fs-ml: 20px; /* ä¸­ç­‰åå¤§ */
        --fs-msl: 24px; /* ä¸­ç­‰åå¤§å¤§ */
        --fs-l: 28px; /* h2*/
        --fs-el: 40px; /* h1*/
        --sp-es: 12px;
        --sp-s: 20px;
        --sp-l: 36px;
        --box: 960px;
    }

    #page-header .logo svg {
        width: 160px;
    }

    #page-header .menu-btn {
        --lineHeight: 2px;
    }

}

@media screen and (max-width: 1024px) {
    :root {
        --fs-s: 13px; /* å° */
        --fs-r: 15px; /* æ­£å¸¸ */
        --fs-m: 16px; /* ä¸­ç­‰ */
        --fs-ms: 17px; /* å¤´éƒ¨èœå•æ  */
        --fs-ml: 18px; /* ä¸­ç­‰åå¤§ */
        --fs-msl: 22px; /* ä¸­ç­‰åå¤§å¤§ */
        --fs-l: 26px; /* h2*/
        --fs-el: 36px; /* h1*/
        --sp-es: 10px;
        --sp-s: 18px;
        --sp-l: 32px;
        --box: 100%;
    }

    #page-header .logo svg {
        width: 140px;
    }

    #page-header .header-container {
        width: 100%;
        padding: 0 72px;
    }
}

@media screen and (max-width: 767px) {
    :root {
        --fs-s: 12px; /* å° */
        --fs-r: 14px; /* æ­£å¸¸ */
        --fs-m: 15px; /* ä¸­ç­‰ */
        --fs-ms: 16px; /* å¤´éƒ¨èœå•æ  */
        --fs-ml: 17px; /* ä¸­ç­‰åå¤§ */
        --fs-msl: 20px; /* ä¸­ç­‰åå¤§å¤§ */
        --fs-l: 24px; /* h2*/
        --fs-el: 32px; /* h1*/
        --sp-es: 8px;
        --sp-s: 16px;
        --sp-l: 28px;
    }

    #page-header {
        min-height: 180px;
    }

    #page-header .logo svg,
    #page-header .logo img {
        height: 24px;
    }

    .wpml-ls li {
        font-size: 14px;
    }

    #page-header .search {
        margin: 0;
        margin-right: 10px;
    }

    section,
    #page-header .header-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    #menu-popup-box {
        padding: 72px 20px;
    }

    #menu-popup-box .submenu {
        flex-direction: column;
    }

    #menu-popup-box .submenu li {
        width: 100%;
    }

    #menu-popup-box .submenu a {
        padding: 0;
        height: 4em;
    }

    #menu-popup-box .menu-item > div, #menu-popup-box .menu-item > a {
        padding: var(--sp-l) 0;
    }

    .global-search-box {
        padding: var(--sp-l);
    }
    .global-search-header svg {
        width: 120px;
    }
    #global-search {
        width: 100%;
    }
    .global-search-content svg {
        right: 0;
    }

    .footer-container {
        flex-direction: column;
    }
    .footer-container .copyright-box {
        text-align: start;
        margin-top: 1em;
        width: 70%;
    }
    .footer-container img {
        width: 12px;
        height: auto;
    }

    .cookie-popup .cookie-content {
        flex-direction: column;
        padding: var(--sp-l);
    }
    .cookie-popup .cookie-content .left,
    .cookie-popup .cookie-content .right {
        width: 100%;
    }
    .cookie-popup .cookie-content .right {
        margin-top: var(--sp-s);
    }
}