@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

:root {
    --primary: #0068FF;
    --primary-hover:#4f97ff;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}


button,
input,
textarea {
    font-family: inherit;
}

pre{
    font-family: inherit;
    white-space: break-spaces;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

body {
    font-family: "Noto Sans TC", "Noto Sans SC", system-ui, sans-serif;
    color: #051132;
    min-height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.toast {
    top: 50%;
    left: 50%;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    padding: 10px;
    z-index: 13;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
}

.toast.in {
    -webkit-animation-name: contentZoomIn;
    animation-name: contentZoomIn;
}

.toast .iconfont {
    font-size: 30px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    display: block;
}

.toast .iconfont.icon-loading:before {
    display: block;
    -webkit-transform: rotate(360deg);
    animation: rotation 2.7s linear infinite;
}

.toast .text {
    text-align: center;
    max-width: 300px;
    color: #fff;
    font-size: 14px;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes contentZoomIn {
    0% {
        -webkit-transform: translate(-50%, -70%);
        transform: translate(-50%, -70%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

@keyframes contentZoomIn {
    0% {
        -webkit-transform: translate(-50%, -70%);
        transform: translate(-50%, -70%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

@-webkit-keyframes contentZoomOut {
    0% {
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(-50%, -30%);
        transform: translate(-50%, -30%);
        opacity: 0;
    }
}

@keyframes contentZoomOut {
    0% {
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(-50%, -30%);
        transform: translate(-50%, -30%);
        opacity: 0;
    }
}

.inner {
    width: 100%;
    height: 100%;
    max-width: 1500px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #E8F0FF;
    position: sticky;
    top: 0;
    z-index: 2;
}

header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 80px;
    width: 80px;
    display: block;
    flex-shrink: 0;
}

.header-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-nav {
    margin-left: auto;

}

.header-nav__group {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-nav__item {
    color: #051132;
}

.header-nav__item:hover,
.header-nav__item.active {
    color: var(--primary);
}

.header-nav__item + .header-nav__item {
    margin-left: 2vw;
}

.header-nav__link {
    text-decoration: none;
    font-size: 16px;
    color: inherit;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.header-actions {
    display: flex;
    align-items: center;
    margin-left: 2vw;
}

.header-locale {
    position: relative;
    font-size: 14px;
    flex-shrink: 0;
}

.header-locale__label {
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 10px;
    background: #fff;
    padding: 8px 12px;
    transition: all 0.3s ease;
    user-select: none;
    touch-action: manipulation;
}

.header-locale:hover .header-locale__label{
    background-color: #fafafa;
}

.header-locale__label icon-font {
    font-size: 1.5em;
    margin-right: 4px;
}

.header-locale:hover .header-locale__group{
    visibility: visible;
    opacity: 1;
}

.header-locale__group {
    background-color: #fff;
    border-radius: 8px;
    position: absolute;
    min-width: 100%;
    z-index: 1;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.header-locale__item {
    transition: all 0.3s ease;
}

.header-locale__item:hover,
.header-locale__item.active {
    background-color: #fafafa;
    color: var(--primary);
}

.header-locale__link {
    display: block;
    text-align: center;
    color: inherit;
    padding: 4px 8px;
    transition: all 0.3s ease;
}

.header-download {
    position: relative;
    margin-left: 16px;
    flex-shrink: 0;
    /*暂时隐藏*/
    display: none;
}

.header-download__label {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 32px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.header-download__label:hover{
    background: var(--primary-hover);
}

.header-download:hover .header-download__drop {
    visibility: visible;
    opacity: 1;
}

.header-download__drop {
    position: absolute;
    width: 100%;
    max-width: 220px;
    background-color: #fff;
    border-radius: 4px;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.header-download__drop img {
    display: block;
    width: 100%;
}

.header-contact {
    margin-left: 16px;
    flex-shrink: 0;
}

.header-contact__link {
    display: block;
    border: 1px solid #032562;
    background: transparent;
    border-radius: 20px;
    padding: 8px 32px;
    font-size: 14px;
    cursor: pointer;
    color: inherit;
    transition: all 0.3s ease;
}

.header-contact__link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.header-menu {
    font-size: 24px;
    margin-left: 10px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #E1E7F0;
    flex-shrink: 0;
    cursor: pointer;
    display: none;
    transition: all 0.3s ease;
}

.header-menu:hover{
    background-color: var(--primary-hover);
    color: #fff;
}

header ~ aside {
    position: fixed;
    top: 0;
    z-index: 9;
    width: 65vw;
    height: 100%;
    padding: 20px;
    background-color: #fff;
    box-sizing: border-box;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

header ~ aside.active {
    transform: translateX(0);
}

.mask {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 8;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    animation: show 0.3s ease;
}

@keyframes show {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

.animate {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    animation-duration: 0.8s;
    animation-timing-function: ease;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 50px, 0);
        transform: translate3d(0, 50px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.mask.hide {
    opacity: 0;
    visibility: hidden;
}

.aside-nav__group {
    margin: 0;
    padding: 0;
    list-style: none;
}

.aside-nav__link {
    text-decoration: none;
    padding: 10px 0;
    color: #444;
    display: flex;
    align-items: center;
}

.aside-nav__link icon-font {
    transition: transform 0.3s ease;
}

.aside-nav__label {
    flex: 1 0 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.aside-nav__item.active > .aside-nav__link icon-font {
    transform: rotate(180deg);
}

.aside-sub__group {
    margin: 0;
    padding: 0 0 0 1em;
    box-sizing: border-box;
    list-style: none;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

main{
    flex: 1;
}

.footer-main {
    padding-top: 55px;
    padding-bottom: 55px;
}

.footer-main .inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1410px;
}

.footer-main__logo {
    flex-shrink: 0;
    height: 80px;
    max-width: 152px;
}

.footer-main__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.footer-main__info {
    flex: 1 0 0;
    margin-left: 10vw;
}

.footer-main__group {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-main__item {
    display: flex;
    align-items: flex-start;
    max-width: 33.333%;
}

.footer-main__item icon-font {
    color: var(--primary);
    font-size: 24px;
}

.footer-main__content {
    margin-left: 16px;
}

.footer-main__text {
    margin-left: 0;
    margin-top: 4px;
}

.footer-copyright {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 13px;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright__inner {
    width: 100%;
    max-width: 1410px;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-copyright__text{
    text-align: center;
    margin: 0;
}

.footer-copyright__pages{
    margin-left: 16px;
}

.footer-copyright a {
    color: inherit;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: var(--primary);
}

.footer-copyright a + a{
    margin-left: 16px;
}


/* 首页 */
.home-banner {
    background-image: linear-gradient(to bottom, #E8F0FF 0%, #fff 100%);
    padding-top: 40px;
    padding-bottom: 55px;
}

.home-banner__header {
    text-align: center;
}

.home-banner__title {
    font-size: 60px;
    color: var(--primary);
    font-weight: 900;
    margin: 0;
    line-height: 1.5
}

.home-banner__sub {
    font-size: 32px;
    line-height: 1.3;
    color: #0B162E99;
    margin-bottom: 0;
    margin-top: 38px;
    font-weight: normal
}

.home-banner__body {
    margin-top: 56px;
    --radius: 24px;
    border-radius: var(--radius);
    overflow: hidden;
}

.home-banner__inner {
    background: #296EF3;
    display: flex;
    overflow: hidden;
    border-radius: var(--radius);
    justify-content: space-between;
}

.home-banner__content {
    width: 50%;
    padding: 5vw;
    color: #fff
}

.home-banner__text {
    font-size: 35px;
    margin-top: 0;
    margin-bottom: 50px;
    line-height: 1.5
}

.home-banner__link {
    background: #D9E7F7;
    color: #485062;
    border: none;
    border-radius: 999px;
    padding: 8px 32px;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
}

.home-banner__link:hover{
    background-color: #fff;
    color: var(--primary);
}

.home-banner__image {
    width: 50%;
    min-height: 100%;
}

.home-banner__wrapper{
    width: 100%;
    position: relative;
    padding-bottom: 97.5%;
    min-height: 100%;
}

.home-banner__adaptor{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.home-banner__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-rate {
    background: var(--primary);
    padding: 80px 0;
}

.home-rate .inner {
    max-width: 1460px;
}

.home-rate__header {
    text-align: center;
    color: #fff;
}

.home-rate__title {
    font-size: 60px;
    margin: 0;
    line-height: 1.5;
    font-weight: normal;
}

.home-rate__content {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.home-rate__list {
    flex-shrink: 0;
    width: 45%;
    max-width: 630px;
    padding: 30px;
    border-radius: 24px;
    background: #F6F8FD;
}

.home-rate__wrapper {
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.home-rate__table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.home-rate__table thead {
    background: #D9E7F7;
}

.home-rate__table thead tr {
    height: 56px;
}

.home-rate__table th {
    text-align: left;
    padding: 0 30px;
}

.home-rate__table tbody tr {
    height: 54px;
}

.home-rate__table td {
    padding: 0 30px;
    border-bottom: 1px solid #0000001A;
}

.home-rate__currency {
    display: flex;
    align-items: center;
}

.home-rate__currency img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: cover;
    border: 1px solid #eee;
    margin-right: 10px;
    border-radius: 50%;
}

.home-rate__date {
    font-size: 14px;
    color: #000;
    margin-top: 28px;
    display: block;
}

.home-rate__more {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.home-rate__link {
    text-align: center;
    border-radius: 999px;
    padding: 8px 32px;
    font-size: 16px;
    cursor: pointer;
    background: #fff;
    color: #051132;
    border: 1px solid #000;
    transition: all 0.3s ease;
}

.home-rate__link:hover{
    color: var(--primary-hover);
    border-color: currentColor;
}

.home-rate__calc{
    width: 50%;
    max-width: 515px;
    margin-left: 5%;
}

.rate-calc{
    user-select: none;
    width: 100%;
    height: 100%;
    background: #D9E7F7;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    padding-top: 40px;
}


.rate-calc__inner {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    width: 100%;
    flex: 1;
}

.rate-calc__title {
    font-size: 32px;
    color: #051132;
    margin: 0;
}

.rate-calc__content {
    margin-top: 20px;
    padding-bottom: 40px;
}

.rate-calc__label {
    font-size: 14px;
    color: #0B162E;
    margin: 0;
}

.rate-calc__main {
    min-height: 54px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 14px;
}

.rate-calc__currency {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.rate-calc__img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border: 1px solid #eee;
    border-radius: 50%;
}

.rate-calc__name {
    margin: 0 15px;
}

.rate-calc__main.active .rate-calc__arrow{
    transform: rotate(180deg);
}

.rate-calc__arrow {
    font-size: 24px;
    transition: all 0.3s ease;
}

.rate-calc__input {
    flex: 1 0 0;
}

.rate-calc__input input {
    height: 100%;
    width: 100%;
    text-align: right;
    border: none;
    background: transparent;
    font-size: 22px;
}


.home-rate__options {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    left: 0;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    border-top: none;
    top: 64px;
    width: 100%;
    height: 290px;
    overflow-x: hidden;
    background: #fff;
    z-index: 1;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.rate-calc__main.active .home-rate__options{
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.home-rate__options > li {
    height: 64px;
    border-bottom: 1px solid #E2E8F0;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-rate__options > li:last-child {
    border: none
}

.home-rate__options::-webkit-scrollbar {
    width: 4px;
}

.home-rate__options::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.2);
}

.home-rate__options::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.1);
}


.rate-calc__switch {
    font-size: 40px;
    margin: 16px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rate-calc__switch icon-font{
    cursor: pointer;
    transition: all 0.3s ease;
}

.rate-calc__switch icon-font:hover{
    transform: scale(1.1);
}

.rate-calc__result {
    color: #0B162ECC;
    margin-top: 20px;
    font-size: 14px;
    line-height: 22px;
}

.rate-calc__result p {
    margin: 0;
    line-height: 1.5;
}

.rate-calc__result p + p {
    margin-top: 8px;
}

.rate-calc__tip{
    font-size: 14px;
    color: #000;
    display: block;
    margin: 0;
    padding: 20px 40px;
    box-sizing: border-box;
}

.home-rate__tip{
    width: 100%;
    margin-top: 56px;
    text-align: center;
    color: #fff;
    font-size: 16px;
}

.home-currency {
    background: #EDF2FD;
    padding: 80px 0;
}

.home-currency .inner {
    max-width: 1380px;
}

.home-currency__header {
    text-align: center;
}

.home-currency__title {
    font-size: 56px;
    font-weight: normal;
    line-height: 1.5;
    margin: 0;
}

.home-currency__sub {
    margin-top: 16px;
    font-size: 20px;
    margin-bottom: 0;
    line-height: 1.5;
}

.home-currency__content {
    margin-top: 48px;
    display: flow-root;
    overflow: hidden;
}

.home-currency__group {
    display: flex;
    flex-wrap: wrap;
    --gap: 48px;
    padding: 0;
    list-style: none;
    margin: calc(var(--gap) * -1) calc(var(--gap) * -0.5) 0;
}

.home-currency__item {
    text-align: center;
    width: 16.66666%;
    margin-top: var(--gap);
    padding-left: calc(var(--gap) / 2);
    padding-right: calc(var(--gap) / 2);
}

.home-currency__image {
    margin-left: auto;
    margin-right: auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.home-currency__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-currency__name {
    margin-top: 8px;
    font-size: 18px;
    margin-bottom: 0;
}

.home-contact {
    background: var(--primary);
    padding-top: 62px;
    padding-bottom: 62px;
}

.home-contact__header {
    text-align: center;
    color: #fff;
}

.home-contact__title {
    font-size: 56px;
    margin: 0;
    line-height: 1.5;
    font-weight: normal;
}

.home-contact__sub {
    font-weight: normal;
    margin-top: 16px;
    line-height: 1.5;
    font-size: 16px;
}

.home-contact__content {
    margin-top: 58px;
}

.home-contact__btn {
    display: flex;
    justify-content: center;
}

.home-contact__btn a {
    border: none;
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    min-width: 180px;
    display: block;
    background: #fff;
    font-weight: bold;
    text-align: center;
    color: inherit;
    transition: all 0.3s ease;
}

.home-contact__btn a:hover{
    color: var(--primary-hover);
    transform: scale(1.05);
}

.home-contact__group {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.home-contact__inner {
    display: flex;
    flex-wrap: wrap;
    margin-top: -16px;
    margin-left: -16px;
}

.home-contact__item {
    margin-left: 16px;
    margin-top: 16px;
}

.home-contact__item a {
    display: block;
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

.home-contact__item a:hover{
    transform: scale(1.1);
}

.home-contact__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* 关于我们 */
.company-intro{
    background-image: linear-gradient(to bottom, #E8F0FF 0%, #fff 100%);
    padding-top: 40px;
    padding-bottom: 40px;
}

.company-intro .inner{
    max-width: 1460px;
}

.company-intro__header{
    text-align: center;
    color: #051132;
}

.company-intro__title{
    font-size: 80px;
    font-weight: bold;
    margin: 0;
    line-height: 1.5;
}

.company-intro__sub{
    font-size: 32px;
    color: #0B162E99;
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: normal;
}

.company-intro__sub:empty{
    display: none;
}

.company-intro__btn{
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.company-intro__link{
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 18px;
    cursor: pointer;
    display: block;
    min-width: 180px;
    transition: background-color 0.3s ease;
}

.company-intro__link:hover{
    background: var(--primary-hover);
}

.company-intro__content{
    margin-top: 40px;
}

.company-intro__leading{
    font-size: 32px;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 10px;
}

.company-intro__text{
    margin-top: 16px;
}

.company-intro__image{
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 64px;
    margin-left: auto;
    margin-right: auto;

}

.company-intro__img{
    display: block;
    width: 100%;
}

/* 參考匯率 */
.rate-banner{
    background: var(--primary);
    padding-top: 80px;
    padding-bottom: 80px;
}

.rate-banner .inner{
    max-width: 1380px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rate-banner__side{
    width: 50%;
    max-width: 600px;
    color: #fff;
}

.rate-banner__title{
    font-size: 56px;
    color: #fff;
    line-height: 1.2;
    font-weight: normal;
    margin: 0;
}

.rate-banner__text{
    font-size: 20px;
    color: #fff;
    line-height: 1.5;
    margin-top: 24px;
    margin-bottom: 0;
}

.rate-banner__btn{
    display: flex;
    margin-top: 24px;
}

.rate-banner__link{
    display: block;
    text-align: center;
    background: #fff;
    color: #485062;
    border-radius: 999px;
    padding: 8px 24px;
    font-size: 18px;
    text-decoration: none;
    min-width: 180px;
    transition: all 0.3s ease;
}

.rate-banner__link:hover{
    color: var(--primary);
}

.rate-banner__main{
    width: 50%;
    max-width: 560px;
    margin-left: 5%;
}

.rate-list{
    padding-top: 80px;
    padding-bottom: 80px;
    
}

.rate-list .inner{
    max-width: 1190px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 8px;
    background-color: #F6F8FD;
}

.rate-list__title{
    margin: 0;
    font-weight: normal;
    text-align: center;
    font-size: 56px;
    line-height: 1.5;
}

.rate-list__content{
    margin-top: 40px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.rate-list__table{
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.rate-list__table thead{
    background: #D9E7F7;
}

.rate-list__table thead tr{
    height: 74px;
}

.rate-list__table thead th,
.rate-list__table tbody td{
    text-align: left;
    padding: 0 30px;
}

.rate-list__table tbody tr{
    height: 64px;
    border-bottom: 1px solid #0000001A;
}

.rate-list__currency{
    display: flex;
    align-items: center;
}

.rate-list__thumb{
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 10px;
}

.rate-list__date{
    margin-top: 28px;
    display: block;
}

/* 常见问题 */
.qa-list{
    padding-top: 80px;
    padding-bottom: 80px;

}

.qa-list .inner{
    max-width: 1060px;
}

.qa-list__title{
    text-align: center;
    margin: 0;
    font-size: 80px;
    line-height: 1.5;
}

.qa-list__content{
    margin-top: 64px;
    display: flow-root;
}

.qa-list__group{
    margin: 0;
    padding: 0;
    list-style: none;
}

.qa-list__item{
    background-color: #F6F8FD;
    border-radius: 24px;
    overflow: hidden;
}

.qa-list__item + .qa-list__item{
    margin-top: 12px;
}

.qa-list__question{
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.qa-list__question .qa-list__prefix{
    background-color: var(--primary);
    color: #fff;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    min-height: 78px;
}

.qa-list__prefix{
    width: 118px;
    flex-shrink: 0;
}

.qa-list__leading{
    flex: 1 0 0;
    color: #051132;
    font-size: 20px;
    padding: 12px 18px;
    min-height: 78px;
    display: flex;
    align-items: center;
}

.qa-list__trigger{
    font-size: 24px;
    width: 80px;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa-list__show,
.qa-list__hide{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qa-list__show:hover,
.qa-list__hide:hover{
    background-color: #efefef;
    color: var(--primary);
}

.qa-list__item.active .qa-list__hide{
    display: flex;
}

.qa-list__item.active .qa-list__show{
    display: none;
}

.qa-list__trigger .qa-list__hide{
    display: none;
}

.qa-list__answer{
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.qa-list__wrapper{
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    padding-top: 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.qa-list__wrapper::-webkit-scrollbar{
    display: none;
}

.qa-list__answer .qa-list__prefix{
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.qa-list__text{
    flex: 1 0 0;
    overflow: hidden;
    padding-left: 18px;
    padding-right: 18px;
    color: #093BA2;
}

/* 联系我们 */
.contact-banner{
    padding-top: 90px;
    padding-bottom: 24px;
    background-color: var(--primary);
}

.contact-banner__header{
    text-align: center;
    color: #fff;
}

.contact-banner__title{
    font-size: 64px;
    color: #fff;
    text-align: center;
    font-weight: 900;
    margin: 0;
    line-height: 1.5;
}

.contact-banner__sub{
    font-size: 32px;
    color: #fff;
    margin-top: 20px;
    text-align: center;
    line-height: 1.4;
}

.contact-banner__content{
    margin-top: 40px;
}

.contact-banner__qrcode{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #fff;
}

.contact-banner__item + .contact-banner__item {
    margin-left: 5vw;
}

.contact-banner__img{
    display: block;
    width: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-banner__label{
    margin-top: 12px;
    font-size: 20px;
    text-align: center;
    margin-bottom: 0;
    line-height: 1.4;
}

.contact-form{
    padding-top: 24px;
    padding-bottom: 48px;
    background-color: var(--primary);
}

.contact-form .inner{
    width: 100%;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    border-radius: 24px;
    padding: 3vw;
}

.contact-form__tip{
    font-size: 18px;
    color: #666;
}

.contact-form__types{
    display: flex;
    justify-content: center;
    margin-top: 56px;
    overflow: hidden;
}

.contact-form__radio{
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-left: -24px;
    margin-top: -24px;
}

.contact-form__radio-item{
    margin-left: 24px;
    margin-top: 24px;
}

.contact-form__radio-wrapper{
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form__radio-wrapper:hover{
    color: var(--primary-hover);
}

.contact-form__radio-wrapper input{
    width: 20px;
    height: 20px;
}

.contact-form__radio-label{
    font-size: 20px;
    margin-left: 8px;
}

.contact-form__fields{
    margin-top: 40px;
    display: flow-root;
}

.contact-form__field-group{
    display: flex;
    flex-wrap: wrap;
    margin: -28px -20px 0;
    list-style: none;
    padding: 0;
}

.contact-form__field-item{
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 28px;
}

.contact-form__field-wrapper{
    display: block;
}

.contact-form__field-label{
    display: block;
    font-size: 20px;
    margin-bottom: 12px;
}

.contact-form__field-label.required::before{
    content: "*";
    color: red;
    font-size: inherit;
}

.contact-form__field-wrapper input,
.contact-form__field-wrapper textarea{
    width: 100%;
    font-size: 16px;
    padding: 0 18px;
    border: none;
    background: #F5F6F7;
    height: 56px;
    border-radius: 8px;
    outline: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-form__field-wrapper input:hover,
.contact-form__field-wrapper textarea:hover{
    outline: 2px solid #b6d4ff;
}

.contact-form__field-wrapper input:focus,
.contact-form__field-wrapper textarea:focus{
    outline: 2px solid var(--primary-hover);
}

.contact-form__field-wrapper textarea{
    padding-top: 8px;
    padding-bottom: 8px;
    height: 120px;
    resize: none;
}

.contact-form__field-captcha{
    display: flex;
    align-items: center;
}

.contact-form__field-captcha img{
    height: 56px;
    width: 136px;
    flex-shrink: 0;
    display: block;
    margin-left: 12px;
    border-radius: 8px;
    cursor: pointer;
    object-fit: cover;
}

.contact-form__submit{
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.contact-form__btn{
    width: 100%;
    max-width: 300px;
    border-radius: 999px;
    font-size: 18px;
    color: #fff;
    background: var(--primary);
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form__btn:hover{
    background-color: var(--primary-hover);
}

.contact-map{
    padding-top: 172px;
    padding-bottom: 72px;
}

.contact-map .inner{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.contact-map__main{
    width: 55%;
    max-width: 815px;
    background-color: #ccc;
}

.contact-map__adaptor{
    position: relative;
    width: 100%;
    padding-bottom: 60%;
}

.contact-map__adaptor #map{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    box-shadow: 0 0 8px rgba(0,0,0,0.12);
    border-radius: 8px;
    overflow: hidden;
}

.contact-map__side{
    width: 40%;
    margin-left: 5%;
}

.contact-map__title{
    font-size: 32px;
    font-weight: normal;
    margin: 0;
}

.contact-map__content{
    margin-top: 32px;
    display: flow-root;
}

.contact-map__group{
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-map__item{
    display: flex;
    align-items: center;
}

.contact-map__item + .contact-map__item{
    margin-top: 24px;
}

.contact-map__item icon-font{
    color: var(--primary);
    font-size: 24px;
}

.contact-map__text{
    flex: 1 0 0;
    margin-left: 16px;
}

/* 单页面 */
.single-article{
    padding-top: 80px;
    padding-bottom: 80px;
}

.single-article .inner{
    max-width: 1060px;
}

.single-article__title{
    text-align: center;
    font-size: 40px;
    font-weight: normal;
    margin: 0;
    line-height: 1.5;
}

.single-article__content{
    display: flow-root;
    margin-top: 80px;
    white-space: normal;
}
