@import url("iconfont.css");

:root {
    --m-width: 100%;
    --m-color: #1e22aa;
    --s-color: #353ACC;
    --strong-color: #e8c01d;
    --index-industry-width: calc(33.3vw - 16px)
}

@font-face {
    font-family: InstrumentSans;
    src: url("/fonts/InstrumentSans.ttf");
}

@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-Light-6.otf");
}

* {
    font-family: InstrumentSans, Noto Sans SC, Helvetica Neue, Helvetica, PingFang SC, 'MicroSoft YaHei', sans-serif;
}

.mont {
    font-family: Montserrat, Noto Sans SC, Helvetica Neue, Helvetica, PingFang SC, 'MicroSoft YaHei', sans-serif;
}

ul {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

a {
    text-decoration: none;
}

body {
    padding: 0;
    margin: 0;
}

.tscroll::-webkit-scrollbar {
    width: 6px;
    height: 10px;
    background-color: #f5f5f5;
}

.tscroll::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 5px;
}

.tscroll::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.tscroll::-webkit-scrollbar-track {
    background-color: #f5f5f5;
    border-radius: 5px;
}

.footer {
    min-height: 180px;
    background: rgba(30, 34, 170, 0.01);
    box-shadow: -1px -2px 5px -1px rgba(0, 0, 0, 0.15);
    color: #474747;
}

.footer a:hover {
    color: var(--m-color);
}

.copyright {
    color: #8F8F8F !important;
    background: #e3e3e3;
    text-align: center;
    font-size: 13px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 4px 0px;
    box-sizing: border-box;
}

.copyright a {
    color: #8F8F8F;
    margin-left: 12px;
}

.footer-first-line {
    padding: 14px;
    box-sizing: border-box;
}

.footer-first-line-logo {
    padding-top: 14px;
}

.footer-first-line-logo>img {
    width: 176px;
    margin-bottom: 20px;
}

.footer-contact-f-list {
    display: flex;
    align-items: center;
    column-gap: 14px;
}

.footer-contact-f-list>a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.footer-contact-f-list>a svg {
    width: 26px;
    height: 26px;
    fill: #aaa;
    display: block;
}


.footer-contact-f-list>a>i.icon-linkedin {
    font-size: 22px;
}

.footer-contact-f-list>a:hover>svg {
    fill: var(--m-color);
}

.footer-footer-part {
    width: 100%;
    max-width: 100vw;
}

.m-header {
    height: 60px;
    width: 100vw;
    z-index: 900;
    position: relative;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    position: -webkit-sticky;
    top: 0px;
    z-index: 9999;
    background: white;
}

.header-mask {
    content: "";
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3ms ease-in-out;
}

.m-header-logo>img {
    height: 20px;
}

.m-menu-part {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 60px;
    height: 60px;
}

.m-menu-button {
    width: 60px;
    height: 60px;
    background: none;
    outline: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding-right: 18px;
    box-sizing: border-box;
}

.m-menu-button>span {
    transition: transform 0.3s ease-in-out;
    display: inline-block;
}

.m-menu-button>span:nth-of-type(1) {
    width: 24px;
    height: 2px;
    background: #000;
    margin-bottom: 8px;
}

.m-menu-button>span:nth-of-type(2) {
    width: 18px;
    height: 2px;
    background: #000;
}

.m-menu-button-close>span:nth-of-type(1) {
    transform: rotate(45deg);
    transform-origin: 12px 1px;
    width: 24px;
    position: relative;
    top: 5px;
}

.m-menu-button-close>span:nth-of-type(2) {
    transform: rotate(-45deg);
    transform-origin: 12px 1px;
    width: 24px;
    position: relative;
    bottom: 5px;
}

.title {
    font-size: 28px;
    margin-bottom: 16px;
    color: #333;
}

.header {
    height: 0px;
    width: 100vw;
    z-index: 9990 !important;
    position: fixed;
    left: 0px;
    top: 60px;
    background: #fbfbfd;
    box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.1);
}

.nav {
    z-index: 900;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transition-duration: 0.32s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
    transition-delay: 0s;
    transition-property: height;
    overflow: hidden;
    height: 0;
    background: #fbfbfd;
}

.header-menu {
    max-height: 380px;
    overflow-y: scroll;
    margin-top: 6px;
}

.header-menu>li {
    position: relative;
    display: block;
}

.header-menu>li>a {
    display: inline-block;
    height: 100%;
    width: 100%;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: left;
    box-sizing: border-box;
    padding: 0 20px;
    overflow: hidden;
    position: relative;
    color: #333;
    border-bottom: 1px solid rgba(90, 90, 90, 0.08);

}


.header .logo-blue {
    display: none !important;
}


.header-menu>li>a>span {
    position: relative;
    height: 48px;
    line-height: 48px;
}

.header-menu>li>a>span::after {
    content: "";
    border-bottom: 2px solid var(--m-color);
    display: block;
    width: 0%;
    position: absolute;
    bottom: 20px;
}

.header-menu-sub-menu {
    position: absolute;
    top: 80px;
    right: -870px;
    z-index: 998;
    background: rgba(50, 50, 50, 0.5);
    background: var(--m-color);
    background: white;
    box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.1);
    display: none;
    width: 1130px;
}

.header-menu-sub-menu-no-expand {
    width: 100%;
}

.header-menu-sub-menu-part {
    height: 100%;
}

.header-menu-triangle {
    position: absolute;
    right: 24px;
    top: 26px;
    width: 12px;
    height: 6px;
    z-index: 900;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s;
    transform-origin: 6px 0px;
}

.header-menu-triangle::after {
    content: "";
    width: 0;
    height: 0;
    border-width: 6px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.header-menu-sub-menu-ul {
    position: relative;
    background: #eee;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
}

.header-menu-sub-menu-ul>li {
    height: 48px;
}


.header-menu-sub-menu-ul>li>a {
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 16px 0px 20px;
    color: #101121;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(210, 210, 210, 0.35);
}

.header-menu-sub-menu-ul>li:last-of-type>a {
    border: none;
}

.header-menu-sub-menu-ul>li>a>i {
    font-size: 24px;
    flex-shrink: 0;
}

.header-menu-sub-menu-ul>li>a>span {
    text-align: left;
    padding-left: 4px;
    flex-grow: 1;
}

.show-right-detail>div {
    display: block !important;
}

.header-menu-sub-menu-ul>li:hover>div {
    display: block;
}

.header-menu-sub-back-div {
    width: 100%;
    height: 100px;
    height: 350px;
    background: white;
    position: absolute;
    left: 0px;
    top: 80px;
    z-index: 100;
    box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.1);
    background: #f7f8ff;
    background: linear-gradient(to right, #f7f8ff 50%, #fff 50%);
    display: none;
}

.header-menu-sub-show {
    display: block;
}

.header-top-right-triangle::before {
    content: "";
    border-right: 30px solid rgba(252, 252, 255, 0.03);
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
}

.header-top-right-triangle::after {
    content: "";
    background: rgba(252, 252, 255, 0.03);
    width: 10px;
    height: 80px;
}

.index-head-form-input {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: left;
    color: white;
    margin-left: 40px;
    position: relative;
    z-index: 100;
    bottom: 4px;
}

.index-head-form-input::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0px;
    width: 130px;
    border-bottom: 1px solid rgba(252, 252, 255, 0.3);
    z-index: 1006;
}

.index-head-form-input>span {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1006;
}

.index-head-form-input>span>i {
    font-size: 18px;
    color: white;
}

.index-head-form-input>span svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.index-head-form-input>div {
    width: 100px;
    height: 32px;
}

.index-head-form-input>div>input {
    width: 100%;
    box-sizing: border-box;
    height: 100%;
    padding: 0 6px;
    background: none;
    border: none;
    outline: none;
    color: white;
    font-size: 12px;
}

.index-lang-select {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    position: relative;
    height: 32px;
    border: 1px solid rgba(0, 0, 0, 0);
}

.index-lang-select-value {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 12px;
    cursor: pointer;
    box-sizing: border-box;
    padding-left: 10px;
    z-index: 1004;
}

.index-lang-select-value>i {
    transform: rotate(90deg);
    color: white;
    font-size: 16px;
    display: inline-block;
    position: absolute;
    right: 4px;
}

.index-lang-select-option {
    width: calc(100% + 36px);
    box-sizing: border-box;
    position: absolute;
    top: 0px;
    right: -3px;
    color: white;
    cursor: pointer;
    display: none;
    z-index: 999;
    padding-top: 32px;
    background: #f5f6fc;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.08);
}

.index-lang-select-option>div {
    height: 26px;
    display: flex;
    align-items: center;
    padding-left: 40px;
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 3px;
}

.index-lang-select-option>div:hover {
    background: var(--m-color);
    color: white;
}

.index-head-form-input-lang:hover .index-lang-select-option {
    display: block;
    cursor: pointer;
}

.index-head-form-input-lang:hover>span svg {
    fill: #474747;
}

.index-head-form-input-lang:hover .index-lang-select-value,
.index-lang-select-option>div {
    color: #474747;
}

.index-head-form-input-lang:hover::before {
    border-bottom: 1px solid #9e9ea1;
}

.pro-menu-detail-show-part {
    width: 520px;
    padding-bottom: 16px;
    box-sizing: border-box;
    flex-grow: 1;
    background: #f7f8ff;
    display: flex;
    box-sizing: border-box;
    padding-left: 36px;
}

.pro-menu-detail-show-part-rugged-gis {
    display: grid;
    grid-template-columns: auto 1fr
}


.pro-menu-detail-show-links {
    margin-bottom: 10px;
    margin-right: 32px;
}

.pro-menu-detail-show-links>a {
    color: #101121;
    height: 32px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    font-size: 16px;
    white-space: nowrap;
    margin: 0 12px 0 0px;
    font-weight: 600;
    position: relative;
}

.pro-menu-detail-show-links>a:hover {
    color: var(--m-color);
    border-radius: 4px;
    text-decoration: underline;
}

.pro-menu-detail-show-links>a>span:last-of-type {
    position: absolute;
    left: 0px;
    top: 24px;
    font-size: 12px;
}

.pro-menu-detail-show-title {
    font-size: 14px;
    color: var(--m-color);
    color: #a6a6a6;
    display: flex;
    font-weight: bolder;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    padding-right: 24px;
    position: relative;
    min-width: 70px;
}

.pro-menu-detail-show-title::after {
    content: attr(data-title);
    display: block;
    font-size: 12px;
    line-height: 14px;
    font-weight: normal !important;
    white-space: nowrap;
}

.pro-menu-detail-show-title::before {
    content: "";
    position: absolute;
    right: 0px;
    height: 16px;
    width: 1px;
    border-right: 1px solid #e2e4eb;
    ;
}

.pro-menu-detail-show-part>div:last-of-type>.pro-menu-detail-show-title::before {
    display: none;
}

.pro-menu-detail-show-part-rugged-gis>div:nth-of-type(even)>.pro-menu-detail-show-title::before {
    display: none;
}

.pro-menu-expand-part {
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 901;
    box-sizing: border-box;
    border-left: 2px solid #edf3fe;
    position: relative;
}

.pro-menu-expand-part>.index-card-learn-more-alink {
    min-width: 140px;
    display: flex;
    position: absolute;
    bottom: 20px;
    left: 36px;
    height: 32px;
    font-size: 14px;
    display: none;
}

.pro-menu-expand-title {
    display: flex;
    align-items: center;
    color: #101121;
    padding-left: 36px;
    height: 70px;
    font-size: 16px;
    font-size: 18px;
    margin-bottom: -6px;
    font-weight: 600;
}

.pro-menu-expand-title::before {
    content: "";
    height: 16px;
    border-right: 3px solid var(--m-color);
    margin-right: 6px;
}

.header-sub-right-img-part {
    position: relative;
    pointer-events: none;
    display: flex;
    justify-content: right;
    max-height: 350px;
    min-height: 350px;
}

.header-sub-right-content {
    width: 350px;
    background: #fff;
}

.header-sub-right-content-img {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 28px;
}

.header-sub-right-content-img>img {
    max-width: 260px;
    max-height: 260px;
}

.header-sub-right-content-img>span {
    font-weight: bolder;
    font-size: 20px;
    font-weight: 600;
    display: block;
    width: 100%;
    padding: 0px;
    box-sizing: border-box;
    color: #333;
}

.header-sub-right-content-img>span.index-pros-show-sub-span {
    font-weight: normal;
    font-size: 12px;
    padding-top: 6px;
    color: #666;
}

.header-sub-right-content-img>span.index-pros-show-span {
    color: var(--m-color);
}

.big-img-part {
    overflow: hidden;
    width: 100vw;
    height: calc(100vh - 60px);
    position: relative;
    z-index: 10;
}

.big-img-content {
    position: absolute;
    bottom: 0px;
    display: flex;
    transition: left 1.0s ease-in-out;
    -moz-transition: left 1.0s ease-in-out;
    -webkit-transition: left 1.0s ease-in-out;
    -o-transition: left 1.0s ease-in-out;
}

.big-img-content>div {
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center top;
    width: 100vw;
    height: calc(100vh - 60px);
    min-height: calc(var(--m-width) * 0.5);
    max-height: 100vh;
}

.big-img-content>img {
    width: 100vw;
}

.c-big-img-part {
    overflow: hidden;
    width: 100%;
    min-width: var(--m-width);
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.c-big-img-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-big-img-content>img {
    height: 320px;
    width: auto;
}

.no-tran {
    transition: none !important;
    -moz-transition: none !important;
    -webkit-transition: none !important;
    -o-transition: none !important;
}

.big-img-bnts {
    display: flex;
    align-items: center;
    height: 48px;
    justify-content: center;
}

.big-img-bnts>div {
    width: 20px;
    height: 3px;
    background: #eaeaea;
    margin-right: 6px;
}

.big-img-bnts>div.active {
    background: var(--m-color);
}

.big-img-cover-tok-part {
    z-index: 997;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100px;
    box-sizing: border-box;
    color: white;
}

.big-img-cover-tok-content {
    padding: 20px 14px 0px 14px;
    display: none;
}

.big-img-cover-tok-content>div:nth-of-type(1) {
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 1);
    text-align: left;
}

.big-img-cover-tok-content>div:nth-of-type(2) {
    margin-top: 6px;
    height: 32px;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 29.26px;
    color: rgba(250, 250, 250, 1);
    text-align: left;
}

.big-img-cover-tok-content>div:nth-of-type(3) {
    margin-top: -4px;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(30, 34, 170, 1);
    text-align: left;
    display: flex;
    align-items: center;
}

.big-img-cover-tok-content>div:nth-of-type(3)::before {
    content: "";
    height: 20px;
    border-right: 3px solid var(--m-color);
    margin-right: 6px;
}

.big-img-cover-info-part {
    z-index: 998;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 190px;
    background: rgba(13, 15, 51, 0.25);
    color: white;
}

.big-img-cover-info-content {
    width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
}

.index-big-img-contact-desc {
    font-size: 14px;
    margin-top: 2px;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    line-height: 24px;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
}

.index-big-img-contact-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.index-big-img-contact-line>div:nth-of-type(1) {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    padding-left: 74px;
    column-gap: 10px;
}

.index-big-img-contact-line>div:nth-of-type(2) {
    flex-grow: 0;
    flex-shrink: 0;
}

.index-big-img-contact-btn {
    height: 32px;
    color: white;
    font-size: 14px;
    color: white;
    background: var(--m-color);
    display: flex;
    min-width: 100px;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 0 4px;
}

.index-opt-next-page-part {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.index-opt-next-page-part>a {
    width: 32px;
    height: 32px;
    opacity: 1;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}


.index-opt-next-page-part>a>i {
    color: white;
    font-size: 20px;
}

.index-opt-next-page-part>a:nth-of-type(1) {
    transform: rotate(180deg);
}

.contact-m-part {
    height: 60px;
    width: var(--m-width);
    margin: auto;
    margin-top: 26px;
    height: 580px;
    position: relative;
}

.contact-box {
    box-sizing: border-box;
    padding: 36px;
    width: 400px;
    height: 340px;
    position: absolute;
    left: 0px;
    top: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.contact-title {
    font-size: 28px;
    color: #333;
}

.contact-tb {
    display: grid;
    grid-column: minmax();
    display: grid;
    grid-template-columns: auto minmax(10px, 1fr);
    grid-row-gap: 16px;
    grid-column-gap: 6px;
    margin-top: 20px;
}

.contact-tb>div {
    color: #8a8a8a;
    font-size: 16px;
}

.contact-tb>div:nth-of-type(odd) {
    text-align: right;
}

.contact-map {
    width: 700px;
    height: 520px;
    position: absolute;
    right: 0px;
    top: 10px;
}


.foot-menu-part {
    min-height: 110px;
    flex-grow: 1;
    justify-content: space-around;
    padding: 4px 14px 32px 14px;
    box-sizing: border-box;
}

.foot-menu-one-col {
    flex-shrink: 0;
    box-sizing: border-box;
}

.foot-menu-one-col-mobile {
    display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
}

.foot-menu-one-col-mobile>div {
    flex-shrink: 0;
    overflow-x: hidden;
}

.foot-menu-one-col-mobile>div:first-of-type::after {
    content: "";
    height: 0px;
    width: calc(100vw - 50px);
    display: block;
}

.footer-first-text {
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 4px;
    color: var(--m-color);
    position: relative;
    width: auto;
    display: block;
    font-weight: 600;
}

.footer-first-text>a {
    color: var(--m-color);
    display: inline-block;
    border-bottom: 8px solid #e0e0e0;
    padding: 0 4px;
}

.footer-first-text>a>span {
    position: relative;
    top: 8px;
    height: 16px;
    font-weight: 600;
}

.footer-second-text {
    font-size: 12px;
    height: 26px;
    color: #9d9ea0;
}

.footer-second-text-full {
    height: 10px;
}

.footer-second-text-full::after {
    content: "";
    display: block;
    width: calc(100vw - 50px);
}

.footer-download-pdf-part {
    display: grid;
    row-gap: 4px;
}

.footer-second-text>a {
    color: #474747;
    font-size: 14px;
    font-weight: 500;
}

.footer-second-text>a.footer-download-a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.footer-second-text>a.footer-download-a>i {
    font-size: 16px;
    margin-left: 10px;
    color: var(--m-color);
}

.footer-contact-t {
    margin-bottom: 4px;
    margin-top: 14px;
    color: var(--m-color);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.footer-contact-t>i {
    margin-right: 3px;
}

.footer-contact-t>svg {
    margin-right: 3px;
    width: 14px;
    height: 14px;
    fill: var(--m-color);
}

.footer-contact-v {
    font-size: 14px;
    line-height: 22px;
    color: #474747;
    font-weight: 500;

}

.footer-pros-list-part {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 24px;
    row-gap: 4px;
}

.footer-pros-type-alink>a {
    display: flex;
    align-items: center;
}

.footer-pros-type-alink>a>svg {
    width: 18px;
    height: 18px;
    fill: #2b2b2b;
    margin-right: 4px;
}

.footer-contact-v>.t {
    font-weight: 500;
}

.footer-contact-v>.d {
    font-weight: 500;
}

.footer-contact-v-split-line {
    width: 180px;
    border-bottom: 1px solid rgba(230, 230, 230, 0.6);
    margin-top: 5px;
    margin-bottom: 5px;
}

.foot-menu {
    display: flex;
    justify-content: flex-start;
    height: 110px;
}

.foot-contact-info-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    max-width: 400px;
    font-size: 14px;
    color: #aaa;
    row-gap: 12px;
    column-gap: 8px;
}

.foot-contact-info-grid>div:nth-of-type(odd) {
    text-align: right;
}

.foot-menu>li {
    padding: 0 40px 0 0;
}

.company-part {
    width: var(--m-width);
    margin: auto;
    margin-top: 32px;
}

.paragraph {
    color: #666;
    line-height: 32px;
    font-size: 18px;
}

.event-year {
    height: 32px;
    font-size: 28px;
    font-family: DINAlternate-Bold, DINAlternate, "Microsoft YaHei";
    font-weight: 700;
    color: var(--m-color);
    line-height: 32px;
    margin-right: 12px;
}

.event-top {
    display: flex;
    font-size: 24px;
    align-items: center;
    color: #333;
}

.event-item {
    position: relative;
}

.event-title {
    margin-left: 44px;
}

.event-body {
    font-size: 18px;
    color: #666;
    line-height: 36px;
    padding: 24px 0px 24px 130px;
}

.event-body::before {
    border-left: 2px solid #cceaff;
    height: calc(100% - 40px);
    width: 1px;
    content: " ";
    position: absolute;
    left: 33px;
    top: 36px;
}


.no-line::before {
    display: none;
}

.company-honor {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: left;
    margin-bottom: 8px;
    padding-top: 8px;
}

.company-honor>div {
    margin-right: 32px;
    margin-bottom: 32px;
}

.company-intro-title {
    color: var(--m-color);
    font-weight: bolder;
    font-size: 20px;
    margin-bottom: 10px;
}

.company-value {
    background: #f5f8fb;
    width: var(--m-width);
    min-height: 100px;
    margin-bottom: 48px;
    color: #777;
    padding: 24px 0px 24px 54px;
}

.company-value>div {
    font-size: 24px;
    line-height: 52px;
}

.product-part {
    width: var(--m-width);
    margin: auto;
    margin-top: 32px;
}

.product-img-list img {
    height: 64px;
}

.product-img-list {
    display: flex;
    margin-bottom: 24px;
}

.product-img-list .active {
    border: 1px solid var(--m-color);
}

.product-img-list>a {
    border: 1px solid #eee;
    width: 150px;
    margin-right: 18px;
    text-align: center;
    border-radius: 4px;
}

.product-img-list>a:hover {
    border-color: var(--m-color);
}

.product-img-list>a>div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 120px;
    background: #f3f3f3;
    margin-right: 12px;
}

.product-img-list>a>span {
    color: #333;
    text-align: center;
    display: inline-block;
    width: 130px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.product-img-info {
    display: flex;
    margin-bottom: 32px;
}

.product-img-info>div {
    height: 500px;
    width: 50%;
    box-sizing: border-box;
}



.product-device>div:first-of-type {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f3f3f3;
    height: 400px;
}

.product-device>div:first-of-type>img {
    width: 320px;
}

.product-device>div:nth-of-type(2) {
    display: flex;
    justify-content: left;
    align-items: center;
    padding-top: 10px;
}

.product-device>div:nth-of-type(2)>img {
    height: 70px;
    border: 1px solid #ddd;
    margin-right: 10px;
    cursor: pointer;
}

.product-device>div:nth-of-type(2)>img:hover {
    border: 1px solid var(--m-color);
}

.product-intro-info {
    padding: 0px 0px 10px 48px;
}

.product-intro-info-title {
    font-size: 24px;
    line-height: 32px;
    color: var(--m-color);
}

.product-intro-info-desc {
    color: #666;
    line-height: 32px;
    margin-bottom: 22px;
}

.product-ch-info {
    color: #666;
    line-height: 30px;
    font-size: 16px;
}

.product-ch-info>div>span {
    margin-right: 4px;
}




.gray-bg {
    background: #f7f7f7;
}

.product-param-table {
    padding-bottom: 48px;
}


.main-base-product {
    width: var(--m-width);
    margin: auto;
    display: flex;
    padding: 42px 0px;
}

.main-base-product>div {
    box-sizing: border-box;
}

.main-base-img {
    width: 55%;
}

.main-base-img>img {
    width: 256px;
    height: 320px;
    margin-left: 100px;
}

.main-base-info {
    width: 45%;
    padding-top: 30px;
    padding-left: 36px;
}

.main-base-info>div:nth-of-type(1) {
    color: #333;
    font-size: 24px;
    margin-bottom: 12px;
}

.main-base-info>div:nth-of-type(n+2) {
    color: #666;
    line-height: 32px;
    font-size: 16px;
}

.main-base-second {
    background: #f2f2f2;
    height: 460px;
}

.main-base-second>div {
    display: flex;
    width: var(--m-width);
    margin: auto;
}

.main-base-second>div>div {
    border: 0px solid red;
}

.main-base-second>div>div:nth-of-type(1) {
    width: 55%;
    box-sizing: border-box;
}

.main-base-second>div>div:nth-of-type(2) {
    width: 45%;
    padding-left: 40px;
    box-sizing: border-box;
}

.main-base-second>div>div>img {
    height: 320px;
    margin-top: 70px;
}

.main-base-apply {
    width: var(--m-width);
    margin: auto;
    margin-top: 36px;
    padding-bottom: 48px;
}

.main-base-apply-title {
    font-size: 28px;
    color: #333;
    text-align: center;
    margin-bottom: 28px;
}

.main-base-apply-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-base-apply-area>div {
    box-sizing: border-box;
}

.main-base-apply-area>div>img {
    border: 0px solid #d9d9d9;
}

.main-m-rtk {
    background: #f2f2f2;
    text-align: center;
    padding-top: 68px;
}

.main-m-rtk>span {
    color: #333;
    font-size: 24px;
    margin-top: 8px;
    display: inline-block;
}


.main-base-second-info {
    width: 45%;
    padding-top: 88px;
    padding-left: 96px;
}

.main-base-second-info>div:nth-of-type(1) {
    color: #333;
    font-size: 24px;
    margin-bottom: 12px;
}

.main-base-second-info>div:nth-of-type(n+2) {
    color: #666;
    line-height: 32px;
    font-size: 16px;
}

.language-select>option {
    height: 32px;
}

.main-base-index-part {
    width: var(--m-width);
    margin: auto;
    padding: 24px 0px 24px 0px;
}

.main-base-index-part-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: var(--m-color);
    margin-bottom: 32px;
}

.main-base-index-part-title>span {
    width: auto;
    border-bottom: 18px solid #e0e0e0;
    position: relative;
    bottom: 18px;
    padding: 0 6px;
}

.main-base-index-part-title>span>span {
    position: relative;
    top: 18px;
}

.main-base-index-part-industry {
    z-index: 1002;
    position: relative;
}

.main-industry-list {
    display: grid;
    grid-template-columns: repeat(3, var(--index-industry-width));
    width: calc(3 * var(--index-industry-width) + 24px);
    margin: auto;
    column-gap: 12px;
    row-gap: 12px;
    position: relative;
    z-index: 90;
}


.main-industry-one>a {
    display: block;
    margin: auto;
    box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.main-industry-one>a>div:nth-of-type(1) {
    width: var(--index-industry-width);
    height: var(--index-industry-width);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 4px 4px 0px 0px;
    overflow: hidden;
}

.main-industry-one>a>div:nth-of-type(2) {
    color: var(--m-color);
    border-radius: 0 0 4px 4px;
    text-align: center;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}

.main-industry-one-img-p>div:nth-of-type(1) {
    background: var(--m-color);
    width: var(--index-industry-width);
    height: var(--index-industry-width);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-industry-one-img-p>div:nth-of-type(2) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--index-industry-width);
    height: var(--index-industry-width);
    flex-shrink: 0;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition-property: background-size;
    transition-duration: 300ms;
    transition-timing-function: linear;
    background-size: var(--index-industry-width);
}

.main-industry-one-img-p>div:nth-of-type(2)>img {
    z-index: 10;
}

.main-industry-one-img-p>div:nth-of-type(2)::before {
    content: "";
    width: var(--index-industry-width);
    height: var(--index-industry-width);
    position: absolute;
    opacity: 0.4;
    background: #999;
    z-index: 1;
}

.main-industry-one-img-p>div svg {
    width: 40px;
    height: 40px;
}

.main-industry-one-img-p>div:nth-of-type(1) svg {
    fill: white;
}

.main-industry-one-img-p>div:nth-of-type(2)>svg {
    fill: var(--m-color);
    fill: white;
    z-index: 10;
}

.main-industry-one>a .main-industry-one-img-p>div:nth-of-type(1) {
    display: none;
}

.main-industry-one>a .main-industry-one-img-p>div:nth-of-type(2) {
    display: flex;
    background-size: calc(var(--index-industry-width) * 1.1);
}



.index-learn-more-line {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 32px;
}

.index-learn-more-alink {
    height: 48px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--m-color);
    color: var(--m-color);
    position: relative;
    font-size: 18px;
}

.index-learn-more-alink>i {
    position: absolute;
    font-size: 24px;
    right: 6px;
}

.index-learn-more-alink:hover {
    color: var(--m-color);
    border-color: var(--m-color);
    background: var(--m-color);
    color: white;
}

.index-card-learn-more-alink {
    height: 26px;
    min-width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--m-color);
    position: relative;
    font-size: 13px;
    border: 1px solid var(--m-color);
    z-index: 999;
    padding-left: 14px;
}

.index-card-learn-more-alink>i {
    font-size: 20px;
    margin-left: 2px;
    position: relative;
    top: 1px;
}


.index-pro-two-cols {
    padding-top: 42px;
    display: grid;
    margin: 0 12px;
    row-gap: 42px;
}

.index-pro-two-cols>div:nth-of-type(1) {
    display: flex;
    flex-direction: column;
    row-gap: 42px;

}

.index-pros-line-part {
    min-height: 500px;
}

.index-base-pros-card {
    background: #f8f8f8;
    border-radius: 4px;
    position: relative;
    background: rgba(33, 33, 33, 0.01);
    box-shadow: 0px 0px 4px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.65s cubic-bezier(0.19, 1, 0.22, 1);
}

.index-base-pros-card:hover {
    background: rgba(33, 33, 33, 0.03);
    box-shadow: 0 4px 20px 5px rgba(217, 223, 231, 0.8);
}

.index-base-pros-card-rtk {
    margin: 0 12px;
}


.index-base-pros-card-title {
    height: 36px;
    font-size: 16px;
    position: absolute;
    left: 0px;
    top: -18px;
    color: white;
    display: flex;
    align-items: center;
}

.index-base-pros-card-title>span {
    background: var(--m-color);
    padding: 0 14px 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
}

.index-base-pros-card-title::after {
    content: "";
    display: inline-block;
    width: 32px;
    height: 36px;
    background: var(--m-color);
    transform: skew(28deg);
    position: relative;
    right: 21px;
    z-index: 1;
}

.index-antenna-divide-line {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.index-rtk-divide-line {
    border-bottom: 1px solid #e0e0e0;
}

.index-gnss-recv-one {
    border-right: 1px solid #eee;
    box-sizing: border-box;
    padding: 40px 0px 0px 0px;
}

.index-gnss-recv-one-cors {
    box-sizing: border-box;
    padding: 20px 0px 0px 0px;
}

.index-gnss-recv-card {
    display: grid;
}

.index-gnss-recv-body {
    position: relative;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.index-pro-two-cols .index-gnss-recv-body {
    column-gap: 0px;
}

.index-gnss-recv-body-text {
    max-width: 240px;
    padding-right: 14px;
}

.index-gnss-recv-body-text>div:nth-of-type(1) {
    font-size: 18px;
    color: var(--m-color);
    margin-bottom: 6px;
    font-weight: 500;
}

.index-gnss-recv-body-text>div:nth-of-type(2) {
    font-size: 14px;
    color: #101121;
    line-height: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.index-gnss-recv-body-img {
    flex-shrink: 0;
}

.index-gnss-recv-body-img>img {
    width: 120px;
}


.index-gnss-recv-body-img-tsurvey {
    padding-top: 6px;
    overflow: hidden;
}

.index-gnss-recv-body-img-tsurvey:hover {
    transform: scale(1.2);
}

.index-gnss-recv-title {
    font-size: 16px;
    font-weight: 600;
    color: #101121;
    padding-left: 12px;
}

.index-gnss-recv-title>span:last-of-type {
    font-size: 12px;
    margin-left: 2px;
    font-weight: 500;
    display: block;
}

.index-base-pros-more-alink {
    height: 36px;
    right: 14px;
    top: 14px;
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
    padding-top: 4px;
}

.index-base-pros-more-software {
    padding-top: 10px;
}

.main-pros-list {
    display: grid;
    grid-template-columns: repeat(3, calc(33.33% - 20px));
    column-gap: 30px;
    padding-top: 28px;
}

.main-pros-list>div {
    height: 500px;
}

.main-pros-one-card {
    background-image: url("../img/pro_bg.png");
    box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.04);
    border-radius: 4px;
    width: 100%;
    height: 500px;
    background-size: auto 100%;
    background-repeat: no-repeat;
    user-select: none;
}

.main-pros-one-card-type {
    width: 240px;
    height: 56px;
    margin: auto;
    position: relative;
    bottom: 28px;
    background: white;
    border-radius: 4px;
    background: white;
    box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bolder;
    font-size: 18px;
    color: #333;
}

.main-pros-one-card-title {
    text-align: center;
    color: #333;
    font-weight: bolder;
    margin-bottom: 10px;
    padding: 0 14px;
}

.main-pros-one-card-desc {
    text-align: center;
    color: #999;
    font-size: 14px;
    padding: 0 14px;
}

.main-pros-one-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    margin-bottom: 10px;
}

.main-pros-one-card-img>img {
    width: 250px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.main-pros-one-card-img2>img {
    width: 200px;
}

.main-pros-one-card-img3>img {
    width: 170px;
    position: relative;
    bottom: 6px;
}

.main-pros-one-card-img:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.main-pros-one-card-more {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-pros-one-card-t {
    height: 80px;
}

.index-new-events-list {
    margin: 0 12px;
    display: grid;
    row-gap: 16px;
}

.index-new-events-list>div {
    height: 200px;
    box-sizing: border-box;
    border-radius: 4px;
    background: rgba(33, 33, 33, 0.01);
    box-shadow: 0px 0px 4px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.65s cubic-bezier(0.19, 1, 0.22, 1);
}

.index-new-events-list>div:hover {
    background: rgba(33, 33, 33, 0.03);
    box-shadow: 0 4px 20px 5px rgba(217, 223, 231, 0.8);
}


.index-new-events-alink {
    width: 100%;
    height: 200px;
    box-sizing: border-box;
    user-select: none;
    position: relative;
    padding: 14px 14px 0px 14px;
}

.index-new-events-alink>img {
    position: absolute;
    right: 14px;
    top: 50px;
    width: 100px;
    height: 100px;
}

.index-new-events-alink>div {
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.index-new-events-alink-title {
    margin-bottom: 10px;
}

.index-new-events-alink-title>span {
    color: var(--m-color);
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: calc(100vw - 60px);
    display: inline-block;
}


.index-new-events-alink-desc {
    line-height: 20px;
    color: #101121;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 60px;
    padding-right: 10px;
}

.index-news-event-alink-desc-part {
    height: 100px;
    display: flex;
}

.index-new-events-alink-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-new-events-alink-time {
    position: absolute;
    bottom: 0px;
    right: 0px;
    color: #999;
    font-size: 14px;
}

.index-news-card-img {
    height: 60px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-news-card-img>img {
    height: 60px;
    width: auto;
    box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.04);
}

.beian-alink {
    display: none;
}

body[lang='zh'] .beian-alink {
    display: initial;
}

.pros-type-main-type {
    /* background: rgba(30, 34, 170, 0.15);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2); */
    height: 170px;
    position: absolute;
    top: 0px;
    width: 100%;
    box-sizing: border-box;
    padding-top: 8px;
}

.pros-type-main-type::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(179, 179, 179, 0.1);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
    pointer-events: none;
}

.pros-type-main-type>div {
    position: relative;
    z-index: 100;
}

.pros-type-main-line {
    width: 350px;
    margin: auto;
    column-gap: 10px;
    row-gap: 10px;
    display: flex;
    align-items: center;
    justify-content: left;
    flex-wrap: wrap;
}

.pros-type-main-line>div {
    width: 110px;
    height: 70px;
    display: flex;
    flex-shrink: 0;
}

.pros-type-main-line>div>a {
    width: 110px;
    height: 70px;
    color: #101121;
    user-select: none;
    font-weight: 600;
    border: 1px solid rgba(224, 224, 224, 0.2);
    font-size: 12px;
}

.pros-type-main-line>div>a>div {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding-top: 16px;
}


.pros-type-main-line>div>a svg {
    width: 24px;
    height: 24px;
    fill: #101121;
}

.pros-type-main-line>div>a>span {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 12px;
    padding: 2px 6px;
    box-sizing: border-box;
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
}


.pros-type-main-line>div>a.active {
    color: var(--m-color);
    background: rgba(179, 179, 239, 0.05);
    box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.15);
}

.pros-type-main-line>div>a:hover svg,
.pros-type-main-line>div>a.active svg {
    fill: var(--m-color);
}

.pros-type-main-line>div>a:hover .img2,
.pros-type-main-line>div>a.active .img2 {
    display: block;
}

.pros-main-list-part {
    margin: 0 14px;
}

.pros-main-real-list-grid {
    display: grid;
    row-gap: 20px;
    padding-bottom: 48px;
    margin-top: 12px;
}

.pros-main-real-list-grid>div {
    height: 210px;
    box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.04);
    border-radius: 4px;
    box-sizing: border-box;
}



.pros-main-real-list-grid-pd {
    row-gap: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 14px;
    margin-bottom: 48px;
}

.pros-main-real-list-grid-pd .pros-main-real-text-part {
    width: 100%;
    height: 100px;
    padding-top: 6px;
    box-sizing: border-box;
}

.pros-main-real-list-grid-pd .pros-main-real-list-one-img {
    width: 134px;
}

.pros-main-real-list-grid-pd>div {
    height: 210px;
    width: calc(100vw - 28px);
}

.pros-main-real-list-grid-pd .pros-main-real-list-one-img>img {
    width: 120px;
}

.pros-main-real-list-grid-pd>div>div.grid-line {
    display: none !important;
}


.pros-main-real-list-grid-pd .pros-main-real-list-title {
    font-size: 14px;
    margin-bottom: 6px;
    padding-right: 12px;
    line-height: 16px;
}

.pros-main-real-list-grid-pd .pros-main-real-list-desc>div {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
}

.pros-main-real-list-grid-pd .pros-main-real-list-one>a.pros-learn-more-alink {
    bottom: 24px;
    right: 28px;
}

.pros-main-real-list-grid-pd .pros-main-real-list-one::after {
    width: 24px;
    height: 24px;
}

.pros-related-tran-part {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pros-related-tran-part>button {
    width: 32px;
    height: 32px;
}

.pro-pre-next-btn {
    background: none;
    outline: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pro-pre-next-btn>i {
    color: var(--m-color);
    font-size: 26px;
}

.pro-pre-next-left {
    transform: rotate(180deg);
}

.pros-related-bottom-part {
    width: calc(100vw - 80px);
    overflow-x: hidden;
    margin: 0 4px;
}

.pros-related-card-list {
    row-gap: 30px;
    column-gap: 14px;
    display: flex;
    align-items: center;
    margin: 32px auto 48px auto;
    width: auto;
    box-sizing: border-box;
    transition: transform 0.35s ease-in-out;
}

.pros-related-card-one {
    flex-shrink: 0;
    width: calc(50vw - 47px);
    height: 210px;
    background: #fcfdff;
    border-radius: 4px;
    user-select: none;
    box-shadow: 0px 0px 4px 3px rgba(0, 0, 0, 0.05);
    position: relative;
}

.pros-related-card-one::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 3px;
    background: var(--m-color);
    position: absolute;
    left: 17px;
    top: 13px;
}

.pros-related-card-one:hover::before {
    background: white;
}

.pros-related-card-one:hover>.pros-related-card-top {
    background: var(--m-color);
    color: white;
}

.pros-related-card-img {
    width: calc(100% - 24px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-shrink: 0;
    padding-top: 18px;
    margin: 0 12px;
}

.pros-related-card-img>img {
    width: 100px;
    height: 100px;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.pros-related-card-img:hover>img {
    transform: scale(1.1);
}

.pros-related-card-top {
    height: 160px;
    border-radius: 4px 4px 0 0;
    transition: background 0.3s ease-in-out;
}

.pros-related-card-bottom {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.08);
    padding: 0 14px;
}

.pros-related-card-bottom>a {
    color: var(--m-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    column-gap: 4px;
    padding-left: 4px;
    height: 64px;
    white-space: nowrap;
}

.pros-related-card-bottom>div {
    font-size: 12px;
    color: #101121;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-right: 8px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.pros-related-card-title-text {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: var(--m-color);
    box-sizing: border-box;
}

.pros-related-card-one:hover .pros-related-card-title-text {
    color: white;
}

.pros-related-card-one .pros-related-card-bottom>div {
    opacity: 1;
}

.pros-m-title {
    padding: 32px 0px 32px 0;
    text-align: center;
    font-size: 28px;
    color: var(--m-color);
    font-weight: 700;
}

.pros-main-real-list-one {
    height: 353px;
    border-radius: 4px;
    display: block;
    color: #333;
    user-select: none;
    background: rgba(33, 33, 33, 0.01);
    box-shadow: 0px 0px 4px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    position: relative;
    transition-property: box-shadow, background;
    transition-duration: 300ms;
}

.pros-main-real-list-one::before {
    content: "";
    width: 12px;
    height: 0px;
    border-style: none none solid none;
    border-width: 5px;
    border-color: rgba(30, 34, 170, 0.5);
    position: absolute;
    left: 10px;
    top: 24px;
    width: 12px;
}

.pros-main-real-list-one::after {
    content: "";
    width: 20px;
    height: 20px;
    border-style: none solid solid none;
    border-width: 3px;
    border-color: rgba(30, 34, 170, 0.5);
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.pros-main-real-text-part {
    width: 100%;
    height: 100px;
    padding-top: 2px;
    box-sizing: border-box;
}

.pros-main-real-list-one>a.pros-learn-more-alink {
    position: absolute;
    bottom: 24px;
    right: 28px;
}

.pros-learn-more-alink {
    height: 26px;
    min-width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--m-color);
    position: relative;
    font-size: 13px;
    border: 1px solid var(--m-color);
    z-index: 999;
    padding-left: 14px;
}

.pros-learn-more-alink>i {
    font-size: 20px;
    margin-left: 2px;
    position: relative;
    top: 1px;
}

.pros-learn-more-alink:hover {
    border: 1px solid var(--m-color);
    background: var(--m-color);
    color: white;
}

.pro-area-limit-tip {
    text-align: center;
    margin: auto;
    font-size: 14px;
    line-height: 22px;
    margin: 0 14px;
    text-align: justify;
}

.pros-main-real-list-one-img {
    flex-shrink: 0;
    width: 134px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pros-main-real-list-one-img>img {
    width: 120px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.pros-main-real-list-one-img:hover>img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.pros-main-real-list-one:hover {
    background: rgba(33, 33, 33, 0.03);
    box-shadow: 0 4px 20px 5px rgba(217, 223, 231, 0.8);
}

.pros-main-real-list-one:hover::before,
.pros-main-real-list-one:hover::after {
    border-color: var(--m-color);
}



.pros-main-real-list-title {
    text-align: left;
    font-size: 18px;
    color: var(--m-color);
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 6px;
}

.pros-main-real-list-desc>div {
    color: #101121;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
    text-align: left;
    font-weight: 400;
    box-sizing: border-box;
    padding-right: 6px;
}

.pros-subtype-t-title {
    font-size: 18px;
    font-weight: 500;
    color: #101121;
    margin-bottom: 6px;
}

.pros-subtype-t-title::before {
    display: inline-block;
    content: "";
    width: 3px;
    height: 14px;
    background: var(--m-color);
    margin-right: 4px;
}

.pros-subtype-t-desc {
    margin-bottom: 30px;
    line-height: 20px;
    font-size: 14px;
    background: #f5f6f8;
    color: #474747;
    padding: 6px 8px;
    text-align: justify;
}


.pros-detail-top-link {
    width: var(--m-width);
    margin: auto;
    height: 80px;
    display: flex;
    align-items: center;
    font-size: 18px;
    border-bottom: 1px dashed #999;
}

.pros-detail-top-link>a {
    color: #666;
}

.pros-detail-top-link>span {
    color: #666;
    margin: 0 8px;
}

.pros-show-pro-main {
    width: var(--m-width);
    box-sizing: border-box;
    z-index: 300;
    position: relative;
}

.pros-show-pro-main-top {
    overflow: hidden;
    position: relative;
    height: 150vw;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    position: relative;
}

.pros-show-pro-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 150vw;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
}

.pros-show-pro-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: linear-gradient(180deg, rgba(163, 163, 163, 1) 0%, rgba(38, 38, 41, 1) 100%);
}

.pros-show-pro-main>div {
    flex-shrink: 0;
}


.pros-show-pro-img>img {
    width: 100%;
    max-height: 100%;
}

.pros-show-pro-img {
    border: 1px solid #eee;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.pros-show-pro-r-title {
    font-weight: 700;
    line-height: 30px;
    padding-top: 14px;
    color: #fcfdff;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.10);
    font-size: 30px;
    letter-spacing: 0px;
}

.pros-show-pro-r-type-text {
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 22px;
    color: #fcfdff;
    margin-bottom: 18px;
    font-size: 20px;
    margin-top: 4px;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.10);
}

.pros-show-detail-r-img {
    display: flex;
    align-items: center;
    justify-content: right;
    box-sizing: border-box;
    pointer-events: none;
    padding-right: 30px;
    padding-top: 24px;
}

.pros-show-detail-r-img>img {
    width: 120px;
}

.pros-show-pro-desc-part {
    box-sizing: border-box;
    padding-top: 18px;
    color: white;
    display: block;
}

.pros-show-pro-r-part {
    position: relative;
    box-sizing: border-box;
    padding: 0 22px;
    bottom: 14px;
}

.pros-show-pro-title {
    color: var(--m-color);
    font-size: 24px;
    font-weight: bolder;
    margin-bottom: 14px;
    margin-top: 14px;
}

.pros-show-pro-r-desc {
    line-height: 22px;
    font-size: 14px;
    overflow-y: auto;
    color: #fcfdff;
    text-align: justify;
    font-weight: 500;
}

.pros-show-pro-download-line {
    padding-top: 16px;
}

.pros-show-pro-download-line>a {
    color: white;
    background-color: var(--m-color);
    height: 36px;
    display: inline-block;
    line-height: 36px;
    padding: 0 18px;
    border-radius: 4px;
}

.pros-switch-tabs-div {
    width: var(--m-width);
    border-bottom: 1px solid #ebeef5;
    height: 54px;
    margin: auto;
    margin-top: 24px;
    display: flex;
    align-items: center;
    user-select: none;
}

.pros-switch-tabs-div>a {
    color: #3c3c3c;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 18px;
}

.pros-switch-tabs-div>a.active {
    color: var(--m-color);
    border-bottom: 2px solid var(--m-color);
}


.pros-detail-info-body {
    width: var(--m-width);
    margin: auto;
}

.pros-detail-name {
    color: var(--m-color);
    font-weight: bolder;
    font-size: 18px;
    margin-top: 32px;
    margin-bottom: 6px;
}

.pros-detail-desc {
    font-size: 16px;
    line-height: 30px;
    color: #666;
}

.pros-detail-bottom-part {
    padding-bottom: 64px;
}

.pros-detail-info-table {
    width: var(--m-width);
    margin: auto;
    padding-top: 32px;
}

.pros-detail-info-grid {
    display: grid;
    grid-template-columns: 200px 300px auto 300px;
    border-left: 1px solid var(--m-color);
    border-top: 1px solid var(--m-color);
}

.pros-detail-info-grid>div {
    border-bottom: 1px solid var(--m-color);
    border-right: 1px solid var(--m-color);
    color: #333;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 24px;
}

.pros-detail-info-grid>div.pros-info-doc-th {
    background: var(--m-color);
    color: white;
    font-weight: bolder;
    text-align: center;
}

.pros-detail-info-grid>div.pros-info-doc-td-span-col2 {
    grid-column: auto / span 2;
    font-weight: bolder;
    text-align: center;
}

.pros-detail-info-grid>div.pros-info-doc-td-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bolder;
    text-align: center;
}

.pros-detail-info-grid>div.pros-info-doc-td-hide {
    display: none;
}

.pros-detail-info-download {
    width: var(--m-width);
    margin: auto;
}

.pros-detail-info-download>div {
    margin-top: 24px;
    border: 1px solid #eee;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
    padding: 0 24px;
}

.pros-detail-info-download>div>div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pros-detail-info-download>div>div>span {
    margin-left: 12px;
    font-size: 20px;
    color: #333;
}

.pros-detail-info-download>div img {
    width: 48px;
}

.pros-detail-info-download>div a {
    background: var(--m-color);
    color: white;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 18px;
}

.pros-feature {
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    height: 120vw;
    max-height: 430px;
    border-top: 2px solid rgba(230, 230, 235, 0.55);
}

.pros-feature-part .pros-feature:nth-of-type(1) {
    border-top: none;
}

.pros-feature-bg {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center bottom;
    z-index: 1;
    box-sizing: border-box;
}

.pros-feature-content {
    width: 100vw;
    box-sizing: border-box;
    margin: auto;
    align-items: center;
    position: relative;
    z-index: 500;
}


.pros-feature-content>div {
    box-sizing: border-box;
}


.pros-feature-desc-blue-circle {
    height: 20px;
    display: none;
}

.pros-blue-circle-line {
    width: 30px;
    height: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.pros-blue-circle-line::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background: var(--m-color);
    flex-shrink: 0;
}

.pros-blue-circle-line::after {
    content: "";
    display: inline-block;
    background: var(--m-color);
    width: 14px;
    height: 0px;
    border: 1px solid var(--m-color);
    position: relative;
    right: 2px;
}


.pros-feature-desc-text {
    display: flex;
    text-align: center;
    padding: 0px 16px;
    height: 200px;
    align-items: center;
    justify-content: center;
}

.pros-feature-desc-text>div:nth-of-type(1) {
    color: #101121;
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
    color: #101121;
    font-size: 18px;
    font-weight: 500;
}

.pros-feature-desc-text>div:nth-of-type(1)>span {
    z-index: 100;
    position: relative;
    border-bottom: 10px solid #eaeaee;
    padding: 0 6px;
}

.pros-feature-desc-text>div:nth-of-type(1)>span>span {
    position: relative;
    top: 8px;
}



.pros-feature-desc-text>div:nth-of-type(2) {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    box-sizing: border-box;
    color: #474747;
    margin-bottom: 10px;
    display: none;
}

.pros-param-line-bg {
    background-image: url("../img/pros_param_bg_mobile.png");
    background-repeat: no-repeat;
    background-position: center top;
    position: relative;
    background-size: 1900px auto;
    overflow-y: hidden;
}

.pros-param-line-bg::before {
    content: "";
    background: linear-gradient(191.04deg, rgba(214, 214, 214, 0) 0%, rgba(245, 246, 251, 1) 100%);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.pros-param-line-bg::after {
    content: "";
    height: 110px;
    width: 100%;
    display: block;
    background-image: linear-gradient(to bottom, #e0e0e0 40px, var(--m-color) 40px);
    position: absolute;
    bottom: 0px;
    z-index: 1;
}

.pros-param-line-bg-no-related::after {
    display: none;
}

.pros-param-line-bg>div {
    position: relative;
    z-index: 100;
}

.pros-params-card {
    min-height: 446px;
    margin: 0 14px;
    background: rgba(33, 33, 33, 0.03);
    box-shadow: 0px 0px 4px 3px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    padding: 14px;
    position: relative;
}

.pros-params-card::before {
    content: "";
    width: 20px;
    height: 20px;
    border-left: 3px solid var(--m-color);
    border-top: 3px solid var(--m-color);
    position: absolute;
    left: 0;
    top: 0;
}

.pros-params-card::after {
    content: "";
    width: 20px;
    height: 20px;
    border-bottom: 3px solid var(--m-color);
    border-right: 3px solid var(--m-color);
    position: absolute;
    right: 0;
    bottom: 0;
}

.pros-params-card>div {
    flex-shrink: 0;
}


.pros-params-appearance {
    box-sizing: border-box;
    position: relative;
}





.pros-params-appearance-main {
    margin: 0 auto;
}

.pros-params-appearance-pic {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pros-params-appearance-pic>img {
    max-width: 340px;
    max-height: 200px;
}

.pros-params-appearance-tb {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -16px;
}

.pros-params-appearance-tb>div {
    text-align: center;
    padding: 0 24px;
}

.pros-params-appearance-tb>div:nth-of-type(1) {
    border-right: 1px solid rgba(71, 71, 71, 0.2);
}


.pros-params-appearance-tb>div>div:nth-of-type(1) {
    font-size: 16px;
    font-weight: 500;
    color: #101121;
    margin-bottom: 8px;
}

.pros-params-appearance-tb>div>div:nth-of-type(2) {
    font-size: 14px;
    color: #474747;
}

.pros-params-data-info {
    box-sizing: border-box;
    margin-top: 12px;
}

.pros-params-data-sys {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.pros-params-data-sys:nth-of-type(2){
    margin-top: 14px;
}
.pros-params-data-sys::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 15px;
    background-color: var(--m-color);
    margin-right: 7px;
    flex-shrink: 0;
}

.pros-params-data-sys>span:nth-of-type(1) {
    margin-right: 20px;
    white-space: nowrap;
}

.pros-params-data-sys>span:nth-of-type(2) {
    color: var(--m-color);
}

.pros-param-data-detail {
    margin-top: 2px;
}

.pros-param-data-detail-one {
    border-bottom: 1px solid #e0e0e0;
    box-sizing: border-box;
    display: grid;
    box-sizing: border-box;
    padding-top: 18px;
}

.pros-param-data-detail-one>div {
    color: #101121;
    font-weight: 500;
}

.pros-param-data-detail-one>div:nth-of-type(1),
.pros-param-data-detail-one>div:nth-of-type(2) {
    display: flex;
    align-items: center;
    height: 20px;
}

.pros-param-data-detail-one>div:nth-of-type(1)::before,
.pros-param-data-detail-one>div:nth-of-type(2)::before {
    content: "";
    display: inline-block;
    background: var(--m-color);
    width: 6px;
    height: 6px;
    margin-right: 6px;
}

.pros-param-data-detail-one>div:nth-of-type(n+3) {
    font-size: 14px;
    color: #474747;
    font-weight: 500;
    line-height: 24px;
    padding-left: 12px;
    margin-bottom: 16px;
}

.pros-param-data-detail-one>div:nth-of-type(1) {
    grid-row: 1 / 2;
}

.pros-param-data-detail-one>div:nth-of-type(2) {
    grid-row: 3 / 4;
}

.pros-param-data-detail-one>div:nth-of-type(3) {
    grid-row: 2 / 3;
}

.pros-param-data-detail-one>div:nth-of-type(4) {
    grid-row: 4 / 5;
}

.pros-param-data-detail>.pros-param-data-detail-one:last-of-type {
    border: none;
}

.pros-download-title-line {
    font-size: 36px;
    font-weight: 700;
    padding: 36px 0;
    color: var(--m-color);
    text-align: center;
}

.download-list-part {
    margin-top: 38px;
}

.pros-download-doc-line {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100vw - 28px);
    margin: 0 auto 16px auto;
}

.pros-download-doc-line>a {
    background: #fcfdff;
    color: var(--m-color);
    height: 48px;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 0 30px;
    user-select: none;
    box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.15);
    min-width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    box-sizing: border-box;
}

.pros-download-doc-line>a>span {
    font-weight: 600;
    margin-right: 36px;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pros-download-doc-line>a>i {
    font-size: 16px;
    font-weight: bolder;
}

.pros-send-a-inquiry-line {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 36px;
    margin-bottom: 80px;
}

.pros-send-a-inquiry-line>a {
    height: 36px;
    display: flex;
    align-items: center;
    border: 1px solid var(--m-color);
    font-size: 16px;
    font-weight: 500;
    padding: 0 24px;
    min-width: 120px;
    justify-content: center;
    color: var(--m-color);
}

.pros-send-a-inquiry-line>a:hover {
    color: white;
    background: var(--m-color);
}

.software-alink-list-part {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 86px;
    margin-bottom: 0px;
}

.software-alink-list-part>a {
    height: 36px;
    display: flex;
    align-items: center;
    border: 1px solid var(--m-color);
    font-size: 16px;
    font-weight: 500;
    padding: 0 24px;
    min-width: 200px;
    justify-content: center;
    color: var(--m-color);
    margin-bottom: 16px;
}


.software-alink-list-part>a>i {
    margin-left: 8px;
}

.software-alink-list-part>a>i.icon-you {
    font-size: 20px;
}

.main-pros-real-info {
    padding-top: 60px;
}

.main-pros-real-info {
    padding-top: 60px;
}

.index-video-box {
    width: var(--m-width);
    padding: 0 12px;
    box-sizing: border-box;
}

.index-video-title {
    color: var(--m-color);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    user-select: none;
}

.index-video-title::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: var(--m-color);
    margin-right: 6px;
}

.blue-sub-menu-bar {
    margin-top: 24px;
    height: 48px;
    color: #101121;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    z-index: 900;
    margin-left: 12px;
    margin-right: 12px;
}

.blue-sub-menu-bar>div {
    width: var(--m-width);
    display: flex;
    height: 100%;
    align-items: center;
    margin: auto;
    background: rgba(30, 34, 170, 0.03);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12);
}

.blue-sub-menu-bar-triangle {
    border-left: 14px solid var(--m-color);
    border-bottom: 24px solid transparent;
    border-top: 24px solid transparent;
}

.blue-sub-menu-index {
    display: flex;
    align-items: center;
    color: white;
    height: 48px;
}

.blue-sub-menu-index>span {
    color: white;
}

.blue-sub-menu-index>div:nth-of-type(1) {
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 8px;
    padding-right: 8px;
    background: var(--m-color);
}

.blue-sub-menu-index>div:nth-of-type(1)>i {
    margin-right: 4px;
}

.blue-sub-menu-bar a.blue-sub-alink {
    color: var(--m-color) !important;
}

.blue-sub-menu-bar svg {
    fill: white;
    width: 18px;
    height: 18px;
    margin-right: 2px;
}

.blue-sub-menu-divider {
    height: 12px;
    border-right: 1px solid var(--m-color);
    width: 0px;
    margin-right: 14px;
    margin-left: 14px;
    display: block;
}

.blue-sub-menu-bar-transparent.blue-sub-menu-bar>div {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.blue-sub-menu-bar-transparent .blue-sub-menu-index>div:nth-of-type(1) {
    background: white;
    color: var(--m-color)
}

.blue-sub-menu-bar-transparent .blue-sub-menu-index>div:nth-of-type(1) svg {
    fill: var(--m-color);
}

.blue-sub-menu-bar-transparent .blue-sub-menu-bar-triangle {
    border-left: 14px solid white;
    border-bottom: 24px solid transparent;
    border-top: 24px solid transparent;
}

.blue-sub-menu-bar-transparent a.blue-sub-alink {
    color: white !important;
}

.common-content-main {
    width: var(--m-width);
    margin: auto;
}

.about-us-c-intro {
    min-height: 1150px;
    background: url("../img/map-bg.png");
    background-size: 3060px auto;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.about-us-company-intro {
    width: 50%;
    text-align: left;
    margin-bottom: 12px;
}

.about-us-company-intro::after {
    content: "";
    width: 450px;
    border-bottom: 2px solid var(--m-color);
    display: block;
    margin-top: 24px;
}

.about-us-company-info {
    padding-top: 36px;
}

.about-up-top-blue-line {
    border: 1px solid var(--m-color);
    width: calc(100% - 24px);
    margin: 0 auto 24px auto;
}

.about-us-company-desc-grid {
    display: flex;
    flex-direction: column-reverse;
}

.about-us-company-desc-grid>div:nth-of-type(1) {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
}

.about-us-c-pics-show {
    min-height: 60vw;
    position: relative;
    margin-bottom: 14px;
}

.about-us-c-pics-show>div {
    box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.04);
    width: 90vw;
    height: 60vw;
    border: 6px solid white;
    box-sizing: border-box;
    position: absolute;
    left: 5vw;
    transform-origin: -176vw 30vw;
    transition-property: transform, opacity;
    transition-timing-function: ease-out;
    pointer-events: none;
}

.about-us-c-pics-show>div.pic-tran-0 {
    transform: rotate(-20deg);
}

.about-us-c-pics-show>div.pic-tran-1 {
    transform: rotate(0deg);
}

.about-us-c-pics-show>div.pic-tran-2 {
    transform: rotate(20deg);
}

.about-us-c-pics-show>div>img {
    width: 100%;
    height: 100%;
}

.about-us-company-desc-pic>div {
    position: absolute;
    left: 19px;
    top: 15px;
    background: #e3e4e5;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.about-us-company-desc-pic>img {
    z-index: 100;
    width: 100%;
    height: 100%;
    background: #ccc;
    position: absolute;
    left: 0;
    top: 0;
}

.common-paragraph-desc {
    box-sizing: border-box;
    padding: 0 14px;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #101121;
    text-align: justify;
    padding-bottom: 20px;
}

.about-us-company-show-pics {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 28px;
    padding-top: 58px;
    padding-bottom: 12px;
}

.about-us-company-show-pics>div {
    width: 150px;
    height: 150px;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.about-us-company-show-pics>div>img {
    max-width: 100%;
    height: 100%;
    transition-duration: 300ms;
    -webkit-transition-duration: 300ms;
    display: none;
}

.about-us-company-show-pics>div:hover>img {
    transform: scale(1.1);
}

.about-us-our-history {
    text-align: center;
    padding-top: 60px;
}

.about-us-histor-part {
    z-index: 999;
    position: relative;
}

.about-us-histor-desc {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 30px;
    font-size: 18px;
    font-weight: 500;
    color: #101121;
    height: 80px;
    padding: 0 14px
}

.about-us-histor-desc>img {
    width: 70px;
}

.about-us-history-gray-line {
    border: 1px solid #e0e0e0;
    margin-top: 32px;
    width: 1920px;
    position: relative;
    left: calc(50% - 960px);
}

.about-us-history-timeline {
    position: relative;
    height: 80px;
    user-select: none;
}

.about-us-slider-bar {
    width: 8px;
    height: 20px;
    background: var(--m-color);
    position: absolute;
    top: -10px;
    left: 10px;
    cursor: pointer;
    transition: left 0.5s linear;
}

.about-us-time-list {
    display: flex;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    position: relative;
    bottom: 20px;
    overflow: hidden;
}

.about-us-time-list>div {
    flex-grow: 1;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    height: 70px;
    padding-top: 8px;
}

.about-us-time-list>div::before {
    content: "";
    display: block;
    width: 8px;
    height: 20px;
    background: var(--m-color);
    margin-bottom: 14px;
    background: rgba(0, 0, 0, 0)
}

.about-us-time-list>div.active,
.about-us-time-list>div:hover {
    color: var(--m-color);
}

.about-us-time-list>div.active::before,
.about-us-time-list>div:hover::before {
    background: var(--m-color);
}

.timeline-pre-next-line {
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    margin-top: 4px;
    position: relative;
    bottom: 22px;
}

.timeline-pre-next-line>button {
    width: 36px;
    height: 36px;
    background: none;
    outline: none;
    border: 1px solid #ccc;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-pre-next-line>button:nth-of-type(1) {
    transform: rotate(180deg);
}

.timeline-pre-next-line>button>i {
    font-size: 28px;
    color: var(--m-color);
}

.about-us-our-adv {
    text-align: left;
    padding-top: 55px;
}

.about-us-our-targets {
    text-align: left;
    padding-top: 55px;
}

.about-us-our-target-pics {
    margin-bottom: 54px;
    margin-top: 54px;
    flex-wrap: wrap;
}

.about-us-our-target-pics>div {
    display: flex;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    flex-direction: column;
    margin-bottom: 20px;
}

.about-us-our-target-pics>div>img {
    width: 60px;
    height: 60px;
}

.about-us-ot-text {
    text-align: center;
}

.about-us-ot-text>div:nth-of-type(1) {
    font-size: 24px;
    font-weight: 500;
    padding-top: 10px;
    padding-bottom: 6px;
    color: #000;
}

.about-us-ot-text>div:nth-of-type(2) {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 14px;
    color: #474747;
    line-height: 22px;
    width: 240px;
    margin: auto;
}


.about-us-targets-desc {
    padding-bottom: 100px;
}

.contact-us-earch-bg-part {
    width: 100%;
}

.contact-us-earch-bg-content {
    min-height: 1000px;
    background-image: url("../img/earth-bg.png");
    background-size: 1000px auto;
    background-position-x: center;
    background-position-y: 50px;
    background-repeat: no-repeat;
    padding-top: 48px;
}

.about-us-join-us {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.about-us-join-us>a {
    border: 1px solid var(--m-color);
    color: var(--m-color);
    background: none;
    outline: none;
    width: 128px;
    height: 44px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.about-us-join-us>button:hover {
    background: var(--m-color);
    color: white;
    cursor: pointer;
}

.our-adv-part {
    width: 100%;
    min-width: var(--m-width);
    position: relative;
    bottom: 6px;
}

.our-adv-part-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 36px;
    margin-bottom: 6px;
}

.our-adv-card {
    height: 470px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: auto 470px;
    background-position: left bottom;
    transition: opacity 500ms linear;
}

.our-adv-card-qc {
    background-image: url("../img/adv_qc.png");
    background-position: right bottom;
}

.our-adv-card-rd {
    background-image: url("../img/adv_rd.png");
}

.our-adv-card-sr {
    background-image: url("../img/adv_sr.png");
}

.our-adv-card-qc::before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 470px;
    opacity: 0.7;
    background: #eee;
}

.our-adv-card-rd::before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 470px;
    opacity: 0.6;
    background: #eee;
}

.our-adv-card-sr::before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 470px;
    opacity: 0.15;
    background: #eee;
}

.our-adv-card-main {
    width: var(--m-width);
    margin: auto;
    min-height: 400px;
    z-index: 100;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.our-adv-card-main-qc {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    box-sizing: border-box;
    padding-top: 46px;
}

.our-adv-card-main-rd {
    display: flex;
    align-items: flex-start;
    position: relative;
    justify-content: right;
}

.our-adv-qc-rectangle {
    width: 360px;
    height: 220px;
    position: absolute;
    left: 580px;
    top: 80px;
    display: none;
}

.our-adv-qc-rectangle>div {
    background: #ccc;
    color: #000;
    position: absolute;
}

.our-adv-qc-rectangle>div:nth-of-type(1),
.our-adv-qc-rectangle>div:nth-of-type(2),
.our-adv-qc-rectangle>div:nth-of-type(3) {
    font-size: 12px;
    width: 50px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-adv-qc-rectangle>div.r-ipqc {
    top: 0px;
    right: 35px;
}

.our-adv-qc-rectangle>div.r-qc {
    top: 58px;
    right: 70px;
}

.our-adv-qc-rectangle>div.r-qa {
    top: 58px;
    right: 0px;
}

.our-adv-qc-rectangle>div.r-pmc {
    width: 224px;
    height: 56px;
    font-size: 18px;
    color: #101121;
    display: flex;
    align-items: center;
    padding-left: 20px;
    bottom: 0px;
    left: 0px;
}

.our-adv-opt-pages {
    z-index: 1999;
    height: 70px;
    position: absolute;
    bottom: 0px;
    width: 100%;
}

.our-adv-circles {
    width: 100%;
    height: 10px;
    bottom: 14px;
    z-index: 999;
    position: absolute;
    display: flex;
    justify-content: center;
    column-gap: 6px;
    pointer-events: none;
}

.our-adv-circles>div {
    width: 8px;
    height: 8px;
    background: #aaa;
    border-radius: 50%;
}

.our-adv-circles>div.active {
    background: var(--m-color);
}

.adv-blue-circle-line {
    width: 30px;
    height: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 34px;
    visibility: hidden;
}

.adv-blue-circle-line::before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: var(--m-color);
    flex-shrink: 0;
}

.adv-blue-circle-line::after {
    content: "";
    display: inline-block;
    background: var(--m-color);
    width: 14px;
    height: 0px;
    border: 1px solid var(--m-color);
    position: relative;
    right: 2px;
}

.our-adv-qc-text-part {
    box-sizing: border-box;
    padding: 0 14px;
}

.our-adv-real-text-title {
    font-style: italic;
    font-size: 20px;
    font-weight: 600;
    color: #101121;
    margin-bottom: 12px;
}

.our-adv-real-text-desc {
    text-align: justify;
    font-size: 16px;
    color: #101121;
    line-height: 26px;
    margin-bottom: 16px;
    font-weight: 500;
}

.our-adv-real-text-desc>span {
    font-weight: 500;
}

.our-adv-opt-next-page-part {
    display: flex;
    align-items: center;
    justify-content: right;
    column-gap: 12px;
    margin: auto;
    padding-right: 20px;
}

.our-adv-opt-next-page-part>a {
    width: 24px;
    height: 24px;
    opacity: 1;
    background: rgba(94, 94, 94, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-adv-opt-next-page-part>a:hover {
    background: rgba(50, 50, 50, 0.6);
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.25);
}

.our-adv-opt-next-page-part>a>i {
    color: white;
    font-size: 20px;
}

.our-adv-opt-next-page-part>a:nth-of-type(1)>i {
    transform: rotate(180deg);
}

.contact-us-call-us-part {
    width: calc(100% - 28px);
    height: 504px;
    background: rgba(30, 34, 170, 0);
    border: 0px solid rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12);
    margin: auto;
    margin-bottom: 70px;
    box-sizing: border-box;
    padding-top: 24px;
    transition: box-shadow 0.65s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
}

.contact-us-call-us-part:hover {
    background: rgba(33, 33, 33, 0.03);
    box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.15);
}


.contact-us-call-us-content {
    border: 2px solid rgba(224, 224, 224, 0.8);
    border-top: none;
    width: calc(100% - 28px);
    margin: auto;
    margin-bottom: 40px;
    position: relative;
}

.contact-us-call-us-content::before {
    content: "";
    display: block;
    width: calc(50% + 4px);
    height: 0;
    border-bottom: 2px solid rgba(224, 224, 224, 0.8);
    transform: rotate(-4.5deg);
    position: absolute;
    left: -2px;
    top: -8px;
}

.contact-us-call-us-content::after {
    content: "";
    display: block;
    width: calc(50% + 4px);
    height: 0;
    border-bottom: 2px solid rgba(224, 224, 224, 0.8);
    transform: rotate(4.5deg);
    right: -2px;
    top: -8px;
    position: absolute;
}

.contact-us-drop-aline {
    margin: auto;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding: 0 14px;
}

.contact-us-drop-aline>span {
    display: flex;
    align-items: center;
}

.contact-us-drop-aline>span:nth-of-type(1) {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 6px;

}

.contact-us-drop-aline>span:nth-of-type(2) {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    font-style: italic;
    text-decoration: underline;
    color: var(--m-color);
}

.contact-us-drop-aline>span:nth-of-type(1)::before {
    content: "";
    display: block;
    width: 3px;
    height: 15px;
    background: var(--m-color);
    margin-right: 6px;
}

.contact-us-call-area {
    color: var(--m-color);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(224, 224, 224, 0.8);
    margin: 0 8px;
    font-weight: 500;
}

.contact-us-call-people {
    margin: 8px;
    display: flex;
    align-items: center;
    height: 72px;
}

.contact-us-call-people>div:nth-of-type(1) {
    border-right: 2px solid rgba(224, 224, 224, 0.8);
    height: 72px;
    width: 90px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #101121;
    font-size: 18px;
    font-weight: 500;
}

.contact-us-call-people>div:nth-of-type(2) {
    color: #474747;
    font-weight: 400;
    font-size: 14px;
    padding-left: 14px;
}

.contact-us-call-people>div:nth-of-type(2)>div {
    display: flex;
    align-items: center;
    height: 32px;
}

.contact-us-info-svg {
    width: 20px;
    height: 20px;
    fill: #474747;
    margin-right: 10px;
}

.contact-us-loc-desc {
    display: grid;
    row-gap: 14px;
    margin-top: 40px;
}

.contact-us-loc-desc>div {
    margin: 0 14px;
    min-height: 240px;
    background: rgba(252, 253, 255, 1);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: box-shadow 0.65s cubic-bezier(0.19, 1, 0.22, 1);
}

.contact-us-loc-desc>div:hover {
    background: rgba(33, 33, 33, 0.03);
    box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.15);
}

.contact-us-loc-card>div:nth-of-type(1) {
    color: var(--m-color);
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(235, 235, 235, 1);
}

.contact-us-loc-card>div:nth-of-type(2) {
    padding-top: 12px;
}

.contact-us-loc-card>div:nth-of-type(2)>div {
    color: #474747;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 18px;
    text-align: center;
    margin-left: 8px;
    margin-right: 8px;
    font-weight: 500;
    min-height: 54px;
    align-items: center;
    display: flex;
}

.contact-us-loc-card>div:nth-of-type(2)>img {
    width: auto;
    height: 100px;
    display: block;
    margin: 14px auto 14px auto;
}

.contact-usj-line-bg-content {
    height: 320px;
    background-size: 600px auto;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: bottom;
    box-sizing: border-box;
    padding-top: 90px;
}

.contact-us-f-list {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 24px;
    margin-top: 48px;
}

.contact-us-f-list>a {
    color: #aaa;
    width: 42px;
    height: 42px;
}


.contact-us-f-list>a>i {
    font-size: 46px;
}

.contact-us-f-list>a>i.icon-linkedin {
    font-size: 40px;
}

.contact-us-send-an-inquiry-part {
    background: #f5f6f8;
}

.contact-us-send-inquiry {
    padding-top: 56px;
    padding-bottom: 48px;
}

.contact-us-sub-form {
    display: block;
}

.contact-us-sub-form-two-c>div>div {
    background: white;
    height: 40px;
}

.contact-us-sub-form-two-c {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.contact-us-sub-form-two-c>div {
    flex-shrink: 0;
    width: calc(100% - 28px);
    display: grid;
    grid-template-columns: 130px auto;
    column-gap: 10px;
    row-gap: 20px;
    margin-left: 14px;
}

.contact-us-sub-form-two-c>div>div {
    padding: 0 14px;
    display: flex;
    align-items: center;
}

.contact-us-sub-form-two-c>div>div>span {
    color: #101121;
    font-weight: 500;
}

.contact-us-sub-form-two-c>div>div>span.require::after {
    content: "*";
    color: red;
    margin-left: 2px;
}

.contact-us-sub-form-check-part .require::after {
    content: "*";
    color: red;
    margin-left: 2px;
}
.contact-us-sub-form-oneline .require::after{
    content: "*";
    color: red;
    margin-left: 2px;
}
.contact-us-sub-form-two-c>div>div>input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: none;
    color: #333;
    font-size: 16px;
}

.contact-us-sub-form input::placeholder,
.contact-us-sub-form textarea::placeholder {
    color: rgba(71, 71, 71, 0.4);
}

.contact-us-sub-form-check-part {
    background: #fff;
    min-height: 140px;
    margin: 20px 14px 0 14px;
}

.contact-us-sub-form-check-part>div {
    color: #101121;
    font-weight: 600;
    font-size: 16px;
}

.contact-us-sub-form-check-part>div:nth-of-type(1) {
    padding-left: 12px;
    padding-top: 18px;
    padding-bottom: 18px;
    display: flex;
    align-items: center;
}

.contact-us-sub-form-check-part>div:nth-of-type(2) {
    display: flex;
    flex-direction: column;
    row-gap: 18px;
    column-gap: 114px;
    padding-left: 40px;
    margin-top: 4px;
    user-select: none;
    padding-bottom: 24px;
}

.contact-us-sub-form-check-part>div:nth-of-type(2)>label {
    cursor: pointer;
    user-select: none;
}



.lyear-checkbox,
.lyear-radio {
    display: block;
    position: relative;
    margin-top: 0px;
    margin-bottom: 0px;
    cursor: pointer;
    padding-left: 30px;
    font-weight: 400;
    min-height: 18px;
    height: auto !important;
    line-height: 18px !important
}

input[type=checkbox],
input[type=radio] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

.lyear-checkbox input,
.lyear-radio input {
    position: absolute;
    display: none
}

.lyear-checkbox span::before,
.lyear-radio span::before {
    content: '';
    position: absolute;
    display: inline-block;
    height: 18px;
    width: 18px;
    left: 0;
    top: 0px;
    border: 2px solid var(--m-color);
    -webkit-transition: all .1s;
    -o-transition: all .1s;
    transition: all .1s
}

.lyear-checkbox span::after,
.lyear-radio span::after {
    content: '';
    position: absolute;
    display: none;
    width: 5px;
    height: 10px;
    left: 7px;
    top: 3px;
    border: solid #4d5259;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.lyear-checkbox span,
.lyear-radio span {
    display: inline-block;
    user-select: none
}

.lyear-checkbox input:checked~span:after,
.lyear-radio input:checked~span:after {
    display: inline-block
}

.lyear-checkbox.checkbox-grey span::before,
.lyear-checkbox.radio-grey span::before,
.lyear-radio.checkbox-grey span::before,
.lyear-radio.radio-grey span::before {
    background-color: #ebebeb;
    border-color: #ebebeb
}

.lyear-checkbox input:disabled+span,
.lyear-radio input:disabled+span {
    cursor: not-allowed
}

.lyear-checkbox input:disabled+span::before,
.lyear-checkbox input:disabled+span::after,
.lyear-radio input:disabled+span::before,
.lyear-radio input:disabled+span::after {
    opacity: .4
}

.checkbox-info input:checked~span::before {
    background-color: var(--m-color);
    border-color: var(--m-color);
}

.checkbox-info input:checked~span::after {
    border-color: #fff
}


.contact-us-sub-form-textarea {
    background: #fff;
    margin-top: 20px;
    margin-left: 14px;
    margin-right: 14px;
}

.contact-us-sub-form-textarea>div {
    color: #101121;
    font-weight: 600;
    font-size: 16px;
    padding-left: 14px;
    padding-top: 18px;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
}

.contact-us-sub-form-textarea>textarea {
    width: calc(100% - 28px);
    box-sizing: border-box;
    margin-left: 14px;
    margin-right: 14px;
    margin-bottom: 12px;
    height: 150px;
    resize: none;
    outline: none;
    border: none;
    background: none;
    color: #333;
    font-size: 16px;
}

.contact-us-sub-form-oneline {
    margin-top: 20px;
    display: flex;
    align-items: center;
    height: 40px;
    column-gap: 10px;
    width: calc(100% - 28px);
    margin-left: 14px;
}

.contact-us-sub-form-oneline>div:nth-of-type(1) {
    color: #101121;
    width: 130px;
    flex-shrink: 0;
    height: 40px;
    background: white;
    display: flex;
    align-items: center;
    padding: 0 14px;
    box-sizing: border-box;
}

.contact-us-sub-form-oneline>div:nth-of-type(1)>span {
    color: #101121;
    font-weight: 500;
}

.contact-us-sub-form-oneline>div:nth-of-type(2) {
    background: white;
    height: 40px;
    flex-grow: 1;
    padding: 0 14px;
}

.contact-us-sub-form-oneline>div>input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: none;
    color: #333;
    font-size: 16px;
    box-sizing: border-box;
}

.contact-us-submit-line {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
}

.contact-us-submit-line>button {
    min-width: 130px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--m-color);
    background: none;
    outline: none;
    color: var(--m-color);
    font-size: 16px;
    font-size: 600;
    cursor: pointer;
}

.contact-us-submit-line>button:active {
    color: white;
    background: var(--m-color);
}

.faq-one-part {
    min-height: 200px;
    padding-top: 66px;
    margin: 0 12px;
}

.support-aside-to-top {
    position: fixed;
    right: -52px;
    bottom: 100px;
    height: 106px;
    padding-left: 0px;
    transition: right 300ms;
    z-index: 1100;
}

.support-aside-to-top-show {
    right: 0px;
}

.support-aside-to-top>a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #fff;
    background: rgba(79, 79, 79, 0.5);
    border-radius: 2px;
}


.support-aside-to-top>a>i {
    font-size: 14px;
    margin-bottom: 2px;
}

.support-aside-to-top>a>span {
    font-size: 12px;
}

.support-aside-anchor {
    position: fixed;
    left: 2px;
    top: 160px;
    padding-left: 0px;
    z-index: 1000;

}

.product-aside-anchor {
    top: 440px;
}

.support-aside-anchor>div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.support-aside-anchor>div>a {
    color: white;
    background: rgba(79, 79, 79, 0.5);
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    box-sizing: border-box;
    position: relative;
}

.support-aside-anchor>div>a>i {
    font-size: 20px;
    z-index: 100;
    width: 36px;
    height: 36px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-aside-anchor>div>a>i>svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.support-aside-anchor>div:nth-of-type(2)>a>i>svg {
    width: 24px;
    height: 24px;
}

.support-aside-anchor>div>a i.icon-chanpin {
    font-size: 26px;
}

.support-aside-anchor>div>a i.icon-ruanjianfuwu {
    font-size: 22px;
}



.support-aside-anchor>div>a>div {
    position: absolute;
    left: 48px;
    top: 0px;
    height: 48px;
    box-sizing: border-box;
    background: var(--m-color);
    display: flex;
    align-items: center;
    width: 0px;
    overflow: hidden;
    white-space: nowrap;
    background: rgba(79, 79, 79, 0.5);
}

.support-aside-anchor>div>a>div>span {
    width: 0px;
    transition: width 350ms;
}

.support-aside-anchor>div>a>div>i {
    border-left: 12px solid rgba(79, 79, 79, 0.5);
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
}

/* .support-aside-anchor>div>a:hover {
    background: var(--m-color);
}

.support-aside-anchor>div>a:hover>div {
    width: auto;
    background: linear-gradient(to right, var(--m-color) calc(100% - 12px), rgba(252, 252, 255, 0) 12px);
    color: white;
}
.support-aside-anchor>div>a:hover>div>span{
    width: 100px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
}
.support-aside-anchor>div>a:hover>div>i{
    border-left-color: var(--m-color);
} */
.faq-m-bg {
    background: rgba(224, 224, 224, 0.2);
    padding: 2px 2px;
}

.faq-m-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 20px;
    color: rgba(16, 17, 33, 1);
    display: flex;
    align-items: center;
    margin-bottom: 21px;
}

.faq-m-title::before {
    content: "";
    height: 17px;
    margin-right: 12px;
    width: 6px;
    background: var(--m-color);
}

.faq-question-list-one {
    border-bottom: 1px solid rgba(230, 230, 230, 0.6)
}

.faq-question-text {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    line-height: 28px;
    user-select: none;
    cursor: pointer;
    padding: 6px 8px;
}

.faq-question-text>div {
    padding-right: 8px;
    color: #101121;
    font-size: 16px;
    font-weight: 500;
}

.faq-question-text>div>.order {
    margin-right: 4px;
}

.faq-question-text>span>button {
    color: #474747;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: none;
    outline: none;
    border: none;
}

.faq-question-text>span>button>i {
    font-size: 14px;
}


.faq-question-list-one>.faq-question-text>span>button.add {
    display: initial;
}

.faq-question-list-one>.faq-question-text>span>button.reduce {
    display: none;
}

.faq-question-list-one-expand>.faq-question-text>span>button.add {
    display: none;
}

.faq-question-list-one-expand>.faq-question-text>span>button.reduce {
    display: initial;
}

.faq-answer-text {
    color: #4F4F4F;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    transition: all 300ms;
    background: rgba(224, 224, 224, 0.5);
    overflow: hidden;
    height: 0;
}

.faq-alink-title-text {
    margin-right: 8px;
    color: #101121;
    font-weight: 500;
    height: 28px;
    line-height: 28px;
    font-size: 14px;
}

.faq-answer-download-line {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
}

.faq-answer-download-line>a {
    color: var(--m-color);
    font-weight: 500;
    font-size: 14px;
    padding: 0px 8px;
    height: 28px;
    margin-right: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-answer-download-line>a[download] {
    padding: 0;
}

.faq-answer-download-line>a>span {
    display: inline-block;
    max-width: 240px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.faq-answer-download-line>a>i {
    margin-left: 8px;
    color: var(--m-color);
    font-size: 14px;
}

.outpage-cal-height {
    height: auto;
    position: fixed;
    left: 0;
    top: -1000;
}

.faq-answer-text>div {
    padding: 12px 20px;
}

.faq-pagination-list {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 24px;
    padding: 24px;
    flex-wrap: wrap;
    row-gap: 24px;
    display: none;
}

.faq-pagination-list>button {
    width: 36px;
    height: 36px;
    isolation: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    outline: none;
    border: 1px solid #e0e0e0;
    background: none;
    color: #4F4F4F;
    font-weight: 500;
    cursor: pointer;
    border-radius: 2px;
    user-select: none;
    flex-shrink: 0;
}

.faq-pagination-list>button.active {
    color: white;
    background: var(--m-color);
    border: 1px solid var(--m-color);
}


.faq-empty-gap2 {
    height: 70px;
}

.support-faq-title {
    margin-bottom: 0;
}

.pro-aside-anchor>div>a i {
    font-size: 26px;
}

.pro-aside-anchor>div>a i.icon-yunxiazai_o {
    font-size: 28px;
}

.pro-aside-anchor>div>a:hover>span {
    width: 180px;
}

.faq-img-bg-part {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    margin-top: 24px;
}

.faq-img-bg-content {
    height: 180px;
    width: 100%;
    background-image: url("../img/faq_bg.jpg");
    background-size: 960px 180px;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-img-bg-content::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 180px;
    opacity: 0.08;
    background: linear-gradient(234.78deg, rgba(82, 114, 217, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.faq-img-bg-title {
    color: var(--m-color);
    width: 250px;
    position: relative;
    height: 72px !important;
    box-sizing: border-box;
}

.faq-img-bg-title>span {
    position: relative;
    bottom: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 32px solid rgba(232, 192, 29, 0.5);
    height: 72px;
}

.faq-img-bg-title>span>span {
    position: relative;
    top: 36px;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.m-real-title {
    font-weight: 600;
}

.news-list-grid {
    display: grid;
    padding-top: 32px;
    column-gap: 26px;
    row-gap: 20px;
    margin-left: 14px;
    margin-right: 14px;
    margin-bottom: 48px;
}

.news-list-grid>div {
    min-height: 340px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.news-list-grid>div>a {
    display: block;
    min-height: 340px;
    box-sizing: border-box;
    position: relative;
    user-select: none;
    position: relative;
}

.news-list-card {
    min-height: 340px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    background: white;
}

.news-card-alink>img:nth-of-type(1) {
    width: 100%;
    height: auto;
}

.news-card-bottom-detail {
    padding-bottom: 14px;
    bottom: 0px;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 20px;
    box-sizing: border-box;
    color: #252a2e;
    font-size: 14px;
    font-weight: 500;
    column-gap: 8px;
    z-index: 999;
}

.news-card-content-part {
    padding: 20px 20px 0 20px;
}

.news-card-title-event {
    font-size: 12px;
    font-weight: 600;
    color: var(--m-color);
}

.news-card-title-year {
    color: #252a2e;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    height: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-card-desc-text {
    display: none;
}

.news-card-desc-text>div {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.news-top-bar-title {
    max-width: 800px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-detail-news-title {
    color: #101121;
    font-size: 20px;
    line-height: 28px;
    margin: 32px 14px 10px 14px;
    font-weight: 600;
}

.news-detail-news-time {
    font-size: 16px;
    color: #474747;
    display: flex;
    align-items: center;
    column-gap: 4px;
    margin: 0 auto 28px auto;
    margin-left: 14px;
}

.news-detail-news-time>svg {
    width: 18px;
    height: 18px;
    fill: #474747;
}

.news-detail-news-text {
    margin-bottom: 30px;
    min-height: 400px;
    margin-left: 14px;
    margin-right: 14px;
}

.news-detail-news-text>div.text {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 24px;
    margin-bottom: 24px;
    text-align: justify;
}

.news-detail-news-text>div.img {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-detail-news-text>div.img>img {
    max-width: calc(100vw - 28px);
    max-height: 600px;
    box-shadow: 1px 1px 3px 2px rgba(0, 0, 0, 0.05);
}

.news-detail-news-main-text {
    /* display: flex; */
    /* align-items: flex-end; */
    /* width: 1120px; */
    margin: 0 14px;
    position: relative;
}

.news-detail-news-main-text>.news-detail-news-text {
    flex-shrink: 0;
    margin: initial;
    position: relative;
    z-index: 100;
}

.news-detail-right-img {
    width: 180px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: absolute;
    right: -10px;
    bottom: 0px;
    bottom: -44px;
    pointer-events: none;
    z-index: 1;
}

.news-detail-right-img>img {
    width: 180px;
    height: auto;
    opacity: 0.3;
}


.news-main-body-part {
    background-image: url("../img/news_bottom_gray.png");
    background-repeat: no-repeat;
    background-size: 600px auto;
    background-position: calc(100vw - 260px) bottom;
    padding-bottom: 20px;
}

.news-related-bottom-part {
    height: 430px;
    position: relative;
    box-sizing: border-box;
}

.news-related-bottom-part::before {
    content: "";
    height: 200px;
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, #e0e0e0 50px, var(--m-color) 50px);
    z-index: 1;
}

.news-related-bottom-part>div {
    z-index: 100;
    position: relative;
}

.news-related-news-title {
    font-size: 22px;
    color: #101121;
    line-height: 28px;
    font-weight: 600;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 32px;
    margin: 0 14px;
}

.news-relate-card-line {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}

.news-relate-card-line>.news-list-card {
    width: 170px;
    font-size: 12px;
}

.news-relate-card-line .news-card-content-part {
    padding: 10px 10px 0 10px;
}

.news-relate-card-line .news-card-title-year {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    height: 72px;
    -webkit-line-clamp: 4;
}

.news-relate-card-line .news-card-desc-text {
    display: none;
}

.news-relate-card-line .news-list-card {
    height: 240px;
    min-height: initial;
}

.news-relate-card-line .news-card-alink {
    height: 240px;
    position: relative;
    display: block;
}

.news-relate-card-line .news-card-bottom-detail {
    padding-left: 10px;
}

.news-relate-card-line .news-card-bottom-detail-text {
    font-size: 12px;
}

.news-detail-contact {
    border-top: 5px solid var(--m-color);
    margin-top: -1px;
    padding-bottom: 30px;
}

.news-detail-contact::before {
    content: "";
    display: block;
    margin: auto;
    width: 90px;
    height: 12px;
    background: var(--m-color);
    position: relative;
    bottom: 8px;
    margin-bottom: 32px;
}

.news-detail-contact-tips {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #474747;
    text-align: center;
    margin-top: -16px;
    margin-bottom: 20px;
    margin-left: 14px;
    margin-right: 14px;
}

.news-contact-info-grid {
    margin: 0 14px;
}

.news-contact-info-grid>div {
    color: #101121;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    display: flex;
    align-items: center;
}

.news-contact-info-grid>div:nth-of-type(odd)::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--m-color);
    margin-right: 10px;
}

.news-contact-info-grid>div:nth-of-type(odd) {
    margin-bottom: 6px;
}

.news-contact-info-grid>div:nth-of-type(even) {
    margin-bottom: 20px;
}

.news-text-img-one-line>div.text {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 24px;
    margin-bottom: 24px;
    text-align: justify;
}

.news-text-img-one-line>div.img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-text-img-one-line>div.img>img {
    max-width: calc(100vw - 28px);
    max-height: 320px;
}

.news-text-img-pros {
    margin: 0 14px;
    padding-bottom: 10px;
}

.news-text-img-pros>div:nth-of-type(1)>img {
    height: auto;
    width: 100%;
    box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.03);
}

.news-text-img-pros>div:nth-of-type(2)>img {
    width: 330px;
    height: auto;
    display: none;
}

#news-main-part[news-key='0011'] .news-detail-news-text>div.text:nth-of-type(2),
#news-main-part[news-key='0011'] .news-detail-news-text>div.text:nth-of-type(6),
#news-main-part[news-key='0011'] .news-detail-news-text>div.text:nth-of-type(10),
#news-main-part[news-key='0015'] .news-detail-news-text>div.text:nth-of-type(3),
#news-main-part[news-key='0015'] .news-detail-news-text>div.text:nth-of-type(7),
#news-main-part[news-key='0015'] .news-detail-news-text>div.text:nth-of-type(11),
#news-main-part[news-key='0015'] .news-detail-news-text>div.text:nth-of-type(14),
#news-main-part[news-key='0016'] .news-detail-news-text>div.text:nth-of-type(3),
#news-main-part[news-key='0016'] .news-detail-news-text>div.text:nth-of-type(5),
#news-main-part[news-key='0016'] .news-detail-news-text>div.text:nth-of-type(7),
#news-main-part[news-key='0016'] .news-detail-news-text>div.text:nth-of-type(9),
#news-main-part[news-key='0016'] .news-detail-news-text>div.text:nth-of-type(11),
#news-main-part[news-key='0016'] .news-detail-news-text>div.text:nth-of-type(13),
#news-main-part[news-key='0018'] .news-detail-news-text>div.text:nth-of-type(2),
#news-main-part[news-key='0018'] .news-detail-news-text>div.text:nth-of-type(7),
#news-main-part[news-key='0018'] .news-detail-news-text>div.text:nth-of-type(12),
#news-main-part[news-key='0018'] .news-detail-news-text>div.text:nth-of-type(14),
#news-main-part[news-key='0018'] .news-detail-news-text>div.text:nth-of-type(17),
#news-main-part[news-key='0018'] .news-detail-news-text>div.text:nth-of-type(19),
#news-main-part[news-key='0018'] .news-detail-news-text>div.text:nth-of-type(21),
#news-main-part[news-key='0019'] .news-detail-news-text>div.text:nth-of-type(2),
#news-main-part[news-key='0019'] .news-detail-news-text>div.text:nth-of-type(5),
#news-main-part[news-key='0019'] .news-detail-news-text>div.text:nth-of-type(7),
#news-main-part[news-key='0019'] .news-detail-news-text>div.text:nth-of-type(10),
#news-main-part[news-key='0019'] .news-detail-news-text>div.text:nth-of-type(12),
#news-main-part[news-key='0019'] .news-detail-news-text>div.text:nth-of-type(15),
#news-main-part[news-key='0020'] .news-detail-news-text>div.text:nth-of-type(3),
#news-main-part[news-key='0020'] .news-detail-news-text>div.text:nth-of-type(11),
#news-main-part[news-key='0020'] .news-detail-news-text>div.text:nth-of-type(13),
#news-main-part[news-key='0021'] .news-detail-news-text>div.text:nth-of-type(2),
#news-main-part[news-key='0021'] .news-detail-news-text>div.text:nth-of-type(4),
#news-main-part[news-key='0021'] .news-detail-news-text>div.text:nth-of-type(10),
#news-main-part[news-key='0021'] .news-detail-news-text>div.text:nth-of-type(13),
#news-main-part[news-key='0021'] .news-detail-news-text>div.text:nth-of-type(16),
#news-main-part[news-key='0021'] .news-detail-news-text>div.text:nth-of-type(18),
#news-main-part[news-key='0021'] .news-detail-news-text>div.text:nth-of-type(20),
#news-main-part[news-key='0022'] .news-detail-news-text>div.text:nth-of-type(4),
#news-main-part[news-key='0023'] .news-detail-news-text>div.text:nth-of-type(-2n+4),
#news-main-part[news-key='0023'] .news-detail-news-text>div.text:nth-of-type(2n+7),
#news-main-part[news-key='0024'] .news-detail-news-text>div.text:nth-of-type(3),
#news-main-part[news-key='0024'] .news-detail-news-text>div.text:nth-of-type(5),
#news-main-part[news-key='0024'] .news-detail-news-text>div.text:nth-of-type(8),
#news-main-part[news-key='0024'] .news-detail-news-text>div.text:nth-of-type(10),
#news-main-part[news-key='0024'] .news-detail-news-text>div.text:nth-of-type(13)
{
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 6px !important;
}

#news-main-part[news-key='0011'] .news-detail-news-text>div.text:last-of-type {
    margin-bottom: 140px;
}

#news-main-part[news-key='0011'] .news-detail-right-img {
    bottom: -160px !important;
}

#news-main-part[news-key='0011'] .news-detail-right-img>img {
    width: 160px;
}
#news-main-part[news-key='0021'] .news-detail-news-text>div.text:nth-of-type(5),
#news-main-part[news-key='0021'] .news-detail-news-text>div.text:nth-of-type(6),
#news-main-part[news-key='0021'] .news-detail-news-text>div.text:nth-of-type(7)
{
    margin-bottom: 6px !important;
}
#news-main-part[news-key='0021'] .news-detail-news-text>div.text:nth-of-type(5)::before,
#news-main-part[news-key='0021'] .news-detail-news-text>div.text:nth-of-type(6)::before,
#news-main-part[news-key='0021'] .news-detail-news-text>div.text:nth-of-type(7)::before
{
    content: "";
    width: 8px;
    height: 8px;
    background: var(--m-color);
    display: inline-block;
    margin-right: 10px;
}
#news-main-part[news-key='0021'] .news-detail-news-text>div.text:nth-of-type(7){
    margin-bottom: 28px !important;
}
#news-main-part[news-key='0021'] .news-text-img-double img{
    margin-bottom: 10px;
}
.news-text-img-double>div>img {
    max-width: calc(100vw - 28px);
    max-height: 600px;
}

.news-0022-flex{
    display: flex;
    flex-direction: column;
}
.news-0022-flex div.text {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 24px;
    margin-bottom: 24px;
    text-align: justify;
}
.news-0022-flex>div:nth-of-type(1)>div.text:nth-of-type(2n+1){
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 6px !important;
}
.news-0022-flex img{
    width: calc(100vw - 28px);
    margin-bottom: 10px;
}
.solution-big-img-part {
    overflow: hidden;
    width: 100%;
    min-width: var(--m-width);
    position: relative;
    bottom: 80px;
    z-index: 10;
    height: calc(100vh - 60px);
}

.solution-big-img-content {
    position: absolute;
    bottom: 0px;
    display: flex;
    height: calc(100vh - 60px);
    width: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.solution-big-img-content-vrs {
    background-image: url("../img/mobile_solution_vrs_bg.jpg");
}

.solution-big-img-content-vrs::before {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0;
    background: linear-gradient(234.78deg, rgba(30, 34, 170, 1) 0%, rgba(54, 56, 64, 1) 100%);
}

.solution-big-img-content-robot {
    background-image: url("../img/mobile_solution_robot_bg.jpg");
    background-position: center bottom;
}

.solution-big-img-content-robot::before {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0;
    background: linear-gradient(234.78deg, rgba(82, 114, 217, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.solution-big-img-content-monitor {
    background-image: url("../img/mobile_solution_monitor_bg.jpg");
}

.solution-big-img-content-monitor::before {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0;
    background: linear-gradient(234.78deg, rgba(82, 114, 217, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.solution-real-content-main {
    z-index: 999;
    position: relative;
    margin: 114px 22px 0 22px;
}

.solution-bg-decoration {
    width: 32px;
    height: 32px;
    position: relative;
    top: 2px;
    left: -14px;
}

.product-bg-decoration {
    top: 16px;
    left: 6px;
}

.solution-bg-decoration>div {
    width: 10px;
    height: 10px;
    position: absolute;
}

.solution-bg-decoration>div:nth-of-type(1) {
    border-left: 3px solid white;
    border-top: 3px solid white;
    left: 0;
    top: 0;
}

.solution-bg-decoration>div:nth-of-type(2) {
    border-left: 3px solid var(--m-color);
    border-bottom: 3px solid var(--m-color);
    left: 0;
    bottom: 0;
}

.solution-bg-decoration>div:nth-of-type(3) {
    border-right: 3px solid var(--m-color);
    border-top: 3px solid var(--m-color);
    right: 0;
    top: 0;
}

.solution-bg-decoration-robot>div:nth-of-type(2),
.solution-bg-decoration-robot>div:nth-of-type(3) {
    border-color: var(--strong-color);
}

.solution-show-pro-main-top {
    position: relative;
    background-image: url("../img/solution-line.png");
    min-height: 1000px;
    background-repeat: no-repeat;
    background-position-y: -536px;
    background-position-x: -20px;
    margin-top: -250px;
    padding-top: 75px;
}

.solution-show-pro-main-top {
    background: none;
}

.solution-mg-bar-left {
    margin-left: 18px;
    display: inline-block;
}

.solution-bar-black-alink>span {
    color: #101121;
}

.solution-show-pro-desc-part {
    box-sizing: border-box;
    position: relative;
    bottom: 18px;
}

.solution-show-bg-main {
    height: 68px;
    position: relative;
    z-index: 999;
    margin-bottom: 72px;
    pointer-events: none;
}

.solution-cors-img-line {
    position: absolute;
    right: 20px;
    bottom: -4px;
    width: 70px;
    height: 300px;
    pointer-events: none;
    z-index: 100;
}

.solution-cors-img-line>img {
    width: 70px;
    margin-top: 20px;
}

.solution-robot-img-line {
    position: absolute;
    right: 0px;
    bottom: 140px;
    width: 150px;
    height: 150px;
    pointer-events: none;
    z-index: 1;
}

.solution-robot-img-line>img {
    width: 150px;
    margin-top: 0px;
}

.solution-monitor-img-line {
    position: absolute;
    right: 20px;
    bottom: 64px;
    width: 50px;
    height: 175px;
    pointer-events: none;
}

.solution-monitor-img-line>img {
    width: 50px;
    margin-top: 0px;
}


.solution-big-img-content>img {
    width: 1920px;
    height: auto;
    background-size: 1920px auto;
    background-position: center -100px;
}

.solution-show-pro-main-top-monitor {
    background-image: url("../img/solution_monitor_line_bg.png");
    background-size: 4020px auto;
    background-position: center -320px;
    background-color: #fcfdff;
}

.solution-monitor-struct-part {
    width: 360px;
    height: 260px;
    margin: auto;
    border: none;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
}

.solution-monitor-struct {
    width: 1190px;
    height: 782px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: 1190px 782px;
    position: relative;
    transform-origin: 0 0;
    transform: scale(0.3);
}

.monitor-struct-text {
    color: var(--m-color);
    font-weight: 500;
    font-size: 24px;
    height: 30px;
    line-height: 30px;
    width: 250px;
    text-align: center;
    position: absolute;
}

.solution-monitor-struct>.monitor-struct-text:nth-of-type(1) {
    left: -40px;
    top: 120px;
}

.solution-monitor-struct>.monitor-struct-text:nth-of-type(2) {
    left: -52px;
    top: 304px;
}

.solution-monitor-struct>.monitor-struct-text:nth-of-type(3) {
    left: -30px;
    top: 466px;
}

.solution-monitor-struct>.monitor-struct-text:nth-of-type(4) {
    left: 78px;
    top: 600px;
}

.solution-monitor-struct>.monitor-struct-text:nth-of-type(5) {
    left: 240px;
    top: 734px;
}

.solution-monitor-struct>.monitor-struct-text:nth-of-type(6) {
    left: 458px;
    top: 310px;
}

.solution-monitor-struct>.monitor-struct-text:nth-of-type(7) {
    left: 726px;
    top: 514px;
}

.monitor-struct-tip {
    color: #101121;
    font-size: 18px;
    font-weight: 500;
    width: 270px;
    position: absolute;
}

.solution-monitor-struct>div>.monitor-struct-tip:nth-of-type(1) {
    left: 870px;
    top: 300px;
}

.solution-monitor-struct>div>.monitor-struct-tip:nth-of-type(2) {
    left: 940px;
    top: 684px;
}

.solution-monitor-adv-part {
    margin-top: 10px;
}

.solution-monitor-adv-grid {
    display: grid;
    row-gap: 26px;
    margin: 16px 14px 24px 14px;
}

.solution-monitor-adv-one {
    display: flex;
    align-items: flex-start;
    column-gap: 14px;
}

.solution-monitor-adv-one>div:nth-of-type(1) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-monitor-adv-one>div:nth-of-type(1)>img {
    width: 64px;
    height: 64px;
}

.solution-monitor-adv-one>div:nth-of-type(2)>div:nth-of-type(1) {
    font-size: 20px;
    color: #101121;
    font-weight: 500;
    line-height: 30px;
}

.solution-monitor-adv-one>div:nth-of-type(2)>div:nth-of-type(2) {
    font-size: 16px;
    color: #474747;
    font-weight: 500;
    line-height: 24px;
}

.solution-monitor-diagram-desc {
    margin-top: 30px;
}

.solution-monitor-diagram-one {
    margin-bottom: 28px;
    margin-left: 14px;
    margin-right: 14px;
}

.solution-monitor-diagram-circle {
    display: block;
    width: 26px;
    height: 10px;
    position: relative;
    margin-right: 10px;
}

.solution-monitor-diagram-circle::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--m-color);
    position: absolute;
    left: 0;
    top: 0;
}

.solution-monitor-diagram-circle::after {
    content: "";
    display: block;
    height: 2px;
    width: 16px;
    background: var(--m-color);
    left: 8px;
    top: 4px;
    position: absolute;
}

.solution-monitor-diagram-one>div:nth-of-type(1) {
    color: #101121;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 16px;
    width: 100%;
    box-sizing: border-box;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-monitor-diagram-one>div:nth-of-type(2) {
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    justify-content: center;
    box-shadow: 1px 1px 3px 2px rgba(0, 0, 0, 0.03);
    background: rgba(254, 254, 255);
}

.solution-monitor-diagram-one>div>img {
    max-width: 80%;
}

.solution-monitor-diagram-img {
    display: block;
    width: calc(100vw - 28px);
    height: calc(100vw - 28px);
    background-repeat: no-repeat;
    background-size: 88% auto;
    background-position: center;
}

.solution-mg-bar-left {
    margin-left: 18px;
    display: inline-block;
    margin-top: 0px;
}


.solution-main-common-part {
    width: var(--m-width);
    margin: auto;
    margin-bottom: 10px;
}


.solution-apply-big-img>img {
    width: 100%;
    height: 100%;
}

.solution-apply-big-img>i.solution-apply-big-bg {
    width: calc(100vw - 28px);
    height: calc(100vw - 28px);
    display: block;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

.solution-apply-big-img>.solution-cors-n-card {
    width: 274px;
    height: 150px;
    position: absolute;
    opacity: 0;
    background: rgba(252, 253, 255, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    padding: 8px 10px 0px 10px;
    box-sizing: border-box;
    display: none;
}


.solution-cors-n-card-title {
    font-size: 12px;
    color: #000;
    margin-bottom: 2px;
}

.solution-cors-n-card-desc {
    font-size: 12px;
    color: #474747
}

.solution-cors-n-card-desc::before {
    content: "-";
}

.solution-monitor-n-card {
    width: 100%;
    height: 208px;
    opacity: 0.98;
    background: rgba(252, 253, 255, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    padding-top: 18px;
}

.solution-monitor-n-card>div {
    width: 256px;
    margin: auto;
}

.solution-monitor-n-card>div:nth-of-type(1) {
    margin-bottom: 5px;
}

.solution-monitor-n-card-img {
    padding-top: 10px;
    display: block;
}

.solution-monitor-n-card-img>img {
    width: 256px;
}

.solution-card-list-part {
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 21px));
    align-items: center;
    justify-content: center;
    column-gap: 14px;
    row-gap: 14px;
    margin-bottom: 32px;
    padding-top: 4px;
}

.solution-card-list-part>div {
    min-height: 214px;
    background: rgba(250, 251, 253, 1);
    box-shadow: 1px 1px 7px 1px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    box-sizing: border-box;
}

.solution-robot-card-list-part {
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 7px));
    column-gap: 14px;
    row-gap: 14px;
    margin: 0 auto 20px auto;
    padding-left: 14px;
    padding-right: 14px;
    box-sizing: border-box;
}

.solution-robot-card-list-part>div {
    height: 160px;
    background: rgba(250, 251, 253, 1);
    box-shadow: 1px 1px 7px 1px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    box-sizing: border-box;
}

.solution-monitor-card-list-part {
    display: grid;
    grid-template-columns: repeat(2, calc(50vw - 21px));
    column-gap: 14px;
    row-gap: 14px;
    margin: 0 auto 30px auto;
    box-sizing: border-box;
    padding-left: 14px;
}

.solution-monitor-card-list-part>div {
    min-height: 140px;
    background: rgba(250, 251, 253, 1);
    box-shadow: 1px 1px 7px 1px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    box-sizing: border-box;
    padding-bottom: 10px;
}

.solution-monitor-card-img {
    display: flex;
    justify-content: center;
}

.solution-monitor-card-img>img {
    width: 100%;
}

.solution-card-monitor-title {
    color: #101121;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    text-align: center;
    box-sizing: border-box;
    padding: 0px 12px;
    text-align: center;
}

.solution-card-one>div:nth-of-type(2).solution-monitor-card-bottom {
    margin: 0 auto;
    margin-top: 6px;
}

.solution-card-one {
    padding: 12px 12px 0 12px;
}

.solution-card-img {
    display: flex;
    justify-content: center;
    width: 100%;
}

.solution-card-img>img {
    width: 100%;
}

.solution-robot-card-img {
    display: flex;
    justify-content: center;
    width: 100%;
}

.solution-robot-card-img>img {
    width: 100%
}

.solution-card-title {
    color: var(--m-color);
    font-size: 18px;
    font-weight: 500;
    margin-top: 12px;
    margin-bottom: 6px;
    display: inline-block;
    padding: 0 3px;
    position: relative;
}

.solution-card-title>span {
    position: relative;
    z-index: 100;
}

.solution-card-title::after {
    content: "";
    display: inline-block;
    height: 7px;
    width: calc(100%);
    background: #ebebeb;
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 10;
}

.solution-robot-card-list-part .solution-card-title {
    font-size: 14px;
    text-align: center;
    display: block;
    color: #101121;
}

.solution-robot-card-list-part .solution-card-title::after {
    background: none;
}

.solution-card-desc {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #474747;
}

.solution-show-r-title {
    font-size: 24px;
    color: #fcfdff;
    font-weight: 600;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.10);
}


.solution-show-r-type-text {
    font-size: 16px;
    color: #fcfdff;
    font-weight: 500;
    position: relative;
    margin-bottom: 16px;
    margin-top: 2px;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.10);
}

.solution-show-r-type-text::after {
    content: "";
    display: none;
    height: 0px;
    width: 28px;
    border-bottom: 2px solid var(--m-color);
    left: 0;
    top: 32px;
    position: absolute;
}

.solution-show-r-type-text-robot::after {
    border-bottom: 2px solid var(--strong-color);
}

.solution-bg-show-desc {
    margin-top: 10px;
    font-weight: 500;
    font-size: 14px;
    color: #fcfdff;
    line-height: 22px;
    text-align: justify;
    position: relative;
    z-index: 900;
}

.solution-bg-show-desc>div {
    margin-bottom: 20px;
}

.solution-bg-show-desc>div:nth-of-type(1) {
    font-size: 14px;
    line-height: 22px;
}

.solution-bg-show-desc>div:nth-of-type(1)::before {
    content: "-";
    margin-right: 2px;
}

.solution-bg-show-desc>div:nth-of-type(2),
.solution-bg-show-desc>div:nth-of-type(3) {
    font-size: 12px;
    line-height: 16px;
    display: none;
}

.solution-robot-bg-show-desc {
    margin-top: 12px;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
}

.solution-robot-bg-show-desc>div {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    text-align: justify;
}

.solution-sys-feature-part {
    min-height: 640px;
    position: relative;
    margin: 0px 14px 24px 14px;
}

.solution-sys-feature-text>div:nth-of-type(1) {
    font-size: 20px;
    color: #101121;
    font-weight: 600;
    margin-bottom: 10px;
}

.solution-sys-feature-text>div:nth-of-type(n+2) {
    line-height: 20px;
    font-size: 16px;
    font-weight: 400;
    color: #474747;
    margin-bottom: 12px;
}

.solution-sys-feature-text>div:nth-of-type(n+2)::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--m-color);
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.solution-intro-monitor-part {
    min-height: 550px;
    background: rgba(30, 34, 170, 0.03);
    overflow: hidden;
    box-sizing: border-box;
}

.solution-intro-monitor-part .main-base-index-part-title {
    margin-bottom: 10px;
}

.solution-intro-monitor-part .main-base-index-part {
    padding-bottom: 0px;
}

.solution-ntrip-caster-title {
    text-align: center;
    color: #101121;
    font-size: 18px;
    font-weight: 500;
}

.solution-ntrip-caster-title::before {
    content: "-";
    margin-right: 4px;
}

.solution-ntrip-caster-title::after {
    content: "-";
    margin-left: 4px;
}

.solution-s-m-part {
    margin-top: 12px;
}


.solution-s-m-text-content {
    margin: 0 14px;
}

.solution-s-m-text-main-title {
    color: #101121;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 6px;
}

.solution-s-m-text-desc {
    font-size: 16px;
    line-height: 20px;
    color: #474747;
    margin-bottom: 12px;
    font-weight: 400;
    position: relative;
    padding-left: 14px;
}

.solution-s-m-text-desc::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--m-color);
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    position: absolute;
    left: 0px;
    top: 8px;
}

.solution-s-m-imgs {
    display: flex;
    justify-content: center;
    justify-content: center;
}

.solution-s-m-imgs>img {
    width: 90%;
}

.solution-s-m-blue-divide {
    width: 318px;
    height: 0px;
    border-bottom: 2px solid rgba(30, 34, 170, 0.5);
    box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.08);
    margin: 20px 0;
}

.solution-s-m-top-circle {
    height: 24px;
    width: 36px;
    height: 32px;
    position: relative;
    margin-left: 14px;
    margin-top: 16px;
    display: none;
}

.solution-s-m-top-circle::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--m-color);
    position: absolute;
    left: 0;
    top: 0;
}

.solution-s-m-top-circle::after {
    content: "";
    display: block;
    height: 16px;
    width: 2px;
    background: var(--m-color);
    left: 4px;
    top: 5px;
    position: absolute;
}

.solution-cors-n-card-img>img.solution-use-rtk {
    margin-left: 20px;
}

.solution-cors-n-card-img>img.solution-use-hand-book {
    position: relative;
    right: 18px;
}

.solution-arrow-line {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 12px;
}

.sulution-robot-feture-title {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    margin: 0 14px 16px 14px;
}

.solution-svg-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 14px 14px 14px;

}

.solution-dashed-line {
    stroke: var(--m-color);
    stroke-dasharray: 12;
    stroke-width: 4;
}

.solution-blue-results {
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    line-height: 36px;
    color: var(--m-color);
    margin-bottom: 8px;
    margin-top: -8px;
}

.solution-robot-feature-part {
    min-height: 500px;
    margin: auto;
    padding-bottom: 24px;
    background: #f8f8f8;
}

.solution-robot-cad-line {
    padding: 10px 14px 0px 14px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
}

.solution-robot-cad-line>div:nth-of-type(1) {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    text-align: center;
    margin-bottom: 12px;
}

.solution-or-text {
    color: var(--m-color);
    font-size: 30px;
    display: flex;
    justify-content: center;
}

.solution-robot-cad-one {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: #101121;
    width: 300px;
}

.solution-robot-cad-one>div:nth-of-type(1) {
    white-space: nowrap;
    display: flex;
    justify-content: center;
}

.solution-robot-cad-one>div:nth-of-type(2) {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 12px;
    margin-top: 12px;
    width: 300px;
    background: #fcfdff;
    box-shadow: 1px 1px 3px 2px rgba(0, 0, 0, 0.05);
    height: 102px;
}

.solution-robot-cad-one>div:nth-of-type(2)>img {
    max-height: 88px;
}

.solution-robot-cad-left>div:nth-of-type(1) {
    margin-bottom: 12px;
    text-align: center;
}

.solution-robot-cad-right>div:nth-of-type(1) {
    font-size: 16px;
    margin-bottom: 4px;
    margin-top: 16px;
    text-align: center;
}

.solution-robot-feature-text-part {
    margin: 20px 14px;
}

.solution-robot-feature-text-part>div {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.solution-robot-f-img-line {
    display: flex;
    flex-direction: column;
    row-gap: 14px;
    align-items: center;
}

.solution-robot-f-img-line>img {
    width: calc(100% - 28px);
    height: auto;
    box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.04);
}


.solution-robot-pram-part {
    background: rgba(33, 33, 33, 0.03);
    min-height: 654px;
}

.solution-robot-param-main {
    width: var(--m-width);
    margin: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.solution-robot-param-main>div {
    position: relative;
    z-index: 101;
}

.solution-robot-param-text {
    box-sizing: border-box;
}

.solution-robot-param-text-right {
    position: relative;
}

.solution-robot-param-center {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    user-select: none;
}

.solution-robot-param-center>img {
    width: 300px;
    position: relative;
    left: 6px;
    top: 14px;
}

.solution-robot-param-info-one {
    margin-bottom: 48px;
    box-sizing: border-box;
}

.solution-robot-param-info-title {
    position: relative;
    height: 26px;
    margin-bottom: 6px;
    grid-column: 1 / 3;
    padding-left: 14px;
    box-sizing: border-box;
}

.solution-robot-param-info-title::before {
    content: "";
    display: block;
    border-bottom: 8px solid #e0e0e0;
    width: 320px;
    position: absolute;
    bottom: 0px;
    left: 20px;
    z-index: 1;
}

.solution-robot-param-info-title>span {
    color: #101121;
    font-size: 20px;
    font-weight: 600;
    z-index: 10;
    position: relative;
}

.solution-robot-param-info-grid>div.solution-robot-param-info-title:nth-of-type(n+1) {
    margin-top: 26px;
}

.solution-robot-param-info-grid {
    display: grid;
    grid-template-columns: 150px 1fr;
    column-gap: 14px;
    row-gap: 7px;
    width: 100vw;
}

.solution-robot-param-info-grid>div {
    font-size: 14px;
    color: #474747;
    line-height: 20px;
}

.solution-robot-param-info-grid>div.t {
    font-weight: 400;
    padding-left: 14px;
    box-sizing: border-box;
}

.solution-robot-param-info-grid>div.t::after {
    content: ":";
}

.solution-robot-param-info-grid>div.d {
    font-weight: 500;
    padding-right: 12px;
    box-sizing: border-box;
}


.career-top-part {
    min-height: 1100px;
    background-image: url("../img/career_bg.png");
    background-repeat: no-repeat;
    background-size: 1400px auto;
    background-position: center 94px;

}

.career-info-part {
    min-height: 480px;
    box-sizing: border-box;
    width: var(--m-width);
    padding-top: 48px;
    margin: 0 auto;
}

.career-gray-mask-part {
    width: 100%;
    min-height: 776px;
    position: relative;
    background-image: linear-gradient(to bottom, rgba(245, 246, 248, 0) 40px, rgba(245, 246, 248, 0.65) 40px);
    padding-bottom: 30px;
    box-sizing: border-box;
}

.career-main-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #101121;
    text-align: justify;
    margin: -6px 14px 0 14px;
}

.career-main-desc>div {
    margin-bottom: 10px;
}

.career-submit-to-email {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    font-style: italic;
    color: #474747;
    text-align: center;
    margin: 24px 14px 0px 14px;
}

.career-d-part {
    width: var(--m-width);
    margin: 0 auto;
}

.career-d-blue-title {
    color: var(--m-color);
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
}

.career-d-desc {
    text-align: justify;
    color: #000;
    line-height: 22px;
    font-size: 16px;
    font-weight: 400;
    margin: 0 14px;
}

.career-form-part {
    padding-top: 42px;
}

.career-d-form-tips {
    color: #474747;
    letter-spacing: 0.5px;
    line-height: 18px;
    font-size: 14px;
    margin: 0 14px 18px 14px;
}

.form-control-textarea::placeholder {
    font-size: 16px;
    font-weight: 500;
    color: rgba(71, 71, 71, 0.4);
}




.social-alink {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.social-alink-x {
    background-image: url("../img/twitter.png");
}

.social-alink-youtube {
    background-image: url("../img/youtube.png");
}

.social-alink-whatsapp {
    background-image: url("../img/whatsapp.png");
}

.social-alink-facebook {
    background-image: url("../img/facebook.png");
}

.social-alink-instagram {
    background-image: url("../img/instagram.png");
}

.social-alink-linkin {
    background-image: url("../img/linkin.png");
}

.header-m-bottom-part {
    padding: 34px 16px 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-contact-f-list {
    display: flex;
    align-items: center;
    justify-content: center;

}

.header-contact-f-list>a {
    width: 26px;
    height: 26px;
    margin-right: 16px;
}

.header-contact-f-list>a:last-of-type {
    margin-right: 0px;
}

.lang-switch-line>select {
    background: white;
    border-radius: 4px;
    height: 28px;
    border: 1px solid var(--m-color);
    color: var(--m-color);
    min-width: 72px;
    font-size: 14px;
    outline: none;
}

.empty-h36 {
    height: 36px;
}



.privacy-part {

    margin: 30px 14px 42px 14px;
}

.privacy-content>div.text {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    line-height: 24px;
    margin-bottom: 2px;
    margin-top: 30px;
    text-align: justify;
}

.privacy-content>div.desc {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 24px;
    margin-bottom: 24px;
    text-align: justify;
}

.privacy-head-content {
    width: var(--m-width);
    margin: 0 auto;
}

.privacy-top-desc {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 24px;
    margin-bottom: 24px;
    text-align: justify;
    margin-top: 24px;
}

.privacy-title-hr {
    border-bottom: 1px solid #eee;
    color: #101121;
    font-size: 28px;
    font-weight: 600;
    line-height: 54px;
}

.privacy-company-text {
    color: #474747;
    font-size: 16px;
    font-weight: 500;
    margin-top: 6px;
}


.privacy-please-agree-line {
    margin-top: 14px;
    font-weight: 500;
    font-size: 16px;
    margin-left: 14px;
    margin-right: 14px;
}

.privacy-please-agree-line a {
    font-weight: 500;
    text-decoration: underline;
}

.privaci-err-tip {
    color: #ff3300;
    margin-top: 10px;
    padding-left: 30px;
    opacity: 0;
    transition: opacity 0.3s;
}

.pros-compare-line {
    margin-bottom: 18px;
    display: flex;
}

.pros-compare-line>a {
    height: 28px;
    min-width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--m-color);
    color: #fff;
    position: relative;
    font-size: 14px;
    border: 1px solid var(--m-color);
    z-index: 999;
    padding-left: 14px;
    font-weight: 500;
}

.pros-compare-line>a>i {
    font-size: 20px;
    margin-left: 6px;
}


.pros-compare-main-part {
    width: var(--m-width);
    margin: 32px auto 120px auto;
    min-height: 600px;
}


.pros-compare-pro-name {
    border-bottom: 1px solid var(--m-color);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    font-weight: 600;
    font-size: 18px;
}

.pros-compare-pro-img>img {
    width: 90px;
    height: 90px;
}

.pros-compare-grid-tb>div.bg-light-blue {
    background: rgba(242, 247, 255, 1);
}

.pros-compare-main-title {
    margin-bottom: 32px;
    opacity: 1;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    color: rgba(16, 17, 33, 1);
    text-align: center;
}

.pros-compare-2-grid {
    margin: 0 14px;
    display: grid;
    grid-template-columns: 50% 50%;
}


.pro-compare-pros-sel {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    margin-bottom: 4px;
}

.pro-compare-pros-sel select {
    height: 32px;
    border: none;
    outline: none;
    border-bottom: 1px solid #474747;
    width: 120px;
    border-radius: 0px;
    font-size: 16px;
    background: white;
}

.pro-compare-img-view {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-compare-img-view>img {
    width: 130px;
    height: auto;
}

.pros-compare-param-content>div {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
    padding-top: 12px;
}

.pros-compare-param-content>div>div:nth-of-type(n+2) {
    color: #474747;
    font-size: 14px;
    font-weight: 400;
    padding-right: 12px;
}

.pros-compare-param-title {
    grid-column: 1 / 3;
    color: #101121;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}



.train-center-bg {
    height: 180px;
    background-image: url("../img/train_center_bg.png");
    background-size: 960px 180px;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

.train-center-content {
    margin-bottom: 60px;
}

.train-center-left-menu {
    width: 100%;
    flex-shrink: 0;
    user-select: none;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e6e6e6;
}

.train-center-left-submenu>div:nth-of-type(1) {
    height: 32px;
    display: flex;
    align-items: center;
    padding-left: 16px;
    box-sizing: border-box;
    color: #212121;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    display: none;
}



.train-center-left-submenu>div:nth-of-type(2) {
    transition: height 0.2s;
    overflow-y: hidden;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 14px;
    padding-top: 10px;
}

.train-center-left-submenu.noexpand {
    display: none;
}

.train-center-left-submenu>div>a {
    height: 32px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    padding: 0 16px;
    box-sizing: border-box;
    color: #212121;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    margin-right: 4px;
    border-radius: 6px;
}

.train-center-left-submenu>div>a.active {
    color: var(--m-color);
}

.train-center-left-menu>a:last-of-type {
    border-bottom: none;
}

.train-center-right-list {
    flex-grow: 1;
    min-height: 300px;
}

.train-video-list-part {
    display: grid;
    row-gap: 16px;
    margin: 0 16px;
}


.train-video-card-one {
    min-height: 240px;
    box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.04);
}

.train-video-face {
    height: 200px;
    background-color: #eeeeef;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.train-video-face::before {
    content: "";
    width: 0;
    height: 0;
    border-width: 14px 24px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.75);
    opacity: 0;
}


.train-video-face>span>img {
    margin-right: 2px;
    width: 28px;
    height: 28px;
}

.train-video-face>span {
    color: #999;
    position: absolute;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.loading-img-part {
    display: inline-block;
    -webkit-animation: loading 1s linear infinite;
    -moz-animation: loading 1s linear infinite;
    -o-animation: loading 1s linear infinite;
    animation: loading 1s linear infinite;
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.t-video-face-part-loaded {
    pointer-events: auto;
}

.t-video-face-part-loaded>span {
    display: none;
}

.t-video-face-part-loaded:hover {
    background-size: auto 220px;
}

.t-video-face-part-loaded:hover::before {
    opacity: 1;
}

.train-video-bottom {
    padding: 8px 12px;
}

.train-video-download-part {
    flex-shrink: 0;
}

.train-video-download-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.train-video-file-title {
    font-size: 16px;
    font-weight: 500;
    color: #212121;
    line-height: 20px;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 40px;
}

.train-video-date {
    font-size: 12px;
    color: #777;
    display: flex;
    align-items: center;
    column-gap: 4px;
}

.train-video-date>svg {
    width: 16px;
    height: 16px;
    fill: #777 !important;
}

.train-video-download-part>a {
    border: 1px solid var(--m-color);
    font-size: 14px;
    height: 24px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    font-weight: 400;
}

.train-video-download-part>a>i {
    font-size: 12px;
    margin-left: 4px;
}

.train-video-download-part>a:hover {
    background: var(--m-color);
    color: white;
}

.train-video-download-part>a:hover>i {
    color: white;
}

.train-center-title-top {
    margin-top: 48px;
}


.train-center-video-play {
    width: 330px;
    position: relative;
}

.train-center-video-play video {
    width: 330px;
    margin: 0;
    padding: 0;
    display: block;
    background: none;
}

.train-center-video-play>div {
    margin-top: 20px;
    box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.15);
    width: 330px;
}

.video-play-close-btn {
    width: 40px;
    height: 40px;
    border: none;
    outline: none;
    border-radius: 50%;
    user-select: none;
    right: -20px;
    top: -20px;
    position: absolute;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.75);
}

.video-play-close-btn::before,
.video-play-close-btn::after {
    content: "";
    background: var(--m-color);
    position: absolute;
    height: 2px;
    width: 20px;
    left: 10px;
    top: 19px;
}

.video-play-close-btn::before {
    transform: rotate(45deg);
}

.video-play-close-btn::after {
    transform: rotate(-45deg);
}

.train-center-no-data {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 24px;
}

.train-center-no-data>img {
    width: auto;
}

.train-center-no-data>div {
    color: #999;
    font-size: 26px;
    margin-top: 6px;
}

.train-top-exp-part {
    margin: 0 0 16px 0;
}

.train-top-exp-title {
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-bottom: 1px solid #eee;
    background: #eeeefa;
    overflow-x: scroll;
    overflow-y: hidden;
}

.train-top-exp-title>a {
    white-space: nowrap;
    color: #212121;
    padding: 0 10px;
    font-weight: 500;
    font-size: 16px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.train-top-exp-title>a::after {
    content: "";
    border-right: 1px solid #ccc;
    width: 1px;
    height: 14px;
    position: absolute;
    right: 0px;
    top: 17px;
}

.train-top-exp-title>a:last-of-type::after {
    display: none;
}

.train-top-exp-title>a.active {
    border-top: 3px solid var(--m-color);
}

.header-sign-in-out {
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: right;
    height: 48px;
    border-bottom: 1px solid #eeeef0;
}

.logined-partner-info {
    display: flex;
    align-items: center;
    height: 100%;
    color: #474747;
}

.logined-partner-info>i.icon-yonghuzu {
    font-size: 24px;
    color: var(--m-color);
    margin-right: 4px;
}

.logined-partner-info>i.icon-exit-full {
    margin-left: 4px;
    font-size: 14px;
    position: relative;
    top: 1px;
}


.device {
    width: 100vw;
    height: calc(100vh - 60px);
    padding: 0;
    border-radius: 20px;
    margin: 0px auto;
    position: relative;
}

.swiper-container {
    height: calc(100vh - 60px);
    width: 100vw;
}
.content-slide {
    padding: 20px;
    color: #fff;
}

.pagination {
    position: absolute;
    left: 0;
    text-align: center;
    bottom: 160px;
    width: 100%;
    z-index: 999;
}

.swiper-pagination-switch {
    display: inline-block;
    width: 20px;
    height: 3px;
    background: #eaeaea;
    margin-right:6px;
    cursor: pointer;
}

.swiper-active-switch {
    background: var(--m-color);
}

.swiper-slide>img{
    width: 100%;
}

.index-swiper-part>div{
    background-size: 100% auto !important;
    background-position: center top;
}
.news-page-bottom{
    display: flex;
    justify-content: center;
    position: relative;
    bottom: 42px;
}
.news-page-bottom>div{
    display: flex;
}