* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary: #633fd0;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #efefef;
    border-radius: 0
}

::-webkit-scrollbar-thumb {
    background: #bfbfbf;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary)
}

::-webkit-scrollbar-corner {
    background: #efefef;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #444;
    overflow-x: hidden;
    font-family: Roboto, -apple-system, Helvetica Neue, Helvetica, Arial, sans-serif;
}

ul {
    list-style: none;
}

img {
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

a {
    color: inherit;
    text-decoration: none;
}

icon-font {
    display: inline-flex;
}

icon-font svg {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}

.inner {
    height: 100%;
    width: 100%;
    max-width: 1500px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
}

.ripple {
    position: relative;
    overflow: hidden;
    /* safari 圆角overflow失效问题*/
    transform: rotate(0deg)
}

.ripple:before {
    content: "";
    background-color: currentColor;
    position: absolute;
    width: 150%;
    padding-bottom: 150%;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transition: all 0.3s linear;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}

.ripple:active:before {
    transition-duration: 0s;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.25;
}

.lock {
    overflow: hidden;
}

header {
    height: 80px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 4;
    padding: 15px 0;
    background-color: #fff;
}

header .inner {
    display: flex;
    align-items: center;
}

header .logo {
    display: block;
    width: 50px;
    height: 50px;
    overflow: hidden;
    align-self: flex-end;
}

header .logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

header .nav {
    display: flex;
    margin-left: 40px;
}

header .nav > li {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 17px;
    transition: all 0.3s ease;
}

header .nav > li:hover,
header .nav ul li:hover {
    background-color: #efefef;
}

header .nav > li:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

header .nav > li:hover > a icon-font {
    transform: rotate(180deg);
}

header .nav > li.active > a {
    font-weight: bold;
    color: var(--primary);
}

header .nav > li a {
    line-height: 45px;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #6c6c6c;
}

header .nav > li a icon-font {
    margin-left: 5px;
    color: #444;
    transition: transform 0.3s ease;
}

header .nav > li + li {
    margin-left: 15px;
}

header .nav ul {
    position: absolute;
    top: 45px;
    left: 50%;
    min-width: 100%;
    transform: translate(-50%, 10px);
    transition: all 0.3s ease;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
}

header .nav ul li {
    white-space: nowrap;
    text-align: center;
}

header .language {
    margin-left: auto;
    margin-right: 0;
    position: relative;
}

header .language .current {
    cursor: default;
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

header .language .current icon-font {
    font-size: 18px;
    transition: transform 0.3s ease;
}

header .language .current span {
    margin: 0 6px;
}

header .language:hover .current {
    background-color: #f9f9f9;
}

header .language:hover ul {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

header .language:hover icon-font[name="arrow"] {
    transform: rotate(180deg);
}

header .language ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 50%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    border-radius: 5px;
    background-color: #fff;
    transition: all 0.3s ease;
    min-width: 100%;
    transform: translate(-50%, 10px);
}

header .language li {
    white-space: nowrap;
    line-height: 35px;
}

header .language li:hover {
    background-color: #eee;
}

header .language li a {
    display: block;
    text-align: center;
    padding: 0 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

header .menu {
    margin-left: 15px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: none;
    justify-content: center;
    align-items: center;
}

header .menu span,
header .menu span::before,
header .menu span::after {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #444444;
    border-radius: 2px;
    transition: all 0.3s ease;
}

header .menu span {
    position: relative;
}

header .menu span::before {
    content: "";
    position: absolute;
    bottom: 7px;
    left: 0;
}

header .menu span::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
}

header .menu.active span {
    background-color: transparent;
}

header .menu.active span:before {
    transform: translateY(7px) rotate(45deg);
}

header .menu.active span::after {
    transform: translateY(-7px) rotate(-45deg);
}

aside {
    width: 100vw;
    height: calc(100vh - 70px);
    position: fixed;
    top: 70px;
    z-index: 3;
    background-color: #f8f8f8;
    padding: 20px;
    transform: translateX(100vw);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

aside > ul > li {
    border-bottom: 1px solid #d2d2d2;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5px 0;
}

aside > ul > li > ul > li {
    padding-left: 12px;
}

aside > ul > li a {
    line-height: 40px;
    display: flex;
    flex: 1 0 0;
    font-size: 15px;
    margin-right: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

aside > ul li icon-font {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

aside > ul li.active icon-font {
    transform: rotate(180deg);
}

aside > ul > li ul {
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

aside.active {
    transform: translateX(0);
}

header ~ main {
    min-height: calc(100vh - 130px);
}

footer {
    background-color: #191B4E;
    padding: 20px 0;
    font-size: 14px;
    color: #fff;
    height: 60px;
}
.footer-whatsapp{
    position: fixed;
    right: 25px;
    bottom: 80px;
    background: var(--primary);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1;
}

/* 首页之外轮播 */
.banner .swiper-slide {
    padding-bottom: 43%;
}

.banner-adaptor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.banner-adaptor > img,
.banner-adaptor > video,
.banner-adaptor > iframe,
.banner-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 90%;
    height: 75%;
    max-width: 1440px;
}

.banner-content__main {
    flex: 1 0 0;
}

.banner-title {
    font-size: 36px;
    line-height: 1.6;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.banner-description {
    font-size: 24px;
    margin-top: 15px;
    line-height: 1.6;
    font-weight: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 5;
}

.banner-button {
    display: inline-block;
    white-space: nowrap;
    font-size: 24px;
    background-color: var(--primary);
    line-height: 50px;
    border-radius: 25px;
    color: #fff;
    padding: 0 25px;
    margin-top: 25px;
}

.banner-laptop {
    width: 500px;
    max-width: 35%;
    margin-left: 3vw;
}

.banner-laptop__image {
    display: block;
    width: 100%;
}

/* 首页 */
.home-banner .swiper-slide {
    padding-bottom: 43%;
}

.home-banner__adaptor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.home-banner__adaptor > img,
.home-banner__adaptor > video,
.home-banner__adaptor > iframe,
.home-banner__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-banner__content {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 90%;
    height: 75%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-banner__content-main {
    padding-top: 7vw;
    max-width: 1000px;
}

.home-banner__title {
    font-size: 36px;
    line-height: 1.6;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.home-banner__description {
    font-size: 24px;
    margin-top: 15px;
    line-height: 1.6;
    font-weight: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 5;
}

.home-banner__button {
    display: inline-block;
    white-space: nowrap;
    font-size: 24px;
    background-color: var(--primary);
    line-height: 50px;
    border-radius: 25px;
    color: #fff;
    padding: 0 25px;
    margin-top: 25px;
}

.home-provider {
    padding: 70px 0;
}

.home-banner__partner {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
}

.home-banner__partner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.home-banner__partner-logo {
    width: 200px;
    height: 110px;
    object-fit: contain;
}

.home-banner__partner-text {
    font-size: 32px;
    color: #FF6600;
    margin-top: 15px;
}

.home-provider__title {
    text-align: center;
    font-size: 28px;
    line-height: 1.6;
}

.home-provider__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px;
}

.home-provider__item {
    display: flex;
    width: 45%;
}

.home-provider__item:nth-child(n+3) {
    margin-top: 70px;
}

.home-provider__item-image {
    width: 50px;
    height: 50px;
    display: block;
    margin-right: 15px;
}

.home-provider__item-title {
    font-size: 19px;
}

.home-provider__item-text {
    margin-top: 17px;
    line-height: 1.8;
}

.home-description {
    padding: 70px 0;
    background-color: #f8f8f8;
}

.home-description__title {
    font-size: 28px;
    line-height: 1.6;
}

.home-description__content {
    margin-top: 45px;
    display: flex;
}

.home-description__main {
    width: 100%;
    max-width: 50%;
}

.home-description__panel > li + li {
    margin-top: 15px;
}

.home-description__panel-title {
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 30px;
    line-height: 30px;
}

.home-description__panel-title > p {
    font-weight: bold;
    flex: 1 0 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-right: 2em;
    font-size: 17px;
}

.home-description__panel-title > icon-font {
    transition: transform 0.3s ease;
}

.home-description__panel-content {
    overflow: hidden;
    transition: height 0.3s ease;
    height: 0;
    color: #666;
}

.home-description__image {
    margin-left: 3vw;
    max-width: 510px;
}

.home-description__image img {
    display: block;
    width: 100%;
}

.home-description__panel li.active .home-description__panel-title > icon-font {
    transform: rotate(180deg);
}

.home-customer {
    padding: 50px 0;
}

.home-customer__title {
    text-align: center;
    line-height: 1.6;
    font-size: 28px;
}

.home-customer__description {
    text-align: center;
    margin-top: 15px;
    color: #666;
}

.home-customer__locations {
    margin-top: 45px;
}

.home-customer__locations-image {
    display: block;
    width: 100%;
    margin: auto;
    max-width: 1000px;
}

.home-subscribe {
    padding: 50px 0;
    background-color: var(--primary);
    color: #fff;
}

.home-subscribe .inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.home-subscribe__text {
    font-size: 20px;
    line-height: 1.6;
}

.home-subscribe__button {
    padding: 0 35px;
    line-height: 45px;
    border-radius: 23px;
    background-color: #FF9933;
    font-size: 17px;
    font-weight: bold;
}

/* 关于我们 */

.about-provider {
    padding: 70px 0;
    line-height: 1.8;
}

.about-provider__title {
    font-size: 28px;
    line-height: 1.6;
}

.about-provider__content {
    margin-top: 40px;
    font-size: 18px;
}

.about-history {
    padding: 70px 0;
    background-color: var(--primary);
    color: #fff;
}

.about-history__title {
    text-align: center;
    font-size: 28px;
    line-height: 1.6;
}

.about-history__content {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.about-history__timeline {
    display: inline-flex;
    overflow-x: auto;
}

.about-history__timeline::-webkit-scrollbar {
    display: none;
}

.about-history__timeline-item {
    text-align: center;
    position: relative;
    padding: 45px 20px 0 20px;
    min-width: 170px;
}

.about-history__timeline-item::before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.about-history__timeline-item::after {
    content: "";
    width: 100%;
    height: 5px;
    position: absolute;
    top: 5px;
    left: 0;
    background-color: #fff;
}

.about-history__timeline-title {
    font-size: 22px;
}

.about-history__timeline-text {
    margin-top: 10px;
}

.about-focus {
    padding: 70px 0;
}

.about-focus__title {
    font-size: 28px;
    line-height: 1.6;
}

.about-focus__content {
    margin-top: 45px;
}

.about-focus__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-focus__item {
    width: 45%;
}

.about-focus__item:nth-child(n+3) {
    margin-top: 45px;
}

.about-focus__item-image img {
    display: block;
    width: 105px;
    height: 85px;
    object-fit: contain;
}

.about-focus__item-title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

.about-focus__item-text {
    margin-top: 15px;
    line-height: 1.8;
}

/* smartx */

.smartx-feature {
    padding: 70px 0;
}

.smartx-feature__title {
    text-align: center;
    font-size: 28px;
    line-height: 1.6;
}

.smartx-feature__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px;
}

.smartx-feature__item {
    display: flex;
    width: 45%;
}

.smartx-feature__item:nth-child(n+3) {
    margin-top: 70px;
}

.smartx-feature__item-image {
    width: 50px;
    height: 50px;
    display: block;
    margin-right: 15px;
}

.smartx-feature__item-title {
    font-size: 19px;
    line-height: 1.6;
}

.smartx-feature__item-text {
    margin-top: 17px;
    line-height: 1.6;
}

.smartx-price {
    padding: 70px 0;
    background-color: #f8f8f8;
}

.smartx-price__title {
    text-align: center;
    font-size: 28px;
    line-height: 1.6;
}

.smartx-price__content {
    margin-top: 45px;
}

.smartx-price__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.smartx-price__item + .smartx-price__item {
    margin-top: 60px;
}

.smartx-price__item-content {
    flex: 1 0 0;
    max-width: 1000px;
    margin-right: 5vw;
}

.smartx-price__item-title {
    font-size: 20px;
    line-height: 1.6;
}

.smartx-price__item-text {
    line-height: 1.6;
    margin-top: 15px;
    color: #666;
}

.smartx-price__item-amount {
    font-size: 20px;
}

.smartx-picture {
    padding: 70px 0;

}

.smartx-picture__title {
    text-align: center;
    font-size: 28px;
    line-height: 1.6;
}

.smartx-picture__content {
    margin-top: 45px;
}

.smartx-picture__list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.smartx-picture__item {
    /*text-align: center;*/
    width: 20%;
    padding: 0 12px;
    margin-top: 20px;
}

.smartx-picture__image-block {
    width: 100%;
    padding-bottom: 80%;
    position: relative;
}

.smartx-picture__item-image {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
}

.smartx-picture__item-image img {
    width: 100%;
    height: 100%;
    display: block;
    margin: auto;
    cursor: pointer;
    object-fit: contain;
}

.smartx-picture__item-text {
    margin-top: 10px;
    margin-bottom: 12px;
    font-weight: bold;
    line-height: 1.2;
    overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow:ellipsis;
}


.smartx-service {
    padding: 70px 0;
    background-color: #f8f8f8;
}

.smartx-service__title {
    text-align: center;
    font-size: 28px;
    line-height: 1.6;
}

.smartx-service__content {
    margin-top: 45px;
}

.smartx-service__list {
    display: flex;
    justify-content: space-around;
}

.smartx-service__item {
    text-align: center;
    width: 20%;
}

.smartx-service__item-image img {
    width: 120px;
    display: block;
    margin: auto;
}

.smartx-service__item-text {
    margin-top: 10px;
}

/* offer */
.offer-main {
    padding: 70px 0;
}

.offer-main__title {
    font-size: 28px;
    line-height: 1.6;
    text-align: center;
}

.offer-main__content {
    margin-top: 70px;
}

.offer-main__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer-main__item + .offer-main__item {
    margin-top: 60px;
}

.offer-main__item:nth-child(even) {
    flex-direction: row-reverse;
}

.offer-main__item-container {
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.offer-main__item:nth-child(odd) .offer-main__item-container {
    margin-right: 5vw;
}

.offer-main__item:nth-child(even) .offer-main__item-container {
    margin-left: 5vw;
}

.offer-main__item-icon {
    margin-right: 15px
}

.offer-main__item-icon img {
    width: 75px;
    height: 75px;
    display: block;
}

.offer-main__item-title {
    font-size: 19px;
    line-height: 1.6;
}

.offer-main__item-text {
    margin-top: 15px;
    line-height: 1.6;

}

.offer-main__item-image {
    flex: 1;
    max-width: 510px;
}

.offer-main__item-image img {
    display: block;
    max-width: 100%;
    margin: auto;
}

/*  investor  */

.investor-opportunity {
    padding: 70px 0;
}

.investor-opportunity__title {
    font-size: 28px;
    text-align: center;
}

.investor-opportunity__content {
    margin-top: 45px;
    line-height: 1.6;
}

.investor-form {
    padding: 70px 0;
    background-color: #f8f8f8;
}

.investor-form__title {
    font-size: 28px;
    line-height: 1.6;
    text-align: center;
}

.investor-form__content {
    margin-top: 45px;
}

.investor-form__content form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.investor-form__row + .investor-form__row {
    margin-top: 20px;
}

.investor-form__label {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
}

.investor-form__label + .investor-form__label {
    margin-left: 35px;
}

.investor-form__label input[type=radio] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.investor-form__field {
    width: 450px;
    height: 46px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 18px;
    outline-color: var(--primary);
    padding: 0 15px;
    -webkit-appearance: none;
    appearance: none;
}

.investor-form__field + .investor-form__field {
    margin-left: 35px;
}

.investor-form__row .captcha-img {
    margin-left: -107px;
    position: absolute;
    margin-top: 2px;
    height: 42px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.investor-form__button {
    background-color: var(--primary);
    color: #fff;
    line-height: 50px;
    border-radius: 25px;
    padding: 0 30px;
    outline: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    width: 460px;
}

/* client */
.client-map {
    padding: 70px 0;
}

.client-map__title {
    font-size: 28px;
    text-align: center;
}

.client-map__content {
    margin-top: 45px;
}

.client-map__text {
    line-height: 1.8;
    font-size: 17px;
}

.client-map__container {
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.client-map__adaptor {
    position: relative;
    padding-bottom: 45%;
}

.client-map__map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.client-map__map > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-evaluate {
    padding: 70px 0;
}

.client-evaluate__title {
    font-size: 28px;
    line-height: 1.6;
    text-align: center;
}

.client-evaluate__content {
    margin-top: 45px;
}

.client-evaluate__item {
    position: relative;
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.12);
    padding: 30px;
    border-radius: 5px;
    overflow-x: hidden;
}

.client-evaluate__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-image: linear-gradient(to bottom, var(--primary), #13c6bd);
}

.client-evaluate__item + .client-evaluate__item {
    margin-top: 35px;
}

.client-evaluate__item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

}

.client-evaluate__item-header img {
    max-height: 45px;
}

.client-evaluate__item-header icon-font {
    font-size: 45px;
    color: var(--primary);
}

.client-evaluate__item-content {
    line-height: 1.8;
    margin-top: 25px;
    color: #666;
}

.client-evaluate__item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.client-evaluate__item-user {
    display: flex;
    align-items: center;
}

.client-evaluate__item-user > img,
.client-evaluate__item-user > icon-font {
    font-size: 50px;
    width: 50px;
    height: 50px;
    color: #999;
    margin-right: 10px;
    object-fit: cover;
}

.client-evaluate__item-name {
    color: #666;
    font-size: 18px;
}

.client-evaluate__item-position {
    color: var(--primary);
    margin-top: 5px;
    font-size: 14px;
}

.client-evaluate__item-button {
    padding: 0 25px;
    color: #fff;
    background-color: var(--primary);
    line-height: 50px;
    border-radius: 5px;
}

/* contact */
.contact-map {
    padding: 70px 0;
}

.contact-map__title {
    font-size: 28px;
    text-align: center;
}

.contact-map__content {
    margin-top: 45px;
}

.contact-map__text {
    line-height: 1.8;
    font-size: 17px;
}

.contact-map__container {
    margin: 60px auto;
    /*max-width: 1200px;*/

}

.contact-map__adaptor {
    position: relative;
    padding-bottom: 45%;
}

.contact-map__map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.contact-map__map > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-evaluate {
    padding: 70px 0;
}

.contact-evaluate__title {
    font-size: 28px;
    line-height: 1.6;
    text-align: center;
}

.contact-evaluate__content {
    margin-top: 45px;
}

.contact-evaluate__item {
    position: relative;
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.12);
    padding: 30px;
    border-radius: 5px;
    overflow-x: hidden;
}

.contact-evaluate__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-image: linear-gradient(to bottom, var(--primary), #13c6bd);
}

.contact-evaluate__item + .contact-evaluate__item {
    margin-top: 35px;
}

.contact-evaluate__item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

}

.contact-evaluate__item-header img {
    max-height: 45px;
}

.contact-evaluate__item-header icon-font {
    font-size: 45px;
    color: var(--primary);
}

.contact-evaluate__item-content {
    line-height: 1.8;
    margin-top: 25px;
    color: #666;
}

.contact-evaluate__item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.contact-evaluate__item-user {
    display: flex;
    align-items: center;
}

.contact-evaluate__item-user > img,
.contact-evaluate__item-user > icon-font {
    font-size: 50px;
    width: 50px;
    height: 50px;
    color: #999;
    margin-right: 10px;
    object-fit: cover;
}

.contact-evaluate__item-name {
    color: #666;
    font-size: 18px;
}

.contact-evaluate__item-position {
    color: var(--primary);
    margin-top: 5px;
    font-size: 14px;
}

.contact-evaluate__item-button {
    padding: 0 25px;
    color: #fff;
    background-color: var(--primary);
    line-height: 50px;
    border-radius: 5px;
}

/* dialog */

.dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 95%;
    max-width: 300px;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: showDialog 0.5s ease;
}

.dialog .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    background: var(--primary);
    padding: 12px 15px;
}

.dialog .title p {
    max-width: calc(100% - 60px);
    color: #fff;
    /* .text-ellipsis(); */
}

.dialog .title svg {
    color: #fff;
    cursor: pointer;
}

.dialog .content {
    padding: 20px 15px;
    color: #666;
    background: #fff;

}

.dialog .icon {
    width: 1em;
    height: 1em;
    fill: currentColor;
    overflow: hidden;
    vertical-align: -0.15em;
}

.dialog + .mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    animation: showMask 0.5s ease;
}

@keyframes showDialog {
    from {
        transform: translate(-50%, -50%) scale(0)
    }
    to {
        transform: translate(-50%, -50%) scale(1)
    }
}

@keyframes showMask {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

/* loading */

.loading {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.loading img {
    width: 40px;
    animation-name: example;
    animation-iteration-count: infinite;
    animation-duration: 3s;
}

@keyframes example {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.6);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


.anchor {
    display: block;
    height: 50px; /*和顶部fix的高度一致*/
    margin-top: -50px; /*和顶部fix的高度一致*/
    visibility: hidden;
}

/* img */
.img-show {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 99999;
    background: rgba(0,0,0,0.8);
    overflow: auto;
    display: -webkit-box;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    display: -moz-box;
    -moz-box-align: center;
    -moz-box-pack: center;
    -webkit-animation: img-show 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: img-show 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.img-show .close{
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 9999999;
    background: #999999;
    color: #fff;
    font-size: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.6;
    cursor: pointer;
}
.title-block{
    position: absolute;
    top: 26px;
    z-index: 999999;
    width:100%;
    height: 36px;

    display: flex;
    justify-content: center;
    align-items: center;

}
.title-block .title{
    border-radius: 8px;
    opacity: 0.8;
    background: #666666;
    color: #ffffff;
    font-size: 16px;
    padding: 8px 10px;
}
.img-show img {
    display: block;
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
    margin:auto;
}
.big-picture__slide{
/*    max-width: 98%;
    max-height: 100vh;*/
}


@keyframes img-show {
    0% {
        opacity: 0;
    }


    to {
        opacity: 1;

    }
}

.swiper-container{
    --swiper-theme-color: var(--primary);/* 设置Swiper风格 */
    --swiper-navigation-color:var(--primary);/* 单独设置按钮颜色 */
    --swiper-navigation-size: 30px;/* 设置按钮大小 */
}