:root {
    --active-color: #2f80ed;
    --font-color: #4d5064;
    --font-color-gray: #89898a;
    --font-color-gray1: #b1b1b4;
    --font-color-sliver: #b9c0c4;
    --font-desc-color: #3a424d;
    --deepblue-background: #034eb2;
    --purple-background: #611f69;
    --form-color: #757f8c;
    --header-height: 60px;
    --active-background-color: #dde1e5;
    --devlier-color: #f0f0f0;
    --page-h-padding: 1.4rem;
}

* {
    font-family: "微软雅黑", "SF Pro SC", "HanHei SC", "SF Pro Text", "Myriad Set Pro", "SF Pro Icons", "PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    box-sizing: border-box;
}

p {
    text-align: justify;
}

html {
    font-size: 14px;
    background: #f0f0f0;
    color: var(--font-color);
    position: relative;
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

html,body,ul,li,dl,dt,dd {
    padding: 0;
    margin: 0;
}

.ltr-layout {
    display: flex;
    flex-flow: row nowrap;
}

.banner-container {
    height: 260px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-wrapper {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    background-color: rgba(6, 27, 54, 0.6);
}
/*--------------- HEADER BEGIN ---------------*/
.header-section {
    position: relative;
}

.header-section .header-active {
    background: #FFFFFF;
    border-bottom: solid 1px #f0f0f0;
}

header {
    position: fixed;
    width: 100%;
    z-index: 1000;
}

header .header-wrapper {
    height: var(--header-height);
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    padding: 10px 1rem;
    justify-content: space-between;
    /*backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);*/
    transition: all ease-in 200ms;
}

header .logo-img {
    height: 30px;
    display: none;
}

header .menu-button-line {
    height: 1px;
    overflow: hidden;
    background: #FFFFFF;
    width: 20px;
    margin: 4px;
    transition: all ease-in 300ms;
}

.header-section .header-active .menu-button-line {
    background: var(--font-color)!important;
}

header .menu-option .menu-button-line:first-child {
    transform: translateY(5px) rotate(-45deg);
}

header .menu-option .menu-button-line:nth-child(2) {
    opacity: 0;
}

header .menu-option .menu-button-line:last-child {
    transform: translateY(-5px) rotate(45deg);
}

header .menu-bar .menu-item {
    padding: 4px;
    border-radius: 4px;
}

header .menu-bar .menu-item:active {
    background: var(--active-background-color);
}

/*menu*/
.header-section .menu-panel {
    position: fixed;
    width: 100%;
    height: 0;
    transition: all ease-in 200ms;
    box-sizing: border-box;
    z-index: 1000;
    overflow: auto;
    top: var(--header-height);
    background: #FFFFFF;
}

.header-section .menu-panel-slide-down {
    height: calc(100% - var(--header-height))!important;
    background: #FFFFFF;
}

.header-section .menu-panel .menu-panel-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow: auto;
    transition: all ease-in 200ms;
    opacity: 0;
}

.header-section .fade-in {
    transition-delay: 200ms;
    opacity: 1!important;
}

.rotate90 {
    transform: rotate(90deg);
}

/*menu-list*/
.header-section .menu-panel .menu-list, header .menu-list .submenu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.header-section .menu-panel .menu-list>li {
    border-bottom: solid 1px var(--devlier-color);
    padding: 0;
}

.header-section .menu-panel .menu-list .menu-name {
    font-size: 1rem;
    color: var(--font-color);
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 14px 20px;
}

.header-section .menu-panel .menu-list .menu-name .iconfont {
    transition: all ease-in 200ms;
}

.header-section .menu-panel .menu-list .submenu {
    padding: 0;
    margin-top: 0;
    list-style: none;
    display: none;
}

.header-section .menu-panel .menu-list .submenu li>a {
    display: flex;
    padding: 10px 20px;
    color: var(--font-color-gray);
    flex-flow: row nowrap;
    align-items: center;
    text-decoration: none;
}

.header-section .menu-panel .menu-list a.link {
    text-decoration: none;
}

.header-section .menu-panel .menu-list a.link:active {
    color: var(--active-color)!important;
}

.header-menu-item-icon {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 8px;
}

/*--------------- BANNER BEGIN ---------------*/
.swiper-container {
    height: 260px;
    position: relative;
}

.slide-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    text-decoration: none;
}

.banner-content-wrapper {
    background: rgba(6, 27, 54, 0.6);
    position: relative;
    height: 100%;
    margin-top: -20px;
}

.banner-content {
    margin-top: 20px;
    text-align: center;
    color: #888888;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
    padding: var(--page-h-padding);
}

.banner-content .banner-title {
    font-size: 2.4rem;
}

.banner-content .banner-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.banner-content .banner-text-sep {
    display: inline-block;
    border-top: 1px solid #cccccc;
    width: 100px;
    margin: 5px 0 10px
}

.banner-text-style {
    color: #FFFFFF;
    text-shadow:
            0 0 6px rgba(121, 133, 140, 0.4),
            0 0 6px rgba(121, 133, 140, 0.4),
            0 0 6px rgba(121, 133, 140, 0.4),
            0 0 6px rgba(121, 133, 140, 0.4);
}

.my-bullet-inactive {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 1rem;
    background: #FFFFFF44;
    bottom: 10px;
    display: inline-block;
    margin: 0 3px;
    transition: all ease-in 200ms;
}

.my-bullet-inactive-dark {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 1rem;
    background: #2f80ed44;
    bottom: 10px;
    display: inline-block;
    margin: 0 3px;
    transition: all ease-in 200ms;
}

.my-bullet-active {
    opacity: 1;
    border: none!important;
    background: var(--active-color)!important;
    width: 1rem;
    transition: all ease-in 200ms;
}

/*--------------- COMMON LINK BEGIN --------------*/
.common-link {
    cursor: pointer;
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: var(--active-color)!important;
}

.common-link::before {
    content: "";
    position: absolute;
    display: inline-block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    overflow: hidden;
    background-color: var(--active-color);
    transform: scaleX(0);
    transition: all 0.2s;
}

.common-link:hover::before,
.common-link:focus::before {
    transform: scaleX(1);
}

.common-link:hover {
    color: var(--active-color)!important;
}

/*--------------- RIPPLE BEGIN --------------*/
.ripple {
    overflow: hidden;
    position: relative;
}

.ripple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    padding: 50%;
    border-radius: 50%;
    margin: auto;
    background: rgba(0,0,0,.1);
    z-index: 1;
    transition: all .3s linear;
    transform: translate3d(-50%,-50%,0) scale(0);
    pointer-events: none;
}

.ripple:hover::before {
    transform: translate3d(-50%,-50%,0) scale(1.5)
}

/*--------------- SECTION --------------*/
.section-content {
    position: relative;
    box-sizing: border-box;
    padding: 2rem var(--page-h-padding);
}

.section-mask-wrapper {
    background: rgba(255,255,255,0.8);
}

.section-content-v {
    box-sizing: border-box;
    position: relative;
    padding: 2rem 0;
}

.section-caption {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    font-weight: bold;
}

.section-caption .deliver {
    background: #0770ea;
    height: 1px;
    overflow: hidden;
    width: 60px;
    margin: 6px auto 8px;
}

.section-caption .subtitle {
    font-size: 0.8rem;
    color: #0770ea;
    letter-spacing: 2px;
}

.center {
  text-align: center;
}

.section-desc {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
    color: var(--font-color);
    font-weight: 300;
}

.section-desc p {
    margin-bottom: 2rem;
    text-align: justify;
}

.rainbow-text {
    display: inline-block;
    background: linear-gradient(to right, #f1058b -10%, #0770ea 90%) repeat!important;
    background-clip: text!important;
    -webkit-background-clip: text!important;
    color: transparent!important;
    background-size: contain;
}

.button {
    font-size: 1rem;
    font-weight: bold;
    box-sizing: border-box;
    line-height: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--active-color);
    color: #fff;
    border: 1px solid transparent;
    position: relative;
    padding: 10px 30px;
    overflow: hidden;
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
}

.button .iconfont {
    font-size: 14px;
}

.swiper-slide-shadow .swiper-wrapper {
    padding: 20px 0 36px;
}

.swiper-slide-shadow .swiper-slide {
    box-shadow: 0 0 10px 0 #cccccc;
}

.with-bottom-gap {
    margin-bottom: 10px;
}

/*--------------- FOOTER MENU LIST --------------*/
#footer-section {
    background: #FFFFFF;
}
.footer-menu-list {
    padding: 0;
    margin: 0;
}

.footer-menu-list>li {
    border-bottom: solid 0.5px #efefef;
    padding: 0;
    list-style: none;
}

.footer-menu-list .menu-name {
    font-size: 0.8rem;
    color: var(--font-color);
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 10px var(--page-h-padding);
}

.footer-menu-list .menu-name .iconfont {
    transition: all ease-in 200ms;
}

.footer-menu-list .submenu {
    padding: 0;
    margin-top: 0;
    list-style: none;
    display: none;
}

.footer-menu-list .submenu li>a {
    display: flex;
    padding: 10px var(--page-h-padding);
    color: var(--font-color-gray);
    flex-flow: row nowrap;
    align-items: center;
    font-size: 0.8rem;
    text-decoration: none;
}

.footer-menu-list a.link:active {
    color: var(--active-color)!important;
}

footer {
    margin-top: 10px;
    font-size: 0.6rem;
    text-align: center;
}

.more-section {
    background: #FFFFFF;
}
/*--------------------------------*/
/*JM-FORM*/
#order-form {
    width: 100%;
}

.jm-form-item {
    display: flex;
    flex-flow: row nowrap;
    margin: 8px;
    flex: 1;
}

.jm-input-wrapper {
    position: relative;
    background: #f1f8fa;
    border: 1px solid transparent;
    padding: 1.4rem 0.6rem 0.6rem;
    border-radius: 4px;
    width: 100%;
    cursor: pointer;
    text-align: left;
}

.jm-input-wrapper-focus {
    border: 1px solid var(--deepblue-background);
}

.jm-input-label {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #959ca6;
    position: absolute;
    line-height: 22px;
    top: 1rem;
    transition: top .15s cubic-bezier(.4,0,.2,1),font-size .15s cubic-bezier(.4,0,.2,1),color .15s cubic-bezier(.4,0,.2,1);
}

.jm-input-label-above {
    font-size: 12px;
    top: 0.2rem;
    left: 0.6rem;
}

.jm-input {
    background: transparent;
    outline: none!important;
    width: 100%;
    height: 24px;
    cursor: pointer;
    color: var(--form-color);
    border: none!important;
}

.jm-input:-webkit-autofill {
    background: none;
    -webkit-box-shadow: 0 0 0 1000px #f1f8fa inset !important;
}

.jm-input-suffix {
    color: var(--form-color);
}

.jm-input:focus {
    cursor: text;
}

.jm-form-required-tips {
    color: #f1038a;
    margin: 10px 0 0px;
    padding: 10px;
    font-size: 0.8rem;
}

.jm-form-required-tips-color {
    color: #f1038a;
}

.jm-form-comments {
    color: #FFFFFF; text-align: left; padding: 10px; font-size: 0.6rem
}

.input-inner-button {
    position:absolute;
    height: 40px;
    line-height: 40px;
    width: 150px; top: 8px; right: 8px;
    background: #2f80ed;
    border: none;
    border-radius: 4px;
    color: #FFFFFF;
    display: block;
    font-size: 0.8rem;
    text-align: center;
}

.input-inner-button-loading {
    background: #bababb;
    cursor: not-allowed;
    color: #eeeeee;
}

.input-inner-unit {
    position:absolute;
    height: 100%;
    width: 50px; top: 0px; right: 0px;
    background: transparent;
    border: none;
    border-radius: 0 2px 2px 0;
    color: var(--form-color);
    font-size: 0.8rem;
    text-align: center;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    border-left: solid 1px #eeeeee;
}

/*------------ Banner Buttons ------------*/
.banner-buttons {
    border-top: none;
    margin-top: 10px;
    display: flex;
    flex-flow: nowrap;
}

.banner-button {
    border: none;
    background: var(--deepblue-background);
    border-radius: 6px;
    margin: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    cursor: pointer;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.2rem;
    display: inline-block;
    padding: 10px 14px;
}

.banner-button * {
    color: #eeeeee;
    text-decoration: none;
}

.banner-buttons .iconfont {
    font-size: 1.2rem!important;
}

/*----------------TOAST-----------------*/
.custom-toast-mask {
    position: fixed;
    width: 100%;
    height: 100%;
    left: -0px;
    top: -0px;
    background: transparent;
    z-index: 9999;
    box-sizing: border-box;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.custom-toast-message {
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    box-sizing: border-box;
    padding: 30px;
    background: rgba(0,0,0,0.7);
    color: #FFFFFF;
    word-break: break-all;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: none;
}

.custom-toast-message-success {
    background: rgba(3, 145, 42, 0.7);
}

.custom-toast-message-error {
    background: rgba(252, 60, 33, 0.7);
}
/*----------------- PROCESS -----------------*/
.service-process-container {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

.service-process-container .iconfont {
    font-size: 1.4rem;
    color: #0583dc;
    margin: 4px;
}

.service-process-container .service-node {
    box-sizing: border-box;
    padding: 4px;
    width: 80px;
    height: 80px;
    border-radius: 100px;
    background: linear-gradient(130deg, #23bbee, #094de0) repeat!important;
    color: #FFFFFF;
    font-size: 0.5rem;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 10px 0 rgba(8, 45, 124, 0.6);
    border: solid 3px #e4eeef;
    transition: all ease-in 200ms;
    margin: 6px 2px;
}

.service-process-container .service-node:hover {
    box-shadow: 0 0 20px 0 rgba(8, 45, 124, 0.7);
}
/*--------- NEWS ----------*/
.news-panel-swiper .swiper-slide {
    width: calc(100% - 2rem);
    box-sizing: border-box;
    border-radius: 10px;
    background: #FFFFFF;
    position: relative;
}

.news-panel-swiper .swiper-wrapper {
    position: relative;
    height: 100%;
}

.com-news {
    display: flex;
    width: 100%;
    height: 100%!important;
    min-height: 360px;
    position: relative;
    flex-flow: column;
}

.com-news .banner {
    height: 200px;
    border-radius: 10px 10px 0 0;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    overflow: hidden;
    object-fit: cover;
    align-items: center;
}

.com-news .summary {
    box-sizing: border-box;
    padding: 20px;
    flex: 1;
}

.com-news .summary .title {
    font-size: 1.4rem;
}

.com-news .summary .subtitle {
    font-size: 12px;
    color: #aaaaaa;
    margin: 5px 0;
}

/*-------------- TO TOP BUTTON --------------*/
.to-top-button {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: #034eb2CC;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    display: none;
    z-index: 998;
}

.to-top-button .wrapper {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}

.to-top-button i {
    font-size: 2rem;
}


/*---------------*/

.ent-qrcode {
    margin-top: 30px;
    display: flex;
    flex-flow: row;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.ent-qrcode .lm-item {
    margin-left: 20px;
    text-align: center;
    background: rgb(245, 245, 247);
    box-sizing: border-box;
    padding: 20px 20px 10px;
    border-radius: 10px;
    color: #aaaaaa;
    text-decoration: none;
}
.ent-qrcode .lm-item img {
    transition: all ease-in 0.3s;
}

.ent-qrcode .lm-item .name {
    transition: all ease-in 0.3s;
    box-sizing: border-box;
    padding: 4px 0 10px;
    font-size: 0.8rem;
}


.ent-qrcode .lm-item:hover img{
    transform: scale(1.3);
}
