@charset "UTF-8";
@import url("../font/iconfont.css");

/* clear */

body {
    font-family: MicroSoft Yahei, Arial;
    width: 100vw;
    overflow-x: hidden;
}

body ul,
body li,
body h1,
body h2,
body h3,
body h4,
body h5,
body p {
    padding: 0;
    margin: 0;
}

body li {
    list-style: none;
}

body a {
    text-decoration: none;
}

body a:hover {
    text-decoration: none;
    cursor: pointer;
}

.arial {
    font-family: Arial !important;
    word-wrap: break-word;
    word-break: break-all;
}




@media (min-width: 1400px) {
    .container {
        max-width: 1140px;
    }

    .index-container {
        max-width: 1320px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1200px;
    }

    .index-container {
        max-width: 1400px;
    }
}

@media (min-width: 1800px) {
    .container {
        max-width: 1200px;
    }

    .index-container {
        max-width: 1400px;
    }
}


/****************************************************************************
 * 全局样式
 */

body::-webkit-scrollbar {
    width: 10px;

    /* 设置滚动条的宽度 */
}

::-webkit-scrollbar {
    width: 3px;

    /* 设置滚动条的宽度 */
}

::-webkit-scrollbar-vertical {
    height: 3px;
}

/* 自定义滚动条轨道 */

::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* 设置轨道的背景颜色 */
}

/* 自定义滚动条的滑块（thumb） */

::-webkit-scrollbar-thumb {
    background: #00a040;
    /* 设置滑块的背景颜色 */
}

/* 当滑块悬停或活动时，可以添加更多样式 */

::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* 设置滑块在悬停状态下的背景颜色 */
}

select {
    outline: none;
    background-color: #ffffff00;
    border: none;
}

.text-centen {
    text-align: center;
}

.index-model-m-t {
    margin-top: 60px;
}

.index-model-m-b {
    margin-bottom: 60px;
}

.model-m-t {
    margin-top: 50px;
}

.model-m-b {
    margin-bottom: 50px;
}

.model-p-t {
    padding-top: 50px;
}

.model-p-b {
    padding-bottom: 50px;
}

.model-p-t-b {
    padding: 60px 0;
}



.model-details {
    font-size: 16px;
    color: #000;
    line-height: 22px;
}



.model-details img {
    max-width: 100%;
}
.model-details video {
    max-width: 100%;
}

.model-details a {
    color: #000;
    font-size: 16px;
}

.model-details a:hover {
    color: #2A64AE;
}

::-webkit-input-placeholder {
    color: #a3a3a3;
    font-size: 16px;
    line-height: 35px;
}

:-ms-input-placeholder {
    color: #a3a3a3;
    font-size: 16px;
    line-height: 35px;
}

::placeholder {
    color: #a3a3a3;
    font-size: 16px;
    line-height: 35px;
}

input {
    outline: none;
    border: none;
    font-size: 16px;
    background: #f5f5f5;
}

textarea {
    outline: none;
    border: none;
    background: #f5f5f5;
    font-size: 16px;
}

.overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 10000;
}

.overlay .dialog.active {
    transform: translateY(0);
}

.overlay .dialog {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    border-radius: 2px;
    width: 70%;
    box-sizing: border-box;
    padding: 15px;
    transform: translateY(-20%);
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.overlay .dialog.active {
    transform: translateY(0);
}

.overlay .dialog .iconfont {
    position: absolute;
    right: 0;
    top: -50px;
    height: 40px;
    color: #fff;
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.overlay .dialog .dialog-video {
    display: block;
    width: 100%;
}

.img-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.img-overlay .img-dialog {
    /*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);*/
    position: relative;
    border-radius: 2px;
    box-sizing: border-box;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.img-overlay .iconfont {
    position: absolute;
    right: 20px;
    top: 20px;
    height: 40px;
    color: #fff;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.img-overlay .img-dialog .dialog-img {
    display: block;
    max-width: 75vw;
    max-height: 75vh;
}

.global-pagination {
    padding: 30px;
    display: flex;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
}

.global-pagination a {
    border: 1px solid #E5E5E5;
    font-size: 16px;
    color: #60665f;
    margin: 0 8px;
}

.global-pagination .div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 200px);
}

.global-pagination a {
    border-radius: 3px;
    text-align: center;
    width: 35px;
    line-height: 32px;
    height: 35px;
}

.global-pagination a:hover {
    transition: all 0.5s ease 0.1s;
    color: #fff;
    background-color: #2A64AE;
}



.global-pagination .btn {
    padding: 0;
    margin: 0 8px;
    width: 70px;
    height: 35px;
}

.global-pagination .btn i {
    color: #60665f;
    display: block;
    font-size: 20px;
    margin: 0 auto;
}

.global-pagination .btn:hover i {
    color: #fff;
    transition: all 0.5s ease 0.1s;
}

.global-pagination .active {
    color: #fff;
    background-color: #2A64AE;
}

.global-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0 40px 0 60px;
    z-index: 1000;
    height: 85px;
    background-color: #ffffff1a;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}


/* .global-nav::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
} */

.global-nav .container-fluid {
    height: 100%;
    padding: 0;
}

.global-nav .container-fluid .navbar-brand img {
    width: 200px;
    height: auto;
}

.global-nav .container-fluid .navbar-box {
    display: flex;
    height: 100%;
}

.global-nav .container-fluid .navbar-box .navbar-toggler {
    align-self: center;
    margin: 0;
    padding: 9px 0;
    cursor: pointer;
    z-index: 9999;
}

.global-nav .container-fluid .navbar-box .navbar-toggler .navbar-toggler-icon {
    display: block;
    height: 3px;
    border-radius: 1px;
    width: 28px;
    background-color: #fff !important;
}

.global-nav .container-fluid .navbar-box .navbar-toggler .navbar-toggler-icon:nth-child(1) {
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.global-nav .container-fluid .navbar-box .navbar-toggler .navbar-toggler-icon:nth-child(2) {
    display: none;
}

.global-nav .container-fluid .navbar-box .navbar-toggler .navbar-toggler-icon:nth-child(3) {
    margin-top: -3px;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.global-nav .container-fluid .navbar-box .navbar-toggler.collapsed .navbar-toggler-icon {
    height: 2px;
    width: 28px;
    background-color: #fff;
}

.global-nav .container-fluid .navbar-box .navbar-toggler.collapsed .navbar-toggler-icon:nth-child(2) {
    display: block;
}

.global-nav .container-fluid .navbar-box .navbar-toggler.collapsed .navbar-toggler-icon:nth-child(2),
.global-nav .container-fluid .navbar-box .navbar-toggler.collapsed .navbar-toggler-icon:nth-child(3) {
    margin-top: 5px;
}

.global-nav .container-fluid .navbar-box .navbar-toggler.collapsed .navbar-toggler-icon:nth-child(1),
.global-nav .container-fluid .navbar-box .navbar-toggler.collapsed .navbar-toggler-icon:nth-child(3) {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}

.global-nav .container-fluid .navbar-box .navbar-collapse {
    align-items: unset;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li {
    margin-left: 50px;
    position: relative;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li:first-child {
    margin-left: 0;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .iconfont {
    color: #fff;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .iconfont:hover {
    color: #2A64AE;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a:hover {
    color: #2A64AE;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a.active {
    color: #2A64AE;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a.active::before {
    width: 100%;
    background-color: #2A64AE;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #fff;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a:hover::before {
    width: 100%;
    background-color: #2A64AE;
}



.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .icon-xiangyou1 {
    cursor: pointer;
    padding: 0 10px;
    transition-duration: 0.1s;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .icon-xiangyou1::before {
    font-size: 16px;
    color: #fff;
    line-height: 1;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .icon-xiangyou1:hover::before {
    color: #2A64AE;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list {
    height: 0;
    overflow: hidden;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 0 20px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .hide-item {
    font-size: 14px;
    white-space: nowrap;
    padding-bottom: 10px;
    color: #fff;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .hide-item:hover {
    color: #2A64AE !important;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .hide-item:first-child {
    padding-top: 20px;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .hide-item:last-child {
    padding-bottom: 20px;
}

.global-nav .container-fluid .navbar-box .contact-phone {
    margin-left: 60px;
    color: #363636;
    font-size: 20px;
    font-style: italic;
    display: flex;
    position: relative;
    align-items: center;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.global-nav .container-fluid .navbar-box .contact-phone .global-r-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-nav .container-fluid .navbar-box .contact-phone .language-btn {
    margin-left: 20px;
}

.global-nav.details-top .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a::before {
    background-color: #2A64AE;
}

.global-nav .container-fluid .navbar-box .contact-phone .global-r-icon i {
    font-size: 28px;
    color: #FFFFFF;
    cursor: pointer;
}

.global-nav.scroll-top .container-fluid .navbar-box .contact-phone .global-r-icon i {
    color: #333;
}

.global-nav .container-fluid .navbar-box .contact-phone .global-r-icon:hover i {
    color: #2A64AE;
}

.contact-phone-num {
    padding: 10px 20px;
    border-radius: 40px;
    background-color: #EA5504;
    margin-left: 30px;
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.contact-phone-num i {
    font-size: 22px;
    margin-right: 10px;
    color: #FFFFFF;
}

.language-btn {
    display: flex;
    align-items: center;
}

.language {
    position: absolute;
    top: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    left: 0;
    width: 100%;
    display: none;
}

.language li {
    text-align: center;
    padding: 5px 0;
}

.language li a {
    font-size: 16px;
    color: #fff;
    transition: all.2s linear 0s;
}

.language li a:hover {
    color: #2A64AE;
}

.global-nav.scroll-top {
    box-shadow: 0 3px 10px #ccc;
    background: #fff;
}

.global-nav.details-top {
    box-shadow: 0 3px 10px #ccc;
    background: #fff;
}

.global-nav .img-native {
    display: block;
}

.global-nav .img-scroll {
    display: none;
}

.global-nav.scroll-top .container-fluid .navbar-brand .img-native {
    display: none;
}

.global-nav.scroll-top .container-fluid .navbar-brand .img-scroll {
    display: block;
}

.global-nav.scroll-top .container-fluid .navbar-box .navbar-toggler.collapsed .navbar-toggler-icon {
    background-color: #333 !important;
}

.global-nav.scroll-top .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a {
    color: #333;
}

.global-nav.scroll-top .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a:hover {
    color: #2A64AE;
}

.global-nav.scroll-top .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a.active {
    color: #2A64AE;
}

.global-nav.scroll-top .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a::before {
    background-color: #2A64AE;
}


/*
.global-nav.scroll-top .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list {
  background-color: #fff;
} */

.global-nav.scroll-top .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .hide-item {
    color: #ffffff;
}

.global-nav.details-top .container-fluid .navbar-brand .img-native {
    display: none;
}

.global-nav.details-top .container-fluid .navbar-box .navbar-toggler.collapsed .navbar-toggler-icon {
    background-color: #333 !important;
}

/* .global-nav.details-top .container-fluid .navbar-brand .img-scroll {
    display: block;
} */

.global-nav.details-top .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a {
    color: #333;
}

.global-nav.details-top .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a.active {
    color: #2A64AE;
}

.global-footer {
    overflow: hidden;
    background-image: url(../images/footter-bj.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.global-footer .footer-body {
    padding: 80px 0 0 0;
    display: flex;

    justify-content: space-between;
    position: relative;
}

/* .global-footer {
    background-color: #0c0c0f;
} */

.global-footer .footer-line {
    width: 100%;
    height: 1px;
    background-color: #252527;
}

.global-footer .footer-copyright {
    text-align: center;
    color: #999999;
    font-size: 16px;
    margin-top: 60px;
    padding-bottom: 30px;
}

.global-footer .footer-copyright a {
    color: #999999;
    margin-left: 20px;
}

.global-footer .footer-copyright a:hover {
    color: #4c60c1;
}

.global-footer .footer-inside {
    padding-top: 70px;
    padding-bottom: 70px;
    display: flex;
    justify-content: space-between;
}

.global-footer .footer-inside .inside-navbar {
    width: 67%;
    display: flex;
    justify-content: space-between;
    margin: 0 -10px;
}

.global-footer .footer-inside .inside-navbar .navbar-col {
    padding: 0 10px;
}

.global-footer .footer-inside .inside-navbar .navbar-col .col-item {
    display: block;
    color: #999999;
    font-size: 18px;
    margin-top: 20px;
}

.global-footer .footer-inside .inside-navbar .navbar-col .col-item.title {
    color: #ffffff;
    font-weight: bold;
    margin-top: 0;
}

.global-footer .footer-inside .inside-navbar .navbar-col .col-item:hover {
    color: #4c60c1;
}

.global-footer .footer-inside .inside-contact {
    padding-left: 30px;
    text-align: right;
}

.global-footer .footer-inside .inside-contact .title {
    color: #ffffff;
    font-size: 18px;
}

.global-footer .footer-inside .inside-contact .phone {
    font-size: 30px;
    line-height: 1;
    margin-top: 15px;
    font-weight: bold;
    color: #ffffff;
    font-family: Arial;
}

.global-footer .footer-inside .inside-contact .codes {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.global-footer .footer-inside .inside-contact .codes .code {
    width: 123px;
    margin-left: 13px;
}

.body-main-box {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column;
    width: 65%;
}

.body-main-box>img {
    width: 48px;
    height: 48px;
}

.global-footer .footer-body .body-main {
    margin: 0 -10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.global-footer .footer-body .body-main .main-item {
    padding: 0 25px;
}

.global-footer .footer-body .body-main .main-item .link-title {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.global-footer .footer-body .body-main .main-item .item-link {
    display: block;
    font-size: 16px;
    margin-top: 15px;
    color: #fff;
    display: flex;
    align-items: center;
}

.global-footer .footer-body .body-main .main-item .item-link i {
    margin-right: 22px;
    font-size: 20px;
}

/* .global-footer .footer-body .body-main .main-item a:hover {
    color: #2A64AE;
} */

.global-footer .footer-body .body-main .main-code {
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.global-footer .footer-body .body-main .main-code .code-img {
    display: block;
    width: 100%;
}

.global-footer .footer-body .body-main .main-code .item-link {
    min-width: none;
}

.global-footer .footer-body .body-main .main-contact {
    width: 320px;
}

.global-footer .footer-body .body-main .main-contact .contact-item {
    color: #ffffff;
    font-size: 12px;
    padding-top: 15px;
    display: flex;
    align-items: center;
}

.global-footer .footer-body .body-main .main-contact .contact-item .iconfont {
    font-size: 16px;
    padding-right: 20px;
}

.global-footer .footer-copyright {
    border-top: 1px solid #ccc;
    padding: 25px 0;
}

.global-footer .footer-copyright .copy {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.global-footer .footer-copyright .copy a {
    color: #fff;
    font-size: 14px;
    margin-left: 0px;
}

.global-footer .footer-copyright .copy span {
    margin-right: 10px;
}

.global-footer .footer-copyright .copy .ICP {
    margin-right: 0;
}

/* .global-footer .footer-copyright .copy a:hover {
    color: #2A64AE;
} */

.body-info {
    width: 33%;
}

.footer-lianxi {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-lianxi p:last-child {
    margin-bottom: 0;
}

.footer-lianxi p {
    width: 100%;
    margin-bottom: 15px;
    font-size: 16px;
    color: #ffffff;
}

.footer-lianxi .footer-lianxi-item {
    width: 100%;
}

.footer-about {
    display: flex;
    align-items: center;
    margin-top: 30px;
    position: relative;
}

.footer-about-item {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff00;
    border: 1px solid #fff;
    margin-right: 25px;
    border-radius: 50%;
}

.footer-about i {
    font-size: 24px;
    color: #fff;

}

.footer-about-item:hover {
    cursor: pointer;
    background-color: #fff;
    transition: all .5s ease .1s;
}

.footer-about-item:hover i {
    color: #2A64AE;
    transition: all .5s ease .1s;
}

.footer-logo {
    width: 200px;
    height: auto;
}

.footer-code {
    position: absolute;
    bottom: 0;
    left: 190px;
    width: 120px;
    height: 120px;
    padding: 6px;
    border-radius: 5px;
    background-color: #fff;
    display: none;
}

.footer-code img {
    width: 100%;
    height: 100%;
}

.global-banner {
    margin-top: 80px;
    padding-top: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner {
    position: relative;
}

.banner img {
    width: 100%;
}

.banner .banner-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    position: absolute;
    top: 0;
    z-index: 100;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    animation: globalBannerTitle 1s ease forwards;
    text-align: center;
}

.index-banner .swiper-slide {
    max-height: 100vh;
}

.index-banner .swiper-slide .banner-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 0 20px;
}

.index-banner .swiper-slide .banner-word .title {
    font-size: 48px;
    font-weight: 400;
    transform: translateY(-50%);
    opacity: 0;
    margin-bottom: 20px;
    transition: all 0.8s ease 0.5s;
}

.index-banner .swiper-slide.swiper-slide-active .banner-word .title {
    transform: translateY(0);
    opacity: 1;
}

.index-banner .swiper-pagination {
    bottom: 40px;
    text-align: left;
    transform: translateX(-50%);
    left: 50%;
}

.index-banner .swiper-pagination .swiper-pagination-bullet {
    background-color: #ffffff;
    border-radius: 50%;
    opacity: 1;
    margin: 0 5px;
    width: 6px;
    height: 6px;

}

.index-banner .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #EA5504;
    border-radius: 3px;

    height: 6px;
    transition: all 0.1s ease 0s;
    width: 40px;
}

.banner .banner-title .xian {
    width: 50px;
    height: 4px;
    margin: 0 auto;
    background-color: #fff;
    margin-top: 10px;
}

.banner-title-en {
    font-size: 18px;
    font-weight: 400;
}

.banner .banner-text {
    font-size: 18px;
    color: #ffffff;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 100;
    width: 100%;
    transform: translate(-50%, -50%);
    animation: globalBannerText 1.5s ease forwards;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.businessSystemDetails-banner .banner .banner-text {
    animation: globalServicesTitle 1s ease forwards;
}

.businessSystemDetails-banner .banner .banner-title {
    animation: globalServicesText 1.5s ease forwards;
}

@keyframes globalBannerTitle {
    0% {
        opacity: 0;
        top: 0;
    }

    100% {
        opacity: 1;
        top: 44%;
    }
}

@keyframes globalBannerText {
    0% {
        opacity: 0;
        top: 0;
    }

    20% {
        opacity: 0;
        top: 0;
    }

    100% {
        opacity: 1;
        top: 56%;
    }
}

@keyframes globalServicesTitle {
    0% {
        opacity: 0;
        top: 0;
    }

    100% {
        opacity: 1;
        top: 42%;
    }
}

@keyframes globalServicesText {
    0% {
        opacity: 0;
        top: 0;
    }

    20% {
        opacity: 0;
        top: 0;
    }

    100% {
        opacity: 1;
        top: 65%;
    }
}

.breadcrumbs {
    display: flex;
    align-items: center;
}

.breadcrumbs,
.breadcrumbs a {
    font-size: 14px;
    color: #fff;
}

.breadcrumbs a:hover {
    transition: all 0.5s ease 0.1s;
    color: #2A64AE;
}

.breadcrumbs-icon {
    width: 4px;
    height: 16px;
    margin-right: 16px;
    background-color: #fff;
}

.banner-breadcrumbs-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #00000080;
    padding: 15px 0;
}

.banner-breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-nav {
    display: flex;
    align-items: center;
}

.banner-nav-item {
    margin: 0 40px;
    font-size: 14px;
    color: #fff;
    padding-bottom: 15px;
    border-bottom: 2px solid #ffffff00;
}

.banner-nav-item:hover {
    border-bottom: 2px solid #ffffff;
    transition: all 0.5s ease 0.1s;
    color: #fff;
}

.banner-nav-item-active {
    border-bottom: 2px solid #ffffff;
    color: #fff;
}


/****************************************************************************
 * 首页
 */
.index-banner .swiper-slide {
    position: relative;
}

.index-banner .swiper-slide video {
    width: 100%;
    height: 100%;
}

.index-banner .swiper-slide.swiper-slide-active img {
    transform: scale(1.1);
}

.index-banner .swiper-slide img {
    display: block;
    transform: scale(1);
    transition: transform 5s ease-in-out;
    width: 100%;
}



.index-product {
    display: flex;

}

.index-product-item {
    width: 50%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.index-product-item img {
    width: 100%;
    height: auto;
}

.index-product-item:hover img {
    transform: scale(1.1);
    transition: all .5s ease .1s;
}

.index-product-item-c {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;

}

.index-product-item-c div {
    display: flex;
    align-items: center;
    font-size: 48px;
    color: #fff;
}

.index-product-item-c div p {
    line-height: 1;


}

.index-product-item-c div p:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 4px;
    border-radius: 4px;
    margin-left: 25px;
    margin-top: 5px;
    border: 1px solid #fff;
}

.index-product-item-c div p i {
    font-size: 18px;
    color: #fff;
}

.index-product-item-c div:hover p {
    transition: all .5s ease .1s;
    color: #2A64AE;
}

.index-product-item-c div:hover p:last-child {
    transition: all .5s ease .1s;
    border: 1px solid #2A64AE;
    background-color: #2A64AE;
    transform: translateX(8px);
}

.index-product-item-c img {
    height: 200px;
    width: auto;
}

.index-title {
    text-align: center;
    font-size: 42px;
    color: #383838;
    font-weight: 800;
}

.model-title {
    text-align: center;
    font-size: 44px;
    color: #383838;
}

.index-solution {
    background-color: #F4F4F5;
}

.index-solution-swiper-item {
    padding: 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.index-solution-swiper-item img {
    width: 66%;
    height: auto;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
    color: #EA5504;

}

.swiper-button-next,
.swiper-button-prev {
    padding: 34px 15px;
    border: 1px solid #EA5504;
    border-radius: 5px;
    background-color: #ffffff00;
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    color: #fff;
    transition: all .5s ease .1s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #EA5504;
    transition: all .5s ease .1s;
}

.index-case-list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 650px;
    margin: -5px;
}

.index-case-item {
    margin: 5px;
    position: relative;
    width: calc(100% / 3 - 10px);
    height: calc(50% - 10px);
    overflow: hidden;
}

.index-case-item img {
    width: 100%;
    height: 100%;
}

.index-case-item:hover img {
    transform: scale(1.1);
    transition: all .5s ease .1s;
}

.index-case-item:nth-child(3) {
    height: calc(100% - 10px);
}

.index-case-item-c {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background: linear-gradient(180deg, #ffffff00 0%, #ffffff00 65%, #2A64AE 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    color: #fff;
    padding: 30px;
}

.index-case-item-c p:first-child {
    padding: 0 15px;
    border-radius: 50px;
    background-color: #EA5504;
    font-size: 18px;
}

.index-case-item-c p:last-child {
    width: 100%;
    font-size: 24px;

}

.index-case-item:last-child img {
    margin-bottom: 20px;
    width: 60px;
    height: auto;
}

.index-case-item:last-child .index-case-item-c {
    background-color: #2A64AE;
    align-items: center;

    justify-content: center;
}

.index-case-item:last-child .index-case-item-c p {
    text-align: center;
}

.index-about-box {
    background-image: url(../images/bj1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.index-about-l {
    width: 50%;
}

.index-about .index-title {
    color: #fff;
    text-align: left;
}

.index-about-lable {
    margin-top: 15px;
    font-size: 24px;
    color: #fff;
}

.index-about-text {
    font-size: 16px;
    margin: 25px 0;
    line-height: 26px;
    color: #fff;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.index-about-type {
    display: flex;

}

.index-about-type-item {
    display: flex;
    margin-right: 10px;
    align-items: center;
    font-size: 18px;

    color: #EA5504;
    background-color: #fff;
    padding: 10px 30px;
    border-radius: 0 0 0 20px;
}

.index-about-type-item:last-child {
    border-radius: 0 20px 0 0;
}

.index-about-type-item i {
    font-size: 8px;
    color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 10px;
    background-color: #2A64AE;
}

.index-about-num {

    display: flex;
    flex-wrap: wrap;
}

.index-about-num-item {
    width: 45%;
    margin-top: 40px;
    color: #fff;
    font-size: 36px;
}

.index-about-num-item p:last-child {
    font-size: 18px;
}

.index-about-num-item span {
    line-height: 1;
    font-size: 60px;
    font-weight: 800;
}

.index-partner-box {
    background-image: url(../images/bj2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.index-partner-text {
    font-size: 36px;
    color: #EA5504;
    text-align: center;
}

.index-partners-item {
    position: relative;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-partners-item-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px 40px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-partners-item-img img {
    max-width: 100%;
    max-height: 100%;
}

.index-partners-item-bj {
    position: relative;
    opacity: 0;
    width: 100%;
    height: 100%;
}

.index-partners-item:hover .index-partners-item-bj {
    opacity: 1;
    transition: all .5s ease .1s;
}

.index-news-t {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.index-news-t .index-title {
    color: #2A64AE;
}

.index-news-type {
    display: flex;
    align-items: center;
}

.index-news-type-item {
    margin-left: 30px;
    font-size: 18px;
    color: #2A64AE;
    padding: 10px 24px;
    border-radius: 30px;
    background-color: #ffffff00;
    border: 1px solid #2A64AE;
}

.index-news-type-item-active {
    background-color: #2A64AE;
    color: #fff;

}

.index-news-type-item:hover {
    background-color: #2A64AE;
    color: #fff;
    transition: all .5s ease .1s;
}

.index-news-list {
    display: none;
}

.index-news-list-active {
    display: flex;
}

.index-news-item {
    display: flex;
    width: 23%;
    border: 1px solid #E5E5E5;
    border-left: none;
}



.index-news-item-l {
    width: 100%;
    padding: 45px 35px;
}

.index-news-item-time {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #999999;
}

.index-news-item-title {
    font-size: 24px;
    color: #383838;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 15px;
    margin-bottom: 20px;
}

.index-news-item-text {
    font-size: 16px;
    color: #666666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.index-news-item-time i {
    font-size: 16px;
    color: #999999;
    margin-right: 10px;
}

.index-news-item-icon {
    margin-top: 30px;
    font-size: 16px;
    color: #EA5504;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.index-news-item-r {
    display: none;
    overflow: hidden;
}

.index-news-item-r img {
    height: 100%;
    width: 100%;
}

.index-news-item-r:hover img {
    transform: scale(1.1);
    transition: all .5s ease .1s;
}

.index-news-item-active {
    border: none;
    width: 54%;

}

.index-news-item-active p {
    color: #fff;
    transition: all .5s ease .1s;
}

.index-news-item-active .index-news-item-time i {
    color: #fff;
    transition: all .5s ease .1s;
}

.index-news-item-active .index-news-item-l {
    width: 43%;
    background-color: #2A64AE;
    transition: all .5s ease .1s;

}

.index-news-item-active .index-news-item-r {
    display: block;
    width: 57%;

}

.index-news-item-active .index-news-item-icon {
    color: #fff;
    background-color: #EA5504;
    transition: all .5s ease .1s;
}

.index-service-box {
    background-image: url(../images/bj3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.index-service .index-title {
    text-align: left;
}

.index-service-list {
    display: flex;
    width: 66%;
    margin: 0 -10px;
    flex-wrap: wrap;
}

.index-service-item {
    border-radius: 10px;
    margin: 10px;
    padding: 22px 20px;
    width: calc(100% / 3 - 20px);
    font-size: 24px;
    color: #FFFFFF;
    background-color: #ffffff80;
}

.index-service-item img {
    width: 54px;
    height: 54px;
    margin-bottom: 12px;
}

.index-service-item-img-f {
    display: block;
    opacity: 1;

}

.index-service-item-img-t {
    display: none;
    opacity: 0;
}

.index-service-item-active {
    transition: all .5s ease .1s;
    background-color: #FFF;
    color: #2A64AE;
}

.index-service-item-active .index-service-item-img-f {
    display: none;
    opacity: 0;
    transition: all .5s ease .1s;
}

.index-service-item-active .index-service-item-img-t {
    display: block;
    opacity: 1;
    transition: all .5s ease .1s;
}

/****************************************************************************
  *  产品中心
  */

.product-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: 10px;

}

.product-nav-item {
    font-size: 16px;
    color: #383838;
    padding: 9px 0;
    width: calc(25% - 20px);
    margin: 0 10px;
    margin-bottom: 20px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #383838;
    background-color: #ffffff00;
    border: 1px solid #E5E5E5;
}

.product-nav-item-active {
    background-color: #2A64AE;
    color: #fff;
    border: 1px solid #2A64AE;
}

.product-nav-item:hover {
    background-color: #2A64AE;
    color: #fff;
    transition: all .5s ease .1s;
    border: 1px solid #2A64AE;
}

.product-nav-item img {
    height: 40px;
    width: 40px;
    width: auto;
    margin-right: 20px;
}

.product-nav-item-img-f {
    display: block;
    opacity: 1;
}

.product-nav-item-img-t {
    display: none;
    opacity: 0;
}

.product-nav-item-active .product-nav-item-img-f {
    display: none;
    opacity: 0;
}

.product-nav-item-active .product-nav-item-img-t {
    display: block;
    opacity: 1;
}

.product-nav-item:hover .product-nav-item-img-f {
    display: none;
    opacity: 0;
    transition: all .5s ease .1s;
}

.product-nav-item:hover .product-nav-item-img-t {
    display: block;
    opacity: 1;
    transition: all .5s ease .1s;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 20px;
}

.product-item {
    margin: 15px;
    width: calc(100% / 3 - 30px);
}

.product-item-t {
    background-image: url(../images/img20.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.product-item-t img {
    width: 100%;
    height: auto;
}

.product-item-t:hover img {
    transition: all .5s ease .1s;
    transform: scale(1.1);
}

.product-item-b {
    border: 1px solid #E8E8E8;
    border-top: none;
    padding: 30px;
    background-color: #fff;
    position: relative;
}

.product-item-title {
    font-size: 24px;
    color: #383838;
    display: flex;
    align-items: center;
}

.product-item-title p {
    white-space: nowrap;
    /* 保证文本在一行内显示 */
    overflow: hidden;
    /* 超出容器部分隐藏 */
    text-overflow: ellipsis;
    /* 使用省略号表示被截断的文本 */
}

.product-item:hover .product-item-title {
    color: #2A64AE;
    transition: all .5s ease .1s;
}

.product-item-title img {
    width: auto;
    height: 40px;
    margin-right: 25px;
}

.product-item-text {
    font-size: 16px;
    color: #666666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 25px;
}

.product-item-b::before {
    content: '';
    width: 0%;
    position: absolute;
    height: 2px;
    background-color: #EA5504;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.product-item:hover .product-item-b::before {
    width: 100%;
    transition: all .5s ease .1s;
}

.productDetails-box {
    background-color: #EFF4F8;
}

.productDetails-t {
    background-color: #fff;
    display: flex;
    padding: 50px;
    justify-content: space-between;
}

.productDetails-l {
    width: calc(50% - 50px);

}

.productDetails-r {
    width: 50%;
}

.productDetails-l-img img {
    width: 100%;
    height: auto;
}

.productDetails-swiper {
    padding: 0 25px;
}

.productDetails-swiper-item img {
    width: 100px;
    height: 100px;
}

.productDetails-swiper .swiper-button-next {
    right: 0 !important;
}

.productDetails-swiper .swiper-button-prev {
    left: 0 !important;
}

.productDetails-swiper .swiper-button-next,
.productDetails-swiper .swiper-button-prev {
    width: 25px;
    height: 108px;
    background-color: #fff;
    color: #2A64AE;
    margin-top: 0 !important;
    top: 0 !important;
    font-size: 16px;
    background-color: #EFF4F8;
    border: none;
    border-radius: 0;
}

.productDetails-swiper .swiper-button-next:after,
.productDetails-swiper .swiper-button-prev:after {
    font-size: 16px;
    color: #2A64AE;
}

.productDetails-swiper .swiper-slide {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.productDetails-swiper-item {
    border: 1px solid #ffffff;
}

.productDetails-swiper .swiper-slide:hover .productDetails-swiper-item {
    border: 1px solid #2A64AE;
    transition: all .5s ease .1s;

}

.productDetails-swiper-item-active {
    border: 1px solid #2A64AE;
}

.productDetails-title {

    padding-bottom: 35px;
    border-bottom: 2px solid #EFF4F8;
    position: relative;
}

.productDetails-title .model-title {
    text-align: left;
}

.productDetails-title::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 30%;
    height: 2px;
    z-index: 10;
    background-color: #2A64AE;
}

.productDetails-text {
    margin-top: 35px;
    font-size: 16px;
    line-height: 26px;
    color: #666666;
}

.productDetails-lx {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.productDetails-lx-item {
    width: calc(50% - 10px);
    color: #fff;
    font-size: 16px;
    background-color: #2A64AE;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    border-radius: 6px;
}

.productDetails-lx-item i {
    font-size: 18px;
    margin-right: 15px;
    color: #fff;
}

.productDetails-lx-item:last-child {
    background-color: #EA5504;
}

.productDetails-b {
    background-color: #fff;
    padding: 50px;
}

.productDetails-b-title {
    border-bottom: 1px solid #CCCCCC;
    display: flex;
    align-items: center;
}

.productDetails-icon {
    width: 10px;
    height: 44px;
    margin-right: 15px;
    background: linear-gradient(180deg, #2A64AE 0%, #ffffff00 100%);
}

/****************************************************************************
* 解决方案
*/
.solution-box {
    background-color: #fff;
}

.solution-nav {
    justify-content: center;
}

.solution-nav .product-nav-item {
    width: auto;
    padding: 10px 25px;
}

.solution-item {
    padding: 45px 0;
    display: block;
}

.solution-item-c {
    display: flex;
}

.solution-item-l {
    width: calc(50% - 50px);
    margin-right: 50px;
    overflow: hidden;
}

.solution-item-l img {
    width: 100%;
    height: auto;
}

.solution-item-l:hover img {
    transition: all .5s ease .1s;
    transform: scale(1.1);
}

.solution-item-r {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}

.solution-item-title {
    font-size: 36px;
    font-weight: 800;
    color: #383838;
    white-space: nowrap;
    /* 保证文本在一行内显示 */
    overflow: hidden;
    /* 超出容器部分隐藏 */
    text-overflow: ellipsis;
    /* 使用省略号表示被截断的文本 */
}

.solution-item-text {
    margin-top: 30px;
    font-size: 16px;
    color: #666666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.solution-item-icon {
    margin-top: 100px;
    font-size: 16px;
    color: #fff;
    border-radius: 50%;
    background-color: #EA5504;
    width: 40px;
    line-height: 1;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-item:nth-of-type(even) .solution-item-c {
    flex-direction: row-reverse;
}

.solution-item:nth-of-type(even) .solution-item-l {
    margin-right: 0;
    margin-left: 50px;
}

.solution-item:hover {
    background-color: #fafafa;
    transition: all .5s ease .1s;
}

.solution-item:hover .solution-item-title {
    color: #2A64AE;
    transition: all .5s ease .1s;
}

.solutionDetails-top div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.solutionDetails-top img {
    max-width: 100%;
    height: auto;
}

.solutionDetails-box {
    background-color: #EFF4F8;
}

.solutionDetails-item {
    padding: 50px;
    background-color: #FFF;
    margin-bottom: 20px;
}

.solutionDetails-xg-list {
    margin: 0;
    justify-content: space-between;
}

.solutionDetails-xg-list .product-item {
    width: calc(50% - 20px);
    margin: 0;
}

.solutionDetails-pz-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

.solutionDetails-pz-item {
    border: 1px solid #F9F9F9;
    width: calc(50% - 1px);
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.solutionDetails-pz-item p {
    width: 100%;
    background-color: #F9F9F9;
    font-size: 24px;
    color: #383838;
    padding: 20px 0;
    text-align: center;
}

.solutionDetails-pz-item img {
    margin-top: 30px;
    height: 100px;
    width: auto;
    max-width: 100%;
}

.solution-lx-box {
    background-image: url(../images/bj10.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.solution-lx {
    display: flex;
}

.solution-lx-r {
    width: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.solution-lx-l {
    width: 50%;
}

.solution-lx-l .model-title {
    text-align: left;
    color: #fff;
}

.solution-lx-text {
    font-size: 16px;
    color: #FFFFFF;
    margin-top: 45px;
}

.solution-lx-num {
    margin-top: 15px;
    font-weight: 800;
    font-size: 36px;
    color: #FFFFFF;
    padding-bottom: 15px;
    border-bottom: 1px solid #fff;
}

.solution-lx-num span:first-child {
    margin-right: 20px;
}

.solution-lx-r a {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
    padding: 10px 30px;
    border: 1px solid #fff;
}

.solution-lx-r i {
    font-size: 20px;
    margin-left: 10px;
    color: #FFFFFF;

}

.solution-lx-r a:hover i {
    color: #2A64AE;
    transform: translateX(5px);
    transition: all .5s ease .1s;
}

.solution-lx-r a:hover {
    color: #2A64AE;
    background-color: #fff;
    transition: all .5s ease .1s;
}

/****************************************************************************
* 应用案例
*/
.case-box {
    background-color: #EFF4F8;
}

.case-item-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    color: #383838;
    font-size: 18px;
    height: 54px;
    border-bottom: 1px solid #F9F9F9;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.case-item-title i {
    color: #EA5504;
    font-size: 14px;
}

.case-list .product-item:hover .case-item-title {
    color: #2A64AE;
    transition: all .5s ease .1s;

}

.case-list .product-item-b {
    padding: 25px 20px;
}

.case-item-lable {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.case-item-lable p {
    font-size: 16px;
    font-weight: 800;
    color: #2A64AE;
    margin-right: 20px;
    margin-left: 10px;

}

.case-item-lable p:last-child {
    margin-right: 0;
}

.case-item-lable img {
    max-width: 22px;
    max-height: 18px;
}

.caseDetails {
    padding: 50px;
    background-color: #fff;
}

.caseDetails .model-title {
    color: #383838;
    text-align: left;
}

.caseDetails-time {
    font-size: 18px;
    color: #999999;
    margin: 30px 0;
}

.caseDetails-c-img {
    overflow: hidden;
    margin-bottom: 20px;
}

.caseDetails-c-img img {
    width: 100%;
    height: 100%;
}

.caseDetails-c-img:hover img {
    transform: scale(1.1);
    transition: all .5s ease .1s;
}

.caseDetails-c {
    padding: 50px;
    padding-bottom: 0 !important;
    border-top: 1px solid #E5E5E5;
}

.caseDetails-swiper-item {
    overflow: hidden;
    opacity: 0.5;
}

.caseDetails-swiper-item img {
    width: 100%;
    height: 100%;
}

.caseDetails-swiper-item-active {
    opacity: 1;
    transition: all .5s ease .1s;
}

.caseDetails-swiper-item:hover {
    opacity: 1;
    transition: all .5s ease .1s;
}

.caseDetails-swiper-item:hover img {
    transform: scale(1.1);
    transition: all .5s ease .1s;
}

/****************************************************************************
* 服务支持
*/
.service-cy-text {
    color: #666666;
    font-size: 16px;
    line-height: 28px;
}

.service-cy-item {
    margin-top: 50px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.service-cy-item img {
    max-width: 60%;
}

.service-cy-name {
    width: 80%;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    color: #2A64AE;
}

.service-cy-xian {
    height: 2px;
    width: 120px;
    margin: 10px 0;
    background: linear-gradient(90deg, #00000000 0%, #00000000 20%, #00000022 50%, #00000000 80%, #00000000 100%);
}

.service-cy .swiper-button-next,
.service-cy .swiper-button-prev {
    width: 40px;
    padding: 0;
    height: 40px;
    border: 1px solid #EA5504;
    border-radius: 5px;
    background-color: #ffffff00;
    border-radius: 50%;
    top: auto !important;
    bottom: 0 !important;
}

.service-cy .swiper-button-next {
    right: 45%;
}

.service-cy .swiper-button-prev {
    left: 45%;
}

.service-swiper {
    padding-bottom: 80px;
}

.service-cy .swiper-button-next:after,
.service-cy .swiper-button-prev:after {
    font-size: 16px;
}

.service-cy .swiper-button-next:hover,
.service-cy .swiper-button-prev:hover {
    background-color: #EA5504;
}

.service-js-box {
    background-color: #EFF4F8;
}

.service-js-img {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-js-img div {
    position: relative;
    width: calc((100% - 60px) / 3);
    overflow: hidden;

}

.service-js-img img {
    height: auto;
    width: 100%;
}

.service-js-img div:hover img {
    transform: scale(1.1);
    transition: all .5s ease .1s;
}

.service-js-b {
    flex-wrap: wrap;
}

.service-js-b div:first-child {
    width: calc((100% - 60px) / 3 * 2 + 30px);
    margin-bottom: 30px;
}

.service-js-b div:nth-child(2) {
    margin-bottom: 30px;

}

.service-js-b div p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 30px;
    color: #fff;
    background-color: #2A64AE99;
    font-size: 16px;
}

.service-fw-box {
    background-image: url(../images/bj5.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;

}

.service-fw-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

.service-fw-item {
    width: calc(50% - 20px);
    margin-top: 40px;
}

.service-fw-item-img {
    overflow: hidden;
}

.service-fw-item-img img {
    width: 100%;
    height: auto;
}

.service-fw-item-img:hover img {
    transform: scale(1.1);
    transition: all .5s ease .1s;
}

.service-swiper-text {
    font-size: 20px;
    color: #383838;
    padding: 15px 0;
    text-align: center;
}

.service-fw-item p {
    color: #2A64AE;
    background-color: #fff;
}

.service-td-box {
    background-color: #EFF4F8;
}



.service-td-item {

    padding: 15px;
    background-color: #fff;
}

.service-td-item img {
    height: auto;
    width: 100%;
}

.service-td-item div {
    overflow: hidden;
}

.service-td-item div:hover img {
    transform: scale(1.1);
    transition: all .5s ease .1s;
}

.service-td-item p {
    padding-bottom: 0 !important;
}

.service-zl-item img {
    height: auto;
    width: 100%;
}

.service-zl-item div {
    overflow: hidden;
}

.service-zl-item div:hover img {
    transform: scale(1.1);
    transition: all .5s ease .1s;
}

.service-zl-item p {
    opacity: 0;
}

.service-zl-swiper .swiper-slide-active p {
    opacity: 1;
    transition: all .5s ease .1s;
}

#certify .swiper-slide {
    width: 50%;
}

.service-zl .swiper-button-next,
.service-zl .swiper-button-prev {
    width: 40px;
    padding: 0;
    height: 40px;
    border: 1px solid #EA5504;
    border-radius: 5px;
    background-color: #ffffff00;
    border-radius: 50%;
}

.service-zl .swiper-button-next:after,
.service-zl .swiper-button-prev:after {
    font-size: 16px;
}

.service-zl .swiper-button-next:hover,
.service-zl .swiper-button-prev:hover {
    background-color: #EA5504;
}

.service-zl-item p {
    font-weight: 800;
}

.service-zl-item div {
    opacity: 0.5;
}

.service-zl-swiper .swiper-slide-active div {
    opacity: 1;
    transition: all .5s ease .1s;
}

.download-list {
    margin-top: 30px;
}

.download-item {
    padding: 30px;
    border-radius: 4px;
    background-color: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.download-item-l {
    display: flex;
    align-items: center;
    width: 80%;
}

.download-item-l i {
    font-size: 60px;
    color: #2A64AE;
    margin-right: 15px;
}

.download-item-l div p {
    font-size: 14px;
    color: #999999;
}

.download-item-l div p:first-child {
    font-size: 24px;
    color: #383838;
    margin-bottom: 5px;
}

.download-item-r {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #383838;
}

.download-item-r i {
    font-size: 20px;
    color: #C4C4C4;
    margin-right: 15px;
}

.download-item:hover {
    background-color: #2A64AE;
    transition: all .5s ease .1s;
}

.download-item:hover i {
    color: #fff;
    transition: all .5s ease .1s;
}

.download-item:hover p {
    color: #fff !important;
    transition: all .5s ease .1s;
}

/****************************************************************************
* 新闻动态
*/
.news-top {
    background-image: url(../images/bj6.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    padding-top: 1px !important;

}

.news-nav {
    justify-content: center;
    padding-bottom: 0 !important;
}

.news-top-c {
    display: flex;
    margin-top: 30px;
}

.news-top-l {
    padding: 50px;
    width: 35%;
    background-color: #EFF4F8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-top-r {
    width: 65%;
    overflow: hidden;
}

.news-top-r img {
    width: 100%;
    height: auto;
}

.news-top-r:hover img {
    transform: scale(1.1);
    transition: all .5s ease .1s;
}

.news-top-time {
    font-size: 16px;
    color: #999999;
    line-height: 1.2;
}

.news-top-time p:first-child {
    font-size: 48px;
    color: #999999;
    font-weight: 800;

}

.news-top-title {
    font-size: 24px;
    font-weight: 800;
    color: #383838;
    margin-top: 45px;
}

.news-top-text {
    margin-top: 30px;
    font-size: 16px;
    color: #666666;
}

.news-top .solution-item-icon {
    margin-top: 0;
    font-size: 14px;
    width: 30px;
    height: 30px;

}

.news-list {
    display: flex;
    flex-wrap: wrap;

}

.news-item {
    width: calc((100% - 60px) / 3);
    margin-bottom: 30px;
    margin-right: 30px;
}

.news-item:nth-child(3n) {
    margin-right: 0;
}

.news-item-img {
    overflow: hidden;
}

.news-item-img img {
    width: 100%;
    height: auto;
}

.news-item-img:hover img {
    transform: scale(1.1);
    transition: all .5s ease .1s;
}



.news-item-b {
    padding: 40px;
    background-color: #EFF4F8;
}

.news-item:hover .news-item-b {
    background-color: #2A64AE;
    transition: all .5s ease .1s;
}

.news-item:hover .news-item-b i {
    color: #fff;
    transition: all .5s ease .1s;
}

.news-item:hover .news-item-b p {
    color: #fff;
    transition: all .5s ease .1s;
}

.news-item-title {
    font-size: 24px;
    height: 72px;
    color: #383838;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-item-time {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #999999;
    margin-top: 30px;
}

.news-item-time i {
    font-size: 16px;
    margin-right: 5px;
    color: #999999;
}

.newsDetails-time {
    font-size: 16px;
    color: #999999;
}

.newsDetails-item {
    background-color: #f9f9f9;
    padding: 20px 30px;
    font-size: 16px;
    color: #383838;
    margin: 5px 0;
}

.newsDetails-item a {
    color: #383838;
}

.newsDetails-item a:hover {
    color: #2A64AE;
    transition: all .5s ease .1s;
}

/****************************************************************************
* 关于我们
*/

.about-jianjie-box {
    background-image: url(../images/bj7.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
}

.about-jianjie-info {
    display: flex;
}

.about-jianjie-info-l {
    width: 50%;
}

.about-jianjie-info-r {
    width: 50%;
}

.about-jianjie-info-title {
    font-size: 36px;
    color: #383838;
}

.about-jianjie-info-b {
    display: flex;
    align-items: center;

}

.about-jianjie-info-link {
    width: 125px;
    height: 40px;
    border: 1px solid #E5E5E5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: 4px;
}

.about-jianjie-info-link img {
    max-height: 24px;
    max-width: 100px;
}

.about-jianjie-info-link img:first-child {
    display: block;
    opacity: 1;
}

.about-jianjie-info-link img:last-child {
    display: none;
    opacity: 0;
}

.about-jianjie-info-link:hover {
    background-color: #2A64AE;
    border: 1px solid #2A64AE;
    transition: all .5s ease .1s;
}

.about-jianjie-info-link:hover img:first-child {
    display: none;
    opacity: 0;
    transition: all .5s ease .1s;
}

.about-jianjie-info-link:hover img:last-child {
    display: block;
    opacity: 1;
    transition: all .5s ease .1s;
}

.about-jianjie-info-r p {
    font-size: 16px;
    line-height: 26px;
    color: #666666;
}

.about-jianjie-num {
    display: flex;
    justify-content: space-between;
    line-height: 1;
}

.about-jianjie-num-item p:first-child {
    font-size: 36px;
    color: #2A64AE;


}

.about-jianjie-num-item p:first-child span {
    font-size: 60px;
    font-weight: 800;

}

.about-jianjie-num-item p:last-child {
    font-size: 18px;
    color: #383838;
    margin-top: 10px;
}

.about-jianjie-video {
    position: relative;

    overflow: hidden;
}

.about-jianjie-video img {
    width: 100%;
    height: auto;
}

.about-jianjie-video:hover img {
    cursor: pointer;
    transform: scale(1.1);
    transition: all .5s ease .1s;
}

.about-jianjie-video .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    font-size: 30px;
    color: #2A64AE;
    width: 70px;
    height: 70px;
    background-color: #ffffffcc;
    border-radius: 50%;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-yuanjing-box {
    background-image: url(../images/bj8.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.about-yuanjing-c {
    padding-top: 130px;
}

.about-yuanjing-item {
    display: none;
}

.about-yuanjing-item-active {
    display: block;
}

.about-yuanjing-item .model-title {
    color: #fff;
    text-align: left;
}

.about-yuanjing-text {
    font-size: 16px;
    color: #fff;
    margin-top: 20px;
}

.about-yuanjing-btn {
    display: flex;
}

.about-yuanjing-btn-item {
    font-size: 14px;
    color: #EA5504;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    background-color: #fff;
    display: flex;
    align-items: center;
    line-height: 1;
    justify-content: center;
    margin-right: 20px;
    user-select: none;
}

.about-yuanjing-btn-item:hover {
    color: #fff;
    cursor: pointer;
    background-color: #EA5504;
    transition: all .5s ease .1s;
}

.about-yuanjing-b {
    margin-top: 100px;
    padding: 25px 0;
    display: flex;
    justify-content: space-around;
    background-color: #ffffffcc;
    user-select: none;
}

.about-yuanjing-b-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #FFFFFF;

}

.about-yuanjing-b-item img {
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
}

.about-yuanjing-b-item-active {
    color: #2A64AE;

}

.about-yuanjing-b-item:hover {
    color: #2A64AE;
    cursor: pointer;

}

.about-yuanjing-b-item .img-f {
    display: block;
    opacity: 1;
}

.about-yuanjing-b-item .img-t {
    display: none;
    opacity: 0;
}

.about-yuanjing-b-item-active .img-f {
    display: none;
    opacity: 0;
}

.about-yuanjing-b-item-active .img-t {
    display: block;
    opacity: 1;
}

.about-yuanjing-b-item:hover .img-f {
    display: none;
    opacity: 0;
}

.about-yuanjing-b-item:hover .img-t {
    display: block;
    opacity: 1;
}

.about-zizhi-box {
    background-image: url(../images/bj7.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
}

.about-zizhi-text {
    text-align: center;
    font-size: 24px;
    color: #383838;
}

.about-zizhi-list {
    display: flex;
    flex-wrap: wrap;

}

.about-zizhi-item {
    width: 25%;
    position: relative;
    user-select: none;
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
    cursor: pointer;
}

.about-zizhi-item-icon {
    height: 90px;
    width: auto;
}

.about-zizhi-item p {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    width: 70%;
    text-align: center;
    font-size: 16px;
    color: #383838;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about-zizhi-item:nth-child(-n+3) {
    width: calc((100% - 216px) / 3);
    margin-right: 108px;
    overflow: hidden;
    margin-bottom: 45px;
}

.about-zizhi-item-img {
    width: 100%;
    height: auto;
}


.about-zizhi-item:hover .about-zizhi-item-img {
    transform: scale(1.1);
    transition: all .5s ease .1s;
}

.about-zizhi-item:hover p {
    color: #2A64AE;
    transition: all .5s ease .1s;
}

.about-zizhi-item:nth-child(3) {
    margin-right: 0 !important;
}

.about-zizhi .about-zizhi-text {
    margin-top: 70px;
}

.about-honor-list {
    display: flex;
    flex-wrap: wrap;
}

.about-honor-item {
    border: 1px solid #2A64AE;
    width: calc((100% - 72px) / 4);
    margin-right: 24px;
    margin-bottom: 24px;
    padding: 3px;
    position: relative;
    cursor: pointer;
    user-select: none;
    border-radius: 4px;

}

.about-honor-item:nth-child(4n) {
    margin-right: 0;
}

.about-honor-item img {
    width: 100%;
    height: auto;
}

.about-honor-item p {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
    font-size: 16px;
    color: #383838;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about-honor-item:hover p {
    color: #2A64AE;
    transition: all .5s ease .1s;
}

.about-licheng-box {
    background-image: url(../images/bj9.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-licheng-swiper-pagination {
    top: auto !important;
    bottom: 0 !important;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background-color: #2A64AE !important;
}

.about-licheng-swiper-item {
    position: relative;
    background-color: #fff;
}

.about-licheng-swiper-item:hover {
    position: relative;
    background-color: #2A64AE;
    transition: all .5s ease .1s;
}

.about-licheng-swiper-item-c {
    background-image: url(../images/img19.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-licheng-swiper-item-c p:first-child {
    font-weight: 400 !important;
    text-align: left;
}

.about-licheng-swiper-item-c p:last-child {
    font-size: 16px;

    color: #383838;
    height: 94px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about-licheng-swiper-item:hover .about-licheng-swiper-item-c p {
    color: #fff;
    transition: all .5s ease .1s;
}

/****************************************************************************
* 联系我们
*/

.contact-nav .product-nav-item {
    margin-bottom: 0;
}

.join-item-box {
    margin-bottom: 20px;
}

.join-item {

    padding: 20px 30px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
}

.join-item-t {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.join-item-title {
    font-size: 24px;
    color: #383838;
}

.join-item-t i {
    font-size: 24px;
    color: #000000;
}

.join-item-b {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.join-item-b p:first-child {
    margin-right: 30px;
}

.join-item-b p {
    font-size: 16px;
    color: #999999;
}

.join-item:hover {
    background-color: #2A64AE;
    border: 1px solid #2A64AE;
    transition: all .5s ease .1s;
    cursor: pointer;
}

.join-item:hover div p {
    color: #fff;
    transition: all .5s ease .1s;
}

.join-item:hover div i {
    color: #fff;
    transition: all .5s ease .1s;
}

.join-item-box:last-child {
    margin-bottom: 0;
}

.join-more {
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-more div {
    padding: 15px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #383838;
    border: 1px solid #E5E5E5;
    border-radius: 35px;
}

.join-more div:hover {
    cursor: pointer;
    background-color: #2A64AE;
    color: #FFF;
    transition: all .5s ease .1s;
}

.join-more i {
    font-size: 16px;
    color: #000000;
    margin-left: 10px;
}

.join-more div:hover i {
    color: #FFF;
    transition: all .5s ease .1s;
}

.recruit {
    padding: 15px;
}

.recruit-t {
    display: flex;
    justify-content: space-between;
    padding-bottom: 25px;
    border-bottom: 2px solid #E5E5E5;
}

.recruit-title {
    margin-bottom: 10px;
    font-size: 28px;
    color: #383838;
}

.overlay .dialog .recruit .recruit-button {
    user-select: none;
    position: relative;
    top: 0;
    left: 0;
    font-size: 20px;
    color: #CCCCCC;
    line-height: 1;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E5E5E5;
    border-radius: 50%;
}

.overlay .dialog .recruit .recruit-button:hover {
    color: #EA5504;
    border: 1px solid #EA5504;
    transition: all .5s ease .1s;
}

.recruit-lable {
    font-size: 16px;
    color: #999999;
}

.recruit-lable span:first-child {
    margin-right: 20px;
}

.recruit-details {
    margin: 25px 0;
    max-height: 45vh;
    overflow-y: auto;
    padding-right: 15px;
}

.recruit-b {
    border-top: 2px solid #EA5504;
    padding-top: 14px;
    color: #2A64AE;
    font-size: 20px;

}

.contact-box {
    padding-bottom: 0 !important;
}

.contact {
    height: 560px;
    position: relative;
}

.contact-info {
    width: 50%;
    padding-top: 90px;
}

.contact-info .model-title {
    text-align: left;
    color: #2A64AE;

}

.contact-map {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 99;
    width: 50%;
    height: 100%;
}

.map-sign-huan {
    padding: 40px;
    border-radius: 50%;
    width: 104px;
    height: 104px;
    background-color: #2A64AEcc;
}

.map-sign-xin {
    width: 100%;
    height: 100%;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: #EA5504;
}

.contact-info div {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #666666;
    margin-top: 30px;
}

.contact-info img {
    width: 22px;
    height: 22px;
    margin-right: 14px;
}

.contact-form-box {
    background-color: #EFF4F8;
}

.contact-form-box>div {
    display: flex;
}

.contact-form-box .model-title {
    text-align: left;
    line-height: 1.2;
    color: #383838;
    font-weight: 400;
    width: 39%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 61%;
}

.contact-form-item {
    user-select: none;
    width: 80%;
    margin-bottom: 45px;
}

.contact-form input {
    margin-top: 10px;
    width: 100%;
    background-color: #ffffff00;
    border-bottom: 1px solid #383838;

}

.contact-form-lable {
    font-size: 16px;
    color: #383838;
}

.contact-form-lable span {
    color: #FF0000;
}

.contact-form-btn {
    padding: 12px 60px;
    display: block;
    background-color: #fff;
    font-size: 24px;
    color: #EA5504;
    border: none;
    border-radius: 5px;
}

.contact-form-btn:hover {
    transition: all .5s ease .1s;
    background-color: #EA5504;
    color: #fff;
}

@media (max-width: 1800px) {
    .global-nav .container-fluid .navbar-box .contact-phone {
        margin-left: 40px;
        font-size: 20px;
    }

    .index-product-item-c img {
        height: 180px;
    }

    .index-model-m-t {
        margin-top: 55px;
    }

    .index-model-m-b {
        margin-bottom: 55px;
    }

    /****************************************************************************
    * 解决方案
    */
    /****************************************************************************
    * 应用案例
    */
    /****************************************************************************
* 服务支持
*/

    /****************************************************************************
* 新闻动态
*/
}

@media (max-width: 1700px) {
    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li {
        margin-left: 40px;
    }

    .index-product-item-c img {
        height: 160px;
    }

    .index-model-m-t {
        margin-top: 50px;
    }

    .index-model-m-b {
        margin-bottom: 50px;
    }

    /****************************************************************************
    * 解决方案
    */
    /****************************************************************************
    * 应用案例
    */
    /****************************************************************************
* 服务支持
*/

    /****************************************************************************
* 新闻动态
*/
    /****************************************************************************
    * 关于我们
    */
}

@media (max-width: 1600px) {
    .index-banner .swiper-slide .banner-word .title {
        font-size: 44px;
    }

    .global-nav {
        height: 75px;
        padding: 0 40px 0 40px;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a {
        font-size: 16px;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li {
        margin-left: 35px;
    }

    .language li a {
        font-size: 14px;
    }

    .global-nav .container-fluid .navbar-box .contact-phone .icon-xiala {
        font-size: 18px;
        cursor: pointer;
    }

    .global-nav .container-fluid .navbar-box .contact-phone {
        margin-left: 30px;

    }

    .global-footer .footer-body .body-main .main-item {
        padding: 0 22px;
    }

    .contact-phone-num {
        padding: 8px 20px;
        margin-left: 20px;
        font-size: 18px;
    }

    .contact-phone-num i {
        font-size: 18px;
        line-height: 1.2;
        margin-right: 6px;
    }

    .global-nav .container-fluid .navbar-brand img {
        width: 180px;
    }

    .global-nav .container-fluid .navbar-box .contact-phone .icon-wangzhan {
        font-size: 24px;
    }

    .body-info {
        width: 30%;
    }

    .body-main-box {
        width: 68%;
    }

    .global-footer .footer-body .body-main .main-item .item-link {
        font-size: 16px;
    }

    .global-footer .footer-body .body-main .main-item .link-title {
        font-size: 16px;
    }

    .footer-logo {
        width: 180px;
    }

    .footer-about-item {
        margin-right: 20px;
    }

    .footer-lianxi p {
        width: 100%;
        margin-bottom: 8px;
    }

    .footer-about {
        margin-top: 25px;
    }

    .banner .banner-title {
        font-size: 44px;
    }

    .banner .banner-text {
        font-size: 16px;
    }



    .index-model-m-b {
        margin-bottom: 45px;
    }

    .model-m-t {
        margin-top: 45px;
    }

    .model-m-b {
        margin-bottom: 45px;
    }

    .model-p-t {
        padding-top: 45px;
    }

    .model-p-b {
        padding-bottom: 45px;
    }

    .model-p-t-b {
        padding: 55px 0;
    }

    /****************************************************************************
    * 首页
    */
    .index-title {
        font-size: 38px;
    }

    .index-product-item-c img {
        height: 150px;
    }

    .index-product-item-c div {
        font-size: 42px;
    }

    .index-product-item-c div p:last-child {
        padding: 8px 3px;
        margin-left: 20px;
        margin-top: 3px;
    }

    .model-title {
        font-size: 38px;
    }

    .index-case-item-c {
        padding: 25px;
    }

    .index-case-item-c p:first-child {
        font-size: 16px;
    }

    .index-case-item-c p:last-child {
        font-size: 22px;

    }

    .index-about-lable {
        margin-top: 12px;
        font-size: 22px;
    }

    .index-about-num-item span {
        font-size: 50px;
    }

    .index-about-num-item {
        margin-top: 35px;
        font-size: 28px;
    }

    .index-partner-text {
        font-size: 28px;
    }

    .index-news-type-item {
        margin-left: 25px;
        font-size: 16px;
        padding: 8px 20px;
    }

    .index-news-item-l {
        padding: 35px 25px;
    }

    .index-news-item-title {
        font-size: 22px;
        margin-top: 12px;
        margin-bottom: 15px;
    }

    .index-news-item-time {
        font-size: 14px;
    }

    .index-news-item-text {
        font-size: 14px;
    }

    /****************************************************************************
    * 解决方案
    */
    .solution-item {
        padding: 40px 0;
    }

    .solution-item-title {
        font-size: 30px;
    }

    .solution-item-icon {
        margin-top: 80px;
    }

    .solutionDetails-pz-item p {
        font-size: 22px;
    }

    .solutionDetails-item {
        padding: 45px;
    }

    .solution-lx-num {
        margin-top: 15px;
        font-weight: 800;
        font-size: 30px;

        padding-bottom: 15px;

    }

    .solution-lx-r a {
        font-size: 16px;
        padding: 6px 25px;
    }

    .solution-lx-text {
        margin-top: 40px;
    }

    /****************************************************************************
    * 应用案例
    */
    .case-item-lable img {
        max-width: 20px;
        max-height: 15px;
    }

    .case-item-lable p {
        font-size: 14px;
        margin-right: 15px;
        margin-left: 8px;
    }

    .caseDetails {
        padding: 45px;
    }

    .caseDetails-time {
        font-size: 16px;
        margin: 25px 0;
    }

    .caseDetails-c {
        padding: 45px;
    }

    /****************************************************************************
    * 服务支持
    */
    .service-cy-item {
        margin-top: 45px !important;
    }

    .service-swiper {
        padding-bottom: 70px;
    }

    .service-js-b div p {
        padding: 15px 20px;
        font-size: 16px;
    }

    .service-fw-item {
        width: calc(50% - 15px);
        margin-top: 30px;
    }

    .service-swiper-text {
        font-size: 18px;
        padding: 15px 0;
    }

    .download-list {
        margin-top: 25px;
    }

    .download-item {
        padding: 25px;
    }

    .download-item-l i {
        font-size: 50px;
    }

    .download-item-l div p:first-child {
        font-size: 22px;
    }

    /****************************************************************************
    * 新闻动态
    */
    .news-top-l {
        padding: 45px;
    }

    .news-top-time p:first-child {
        font-size: 44px;
    }

    .news-top-title {
        font-size: 20px;
        margin-top: 40px;
    }

    .news-top-text {
        margin-top: 25px;
        font-size: 14px;
    }

    .news-item-b {
        padding: 35px;
        background-color: #EFF4F8;
    }

    .news-item-title {
        font-size: 20px;
        height: 60px;
    }

    .news-item-time {
        font-size: 14px;
        margin-top: 25px;
    }

    /****************************************************************************
    * 关于我们
    */

    .about-jianjie-info-title {
        font-size: 30px;

    }

    .about-jianjie-num-item p:first-child {
        font-size: 30px;

    }

    .about-jianjie-num-item p:first-child span {
        font-size: 50px;
    }

    .about-jianjie-video .btn {
        font-size: 26px;
        width: 60px;
        height: 60px;
    }

    .about-yuanjing-c {
        padding-top: 110px;
    }

    .about-yuanjing-b {
        margin-top: 90px;
    }

    .about-zizhi .about-zizhi-text {
        margin-top: 60px;
    }

    .about-zizhi-item:nth-child(-n+3) {
        margin-bottom: 40px;
    }

    .about-licheng-swiper-item-c {
        padding: 35px;
    }

    /****************************************************************************
    * 联系我们
    */

    .join-item {
        padding: 18px 25px;
    }

    .join-item-title {
        font-size: 22px;
    }

    .join-item-t i {
        font-size: 22px;
    }

    .join-item-b {
        margin-top: 15px;
    }

    .recruit-details {
        max-height: 42vh;
    }

    .contact-info {
        padding-top: 75px;
    }

    .map-sign-huan {
        padding: 30px;
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 1400px) {
    .footer-code {

        left: 170px;

    }

    .global-nav {
        height: 70px;
        padding: 0 35px;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li {
        margin-left: 30px;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a {
        font-size: 14px;
    }

    .global-nav .container-fluid .navbar-box .contact-phone {
        margin-left: 20px;
        font-size: 16px;
    }

    .contact-phone-num {
        padding: 6px 15px;
        margin-left: 15px;
        font-size: 16px;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li {
        margin-left: 25px;
    }

    .contact-phone-num i {
        font-size: 16px;
    }

    .global-nav .container-fluid .navbar-brand img {
        width: 160px;
        height: auto;
    }

    .global-banner {
        margin-top: 72px;
    }

    .global-footer .footer-body .body-main .main-item {
        padding: 0px 16px;
    }

    .global-footer .footer-body .body-main .main-item .link-title {
        font-size: 14px;
    }

    .global-footer .footer-body .body-main .main-item .item-link {
        font-size: 14px;
        margin-top: 12px;
    }

    .footer-lianxi {
        margin-top: 20px;

    }

    .footer-lianxi p {
        font-size: 14px;
    }

    .footer-about {
        margin-top: 20px;
    }

    .footer-about-item {
        width: 36px;
        height: 36px;
        margin-right: 20px;
    }

    .footer-about-item i {
        font-size: 20px;
    }

    .banner .banner-title {
        font-size: 40px;
    }

    .banner-nav-item {
        margin: 30px;
    }

    .overlay .dialog {
        width: 70%;
    }

    .index-model-m-t {
        margin-top: 45px;
    }


    .model-m-t {
        margin-top: 40px;
    }

    .model-m-b {
        margin-bottom: 40px;
    }

    .model-p-t {
        padding-top: 40px;
    }

    .model-p-b {
        padding-bottom: 40px;
    }

    .model-p-t-b {
        padding: 50px 0;
    }

    /****************************************************************************
    * 首页
    */
    .index-title {
        font-size: 32px;
    }

    .index-product-item-c img {
        height: 120px;
    }

    .index-product-item-c div {
        font-size: 34px;
    }

    .index-product-item-c div p:last-child {
        margin-left: 15px;
    }

    .model-title {
        font-size: 32px;
    }

    .index-case-item-c {

        padding: 20px;
    }


    .index-case-item-c p:last-child {
        font-size: 20px;
    }

    .index-case-item:last-child img {
        margin-bottom: 15px;
        width: 55px;
    }

    .index-about-text {
        font-size: 14px;
        margin: 20px 0;
        line-height: 22px;
    }

    .index-about-lable {
        margin-top: 10px;
        font-size: 20px;
    }

    .index-about-type-item {
        font-size: 16px;
        padding: 8px 25px;
    }

    .index-about-num-item span {
        font-size: 45px;
    }

    .index-about-num-item {
        margin-top: 30px;
        font-size: 24px;
    }

    .index-partners-item-img {
        padding: 25px 35px;
    }

    .index-partner-text {
        font-size: 24px;
    }

    .index-news-type-item {
        margin-left: 20px;
        font-size: 14px;
        padding: 8px 20px;
    }

    .index-news-item-l {
        padding: 30px 20px;
    }

    .index-news-item-title {
        font-size: 20px;
        margin-top: 10px;
        margin-bottom: 12px;
    }

    .index-news-item-icon {
        margin-top: 25px;
        font-size: 14px;
        width: 25px;
        height: 25px;
    }

    .index-service-list {
        width: 66%;
        margin: 0 -8px;
    }

    .index-service-item img {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }

    .index-service-item {
        margin: 8px;
        padding: 18px;
        width: calc(100% / 3 - 16px);
        font-size: 20px;
    }

    /****************************************************************************
    * 产品中心
    */
    .product-list {
        margin-top: 15px;
    }

    .product-nav-item img {
        width: 36px;
        height: 36px;
        margin-right: 15px;
    }

    .product-item-b {
        padding: 25px;
    }

    .product-item-title {
        font-size: 20px;
    }

    .product-item-title img {
        height: 30px;
        margin-right: 15px;
    }

    .product-item-text {
        font-size: 14px;
        margin-top: 20px;
    }

    .productDetails-t {
        padding: 40px;
    }

    .productDetails-l {
        width: calc(50% - 40px);
    }


    .productDetails-title {
        padding-bottom: 30px;

    }

    .productDetails-text {
        margin-top: 30px;
        font-size: 16px;
        line-height: 26px;
    }

    .productDetails-icon {
        width: 10px;
        height: 40px;
        margin-right: 12px;
    }

    .productDetails-swiper-item img {
        width: 90px;
        height: 90px;
    }

    .productDetails-swiper .swiper-button-next,
    .productDetails-swiper .swiper-button-prev {
        width: 20px;
        height: 95px;
    }

    .productDetails-swiper {
        padding: 0 20px;
        margin-left: 40px;
    }

    .productDetails-b {
        padding: 40px;
    }

    /****************************************************************************
    * 解决方案
    */
    .solution-item {
        padding: 35px 0;
    }

    .solution-item-title {
        font-size: 28px;
    }

    .solution-item-text {
        margin-top: 25px;

    }

    .solution-item-icon {
        margin-top: 70px;
        width: 35px;
        height: 35px;
    }

    .solution-item-l {
        width: calc(50% - 40px);
        margin-right: 40px;
    }

    .solution-item:nth-of-type(even) .solution-item-l {
        margin-left: 40px;
    }

    .solutionDetails-item {
        padding: 40px;
    }

    .solutionDetails-pz-item p {
        font-size: 20px;
        padding: 15px 0;
    }

    .solutionDetails-pz-item img {
        margin-top: 25px;
        height: 95px;
    }

    .solution-lx-num {
        margin-top: 10px;
        font-size: 28px;
        padding-bottom: 10px;
    }

    .solution-lx-text {
        margin-top: 35px;
    }

    /****************************************************************************
    * 应用案例
    */
    .case-list .product-item-b {
        padding: 20px;
    }

    .case-item-title {
        padding-bottom: 10px;
        font-size: 16px;
        height: 48px;
    }

    .case-item-lable {
        margin-top: 15px;
    }

    .caseDetails {
        padding: 40px;
    }

    .caseDetails-c {
        padding: 40px;
    }

    /****************************************************************************
    * 服务支持
    */
    .service-cy-item {
        margin-top: 40px !important;
    }

    .service-js-b div p {
        padding: 12px 15px;
        font-size: 16px;
    }

    .service-swiper-text {
        font-size: 16px;
        padding: 12px 0;
    }

    .service-cy .swiper-button-prev {
        left: 44%;
    }

    .service-cy .swiper-button-next {
        right: 44%;
    }

    .service-js-img div {
        width: calc((100% - 40px) / 3);
        overflow: hidden;
    }

    .service-js-b div:first-child {
        width: calc((100% - 40px) / 3* 2 + 20px);
        margin-bottom: 20px;
    }

    .service-js-b div:nth-child(2) {
        margin-bottom: 20px;
    }

    .service-fw-item {
        width: calc(50% - 10px);
        margin-top: 20px;
    }

    .service-cy-name {
        font-size: 14px;
    }

    .download-list {
        margin-top: 20px;
    }

    .download-item {
        padding: 20px;
    }

    .download-item-l i {
        font-size: 45px;
    }

    .download-item-l div p:first-child {
        font-size: 20px;
    }

    /****************************************************************************
    * 新闻动态
    */
    .news-top-l {
        padding: 35px;
        width: 40%;
    }

    .news-top-r {
        width: 60%;
    }

    .news-top-time p:first-child {
        font-size: 40px;
    }

    .news-top-title {
        font-size: 20px;
        margin-top: 35px;
    }

    .news-top-text {
        margin-top: 25px;
        font-size: 14px;
    }

    .news-item-b {
        padding: 30px;
    }

    .news-item-title {
        font-size: 18px;
        height: 54px;
    }

    .news-item-time {
        font-size: 14px;
        margin-top: 20px;
    }

    /****************************************************************************
    * 关于我们
    */
    .about-jianjie-info-title {
        font-size: 26px;
    }

    .about-jianjie-info-r p {
        font-size: 14px;
        line-height: 22px;
    }

    .about-jianjie-num-item p:first-child {
        font-size: 26px;
    }

    .about-jianjie-num-item p:first-child span {
        font-size: 45px;
    }

    .about-jianjie-num-item p:last-child {
        font-size: 16px;
        margin-top: 8px;
    }

    .about-jianjie-video .btn {
        font-size: 24px;
        width: 55px;
        height: 55px;
    }

    .about-yuanjing-c {
        padding-top: 95px;
    }

    .about-yuanjing-b {
        margin-top: 75px;
    }

    .about-zizhi .about-zizhi-text {
        margin-top: 50px;
    }

    .about-zizhi-item:nth-child(-n+3) {
        margin-bottom: 35px;
    }

    .about-honor-item {
        width: calc((100% - 60px) / 4);
        margin-right: 20px;
        margin-bottom: 20px;
    }

    .about-honor-item-text {
        font-size: 14px !important;
    }

    .about-licheng-swiper-item-c {
        padding: 30px;
    }

    /****************************************************************************
    * 联系我们
    */

    .join-item {
        padding: 15px 20px;
    }

    .join-item-title {
        font-size: 20px;
    }

    .join-item-t i {
        font-size: 20px;
    }

    .join-item-b {
        margin-top: 10px;
    }

    .join-more div {
        padding: 12px 30px;
        font-size: 16px;
        border-radius: 30px;
    }

    .recruit {
        padding: 10px;
    }

    .recruit-t {
        padding-bottom: 20px;
    }

    .recruit-title {
        margin-bottom: 5px;
        font-size: 24px;
    }

    .overlay .dialog .recruit .recruit-button {
        font-size: 18px;
        width: 32px;
        height: 32px;

    }

    .recruit-details {
        margin: 20px 0;
        max-height: 40vh;
    }

    .recruit-b {
        padding-top: 10px;
        font-size: 16px;
    }

    .join-item-b p {
        font-size: 14px;
    }

    .recruit-lable {
        font-size: 14px;
    }

    .join-more div {
        font-size: 14px;
    }

    .contact-info div {
        font-size: 16px;
        margin-top: 25px;
    }

    .contact-info img {
        width: 22px;
        height: 22px;
        margin-right: 10px;
    }

    .contact-form-item {
        margin-bottom: 40px;
    }

    .contact-form-btn {
        padding: 10px 50px;
        font-size: 20px;
    }

    .contact-info {
        padding-top: 65px;
    }

    .map-sign-huan {
        padding: 25px;
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 1200px) {
    .index-banner .swiper-slide .banner-word .title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .index-banner .swiper-pagination {
        bottom: 30px;
    }


    ::-webkit-input-placeholder {
        font-size: 12px;
        line-height: 30px;
    }

    :-ms-input-placeholder {
        font-size: 12px;
        line-height: 30px;
    }

    ::placeholder {
        font-size: 12px;
        line-height: 30px;
    }

    .global-nav {
        padding: 0 35px;
        padding: 0 40px;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.6);
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav {
        margin-top: 100px;
        margin-bottom: 20px;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li {
        margin: 0;
        padding: 0 40px;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a {
        font-size: 16px;
        color: #fff;
        flex: 1;
        line-height: 40px;
        -webkit-transition: all 0s linear;
        -moz-transition: all 0s linear;
        -ms-transition: all 0s linear;
        -o-transition: all 0s linear;
        transition: all 0s linear;
    }

    .global-nav.scroll-top .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a {
        color: #fff;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a::before {
        display: none;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a:hover {
        color: #2A64AE;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a.active {
        color: #2A64AE;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a.active:hover {
        color: #2A64AE;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list {
        height: 0;
        background-color: unset;
        line-height: 36px;
        padding: 0;
        position: unset;
        transform: translateX(0%);
        align-items: unset;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .hide-item {
        flex: 1;
        margin-left: 30px;
        padding-bottom: 0;
        position: relative;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .hide-item:hover {
        color: #2A64AE !important;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .hide-item:first-child {
        padding-top: 0;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .hide-item:last-child {
        padding-bottom: 0;
    }

    .global-nav .container-fluid .navbar-box .contact-phone {
        order: -1;
        margin-left: 0;
        margin-right: 25px;
    }

    .contact-phone-num {
        padding: 5px 15px;
    }

    .global-footer .footer-copyright {
        font-size: 14px;
        margin-top: 45px;
        padding-bottom: 25px;
    }

    .global-footer .footer-inside {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .global-footer .footer-inside .inside-navbar .navbar-col .col-item {
        font-size: 14px;
        margin-top: 15px;
    }

    .global-footer .footer-inside .inside-contact .title {
        font-size: 14px;
    }

    .global-footer .footer-inside .inside-contact .phone {
        font-size: 24px;
    }

    .global-footer .footer-inside .inside-contact .codes {
        margin-top: 20px;
    }

    .global-footer .footer-inside .inside-contact .codes .code {
        width: 95px;
    }

    .global-footer .footer-body .body-main .main-item {
        padding: 0 12px;
    }

    .global-footer .footer-body .body-main .main-item .item-link {
        font-size: 14px;
    }

    .global-footer .footer-body .body-main .main-item .link-title {
        font-size: 14px;
    }

    .global-footer .footer-body {
        padding: 60px 0 0 0;
    }

    .body-main-box {
        width: 70%;
    }

    .footer-logo {
        width: 180px;
    }

    .banner .banner-title {
        font-size: 36px;
    }

    .banner .banner-text {
        font-size: 14px;
    }

    .banner-breadcrumbs-box {
        padding: 15px 0;
    }

    .banner-nav-item {
        margin: 20px;
    }

    .index-model-m-t {
        margin-top: 40px;
    }

    .index-model-m-b {
        margin-bottom: 40px;
    }

    .model-m-t {
        margin-top: 35px;
    }

    .model-m-b {
        margin-bottom: 35px;
    }

    .model-p-t {
        padding-top: 35px;
    }

    .model-p-b {
        padding-bottom: 35px;
    }

    .model-p-t-b {
        padding: 50px 0;
    }

    /****************************************************************************
    * 首页
    */
    .index-title {
        font-size: 28px;
    }

    .index-product-item-c img {
        height: 100px;
    }

    .index-product-item-c div {
        font-size: 28px;
    }

    .index-product-item-c div p:last-child {
        margin-left: 12px;
        padding: 5px 3px;
    }

    .index-product-item-c div p i {
        font-size: 14px;
    }

    .model-title {
        font-size: 32px;
    }

    .index-solution-swiper-item img {
        width: 85%;
    }

    .index-case-list {
        height: 500px;
    }

    .index-case-item-c {

        padding: 15px;
    }

    .index-case-item-c p:first-child {
        font-size: 14px;
    }

    .index-case-item-c p:last-child {
        font-size: 18px;
    }

    .index-case-item:last-child img {
        margin-bottom: 12px;
        width: 48px;
    }

    .index-about-text {

        margin: 20px 0;
        line-height: 20px;
    }

    .index-about-lable {
        margin-top: 10px;
        font-size: 20px;
    }

    .index-about-type-item {
        font-size: 16px;
        padding: 8px 20px;
    }

    .index-about-num-item p:last-child {
        font-size: 16px;
    }


    .index-about-num-item span {
        font-size: 40px;
    }

    .index-about-num-item {
        margin-top: 25px;
        font-size: 20px;
    }

    .index-partners-item-img {
        padding: 20px 30px;
    }

    .index-partner-text {
        font-size: 20px;
    }

    .index-news-type-item {
        margin-left: 15px;

        padding: 6px 20px;
    }

    .index-news-item-l {
        padding: 30px 20px;
    }

    .index-news-item-title {
        font-size: 17px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .index-news-item-icon {
        margin-top: 20px;
        font-size: 14px;
        width: 25px;
        height: 25px;
    }

    .index-service-list {
        width: 66%;
        margin: 0 -8px;
    }

    .index-service-item img {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }

    .index-service-item {

        padding: 15px;

        font-size: 18px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 18px;

    }

    .swiper-button-next,
    .swiper-button-prev {
        padding: 30px 15px;
    }

    /****************************************************************************
    * 产品中心
    */
    .product-list {
        margin-top: 10px;
    }

    .product-nav-item img {
        width: 30px;
        height: 30px;
        margin-right: 12px;
    }

    .product-item-b {
        padding: 20px;
    }

    .product-item-title {
        font-size: 18px;
    }

    .product-item-title img {
        height: 28px;
        margin-right: 12px;
    }

    .product-nav {
        margin-left: -8px;
        margin-right: -8px;
    }

    .product-nav-item {
        font-size: 14px;
        padding: 8px 0;
        width: calc(25% - 16px);
        margin: 0 8px;
        margin-bottom: 16px;
    }

    .productDetails-t {
        padding: 35px;
    }

    .productDetails-l {
        width: calc(50% - 35px);
    }



    .productDetails-title {
        padding-bottom: 25px;

    }

    .productDetails-text {
        margin-top: 25px;
        font-size: 14px;
        line-height: 20px;
    }

    .productDetails-icon {
        width: 10px;
        height: 40px;
        margin-right: 10px;
    }

    .productDetails-lx-item {
        font-size: 14px;
        padding: 15px 0;
    }

    .productDetails-swiper-item img {
        width: 80px;
        height: 80px;
    }

    .productDetails-swiper .swiper-button-next,
    .productDetails-swiper .swiper-button-prev {
        width: 20px;
        height: 85px;
    }

    .productDetails-swiper {
        margin-left: 20px;
    }

    .productDetails-b {
        padding: 35px;
    }

    /****************************************************************************
    * 解决方案
    */
    .solution-item {
        padding: 30px 0;
    }

    .solution-item-title {
        font-size: 24px;
    }

    .solution-item-text {
        margin-top: 20px;
        font-size: 14px;
    }

    .solution-item-icon {
        margin-top: 60px;
        width: 32px;
        height: 32px;
    }

    .solution-item-l {
        width: calc(50% - 35px);
        margin-right: 35px;
    }

    .solution-item:nth-of-type(even) .solution-item-l {
        margin-left: 35px;
    }

    .solutionDetails-item {
        padding: 35px;
    }

    .solutionDetails-pz-item p {
        font-size: 18px;
        padding: 12px 0;
    }

    .solutionDetails-pz-item img {
        margin-top: 20px;
        height: 85px;
    }

    .solution-lx-r a {
        font-size: 14px;
        padding: 3px 20px;
    }

    .solution-lx-text {
        margin-top: 30px;
        font-size: 14px;
    }

    /****************************************************************************
    * 应用案例
    */

    .case-item-lable p {
        font-size: 14px;
        margin-right: 15px;
        margin-left: 6px;
    }

    .caseDetails {
        padding: 35px;
    }

    .caseDetails-time {
        font-size: 16px;
        margin: 20px 0;
    }

    .caseDetails-c {
        padding: 35px;
    }

    /****************************************************************************
    * 服务支持
    */

    .service-cy-xian {
        margin: 8px 0;
    }

    .service-swiper {
        padding-bottom: 60px;
    }

    .service-cy-item {
        margin-top: 35px !important;
    }

    .service-js-b div p {
        padding: 10px 15px;
        font-size: 14px;
    }

    .service-swiper-text {
        font-size: 14px;
        padding: 10px 0;
    }

    .service-cy-text {
        font-size: 14px;
        line-height: 22px;
    }

    .service-td-item {
        padding: 12px;
    }

    .download-item {
        padding: 15px;
    }

    .download-item-l i {
        font-size: 45px;
    }

    .download-item-l div p:first-child {
        font-size: 18px;
    }

    .download-item-r i {
        margin-right: 10px;
    }

    /****************************************************************************
    * 新闻动态
    */
    .news-top-l {
        padding: 30px;
    }

    .news-top-time {
        font-size: 14px;
    }

    .news-top-time p:first-child {
        font-size: 32px;
    }

    .news-top-title {
        font-size: 18px;
        margin-top: 30px;
    }

    .news-top-text {
        margin-top: 25px;
        font-size: 14px;
    }

    .news-item {
        width: calc((100% - 40px) / 3);
        margin-bottom: 20px;
        margin-right: 20px;
    }

    .news-item-b {
        padding: 25px;
    }



    .news-item-time {
        font-size: 14px;
        margin-top: 15px;
    }

    /****************************************************************************
    * 关于我们
    */
    .about-jianjie-info-title {
        font-size: 24px;
    }

    .about-jianjie-num-item p:first-child {
        font-size: 24px;
    }

    .about-jianjie-num-item p:first-child span {
        font-size: 40px;
    }

    .about-yuanjing-btn-item {
        font-size: 14px;
        width: 30px;
        height: 30px;

    }

    .about-yuanjing-c {
        padding-top: 80px;
    }

    .about-yuanjing-b {
        margin-top: 65px;
    }

    .about-yuanjing-text {
        font-size: 14px;
        margin-top: 15px;
    }

    .about-zizhi .about-zizhi-text {
        margin-top: 40px;
    }

    .about-zizhi-item {
        width: calc(100% / 3);
        margin-bottom: 20px;
    }

    .about-zizhi-item:nth-child(-n+3) {
        margin-bottom: 30px;
    }

    .about-zizhi-item p {
        font-size: 14px;
    }

    .about-honor-item {
        width: calc((100% - 40px) / 3);
        margin-right: 20px !important;
        margin-bottom: 20px;
    }

    .about-honor-item:nth-child(3n) {
        margin-right: 0 !important;
    }

    .about-licheng-swiper-item-c {
        padding: 30px;
    }

    .about-licheng-swiper-item-c p:last-child {
        font-size: 14px;
        height: 84;
    }

    /****************************************************************************
    * 联系我们
    */
    .recruit {
        padding: 5px;
    }

    .join-more div {
        padding: 8px 20px;
    }

    .join-item-b {
        margin-top: 6px;
    }

    .contact-form-item {
        margin-bottom: 30px;
    }

    .contact-info {
        padding-top: 55px;
    }

    .map-sign-huan {
        padding: 22px;
        width: 60px;
        height: 60px;
    }

    .contact-info div {
        margin-top: 20px;
    }

    .contact-form input {
        margin-top: 6px;
    }

    .contact {
        height: 450px;

    }

    .contact-form-btn {
        padding: 10px 40px;
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .index-banner .swiper-slide .banner-word .title {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .footer-code {
        width: 100px;
        height: 100px;
    }

    .global-nav .container-fluid .navbar-box .contact-phone {
        margin-right: 20px;
    }

    .icon-wangzhan {
        display: none;
    }

    .language-btn {
        padding: 0 10px;
    }

    .language li a {
        margin: 2px 0;
    }

    .global-nav {
        padding: 0 30px;
    }

    .global-nav .container-fluid .navbar-brand img {
        width: 160px;
    }

    .global-nav .container-fluid .navbar-box .contact-phone .global-r-icon {
        width: 30px;
        height: 30px;
    }

    .global-nav .container-fluid .navbar-box .contact-phone .language-btn {
        margin-left: 15px;
    }

    .global-nav .container-fluid .navbar-box .contact-phone .global-r-icon i {
        font-size: 24px;
    }

    .contact-phone-num {
        font-size: 14px;
    }

    .contact-phone-num i {
        font-size: 14px;
        margin-right: 5px;
    }

    .global-footer .footer-inside {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .global-footer .footer-inside .inside-navbar .navbar-col .col-item {
        font-size: 13px;
        margin-top: 15px;
    }

    .global-footer .footer-inside .inside-contact .title {
        font-size: 13px;
    }

    .global-footer .footer-inside .inside-contact .phone {
        font-size: 22px;
    }

    .global-footer .footer-inside .inside-contact .codes {
        margin-top: 18px;
    }

    .global-footer .footer-inside .inside-contact .codes .code {
        width: 80px;
    }

    .global-footer .footer-body {
        align-items: center;
        justify-content: center;
    }

    .body-info {
        width: 80%;
        display: flex;
        flex-direction: column;
    }

    .body-info>div:first-child {
        width: 30%;
    }

    .footer-lianxi p:first-child {
        width: 100%;
    }

    .footer-lianxi p {
        width: 50%;

    }

    .global-footer .footer-body .body-main {
        display: none !important;
    }


    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav {
        margin-top: 60px;
    }

    .global-footer .footer-body {
        flex-direction: column;
        padding: 50px 0 0 0;
    }

    .global-footer .footer-copyright {
        padding: 15px 0;
        margin-top: 35px;
    }

    .global-footer .footer-copyright .copy {
        text-align: center;
        font-size: 12px;
    }


    .global-banner {
        padding-top: 350px;
        margin-top: 62px;
    }

    .footer-lianxi {
        width: 100%;
    }

    .global-pagination a {
        width: 30px;
        line-height: 28px;
        height: 30px;
    }

    .global-pagination .btn {
        width: 60px;
        height: 30px;
    }

    .banner .banner-title {
        font-size: 30px;
    }

    .banner .banner-text {
        font-size: 12px;
    }

    .banner .banner-title .xian {
        width: 40px;
        height: 3px;
        margin-top: 8px;
    }

    @keyframes globalBannerTitle {
        0% {
            opacity: 0;
            top: 0;
        }

        100% {
            opacity: 1;
            top: 45%;
        }
    }

    @keyframes globalBannerText {
        0% {
            opacity: 0;
            top: 0;
        }

        20% {
            opacity: 0;
            top: 0;
        }

        100% {
            opacity: 1;
            top: 54%;
        }
    }

    @keyframes globalServicesTitle {
        0% {
            opacity: 0;
            top: 0;
        }

        100% {
            opacity: 1;
            top: 42%;
        }
    }

    @keyframes globalServicesText {
        0% {
            opacity: 0;
            top: 0;
        }

        20% {
            opacity: 0;
            top: 0;
        }

        100% {
            opacity: 1;
            top: 65%;
        }
    }

    .model-details {
        line-height: 20px;
        font-size: 14px;
    }

    .overlay .dialog .iconfont {
        top: -40px;
        height: 34px;
        font-size: 18px;
    }


    .global-pagination .btn i {
        font-size: 16px;
    }

    .global-pagination a {
        margin: 0 8px;
        font-size: 14px;
    }

    .global-pagination .btn {
        margin: 0 8px;
    }

    .index-model-m-t {
        margin-top: 30px;
    }

    .index-model-m-b {
        margin-bottom: 30px;
    }

    .model-m-t {
        margin-top: 30px;
    }

    .model-m-b {
        margin-bottom: 30px;
    }

    .model-p-t {
        padding-top: 30px;
    }

    .model-p-b {
        padding-bottom: 30px;
    }

    .model-p-t-b {
        padding: 40px 0;
    }

    /****************************************************************************
    * 首页
    */
    .index-title {
        font-size: 24px;
    }

    .index-product-item-c img {
        height: 80px;
    }

    .index-product-item-c div {
        font-size: 20px;
    }

    .index-product-item-c div p:last-child {
        margin-left: 10px;
        padding: 3px 0;
    }

    .index-product-item-c div p i {
        font-size: 12px;
    }

    .model-title {
        font-size: 24px;
    }

    .index-solution-swiper-item img {
        width: 100%;
    }

    .index-solution-swiper-item {
        padding: 0 60px;

    }

    .index-case-list {
        height: 400px;
    }

    .index-case-item-c {

        padding: 12px;
    }

    .index-case-item-c p:first-child {
        font-size: 14px;
    }

    .index-case-item-c p:last-child {
        font-size: 16px;
    }

    .index-case-item:last-child img {
        margin-bottom: 10px;
        width: 40px;
    }

    .index-about-l {
        width: 70%;
    }

    .index-about-text {
        margin: 15px 0;

        line-height: 20px;
    }

    .index-about-lable {
        margin-top: 10px;
        font-size: 16px;
    }

    .index-about-type-item {
        font-size: 14px;
        padding: 6px 15px;
    }

    .index-about-num-item p:last-child {
        font-size: 14px;
    }

    .index-about-num-item span {
        font-size: 32px;
    }

    .index-about-num-item {
        margin-top: 20px;
        font-size: 16px;
    }

    .index-partners-item-img {
        padding: 15px 20px;
    }

    .index-partner-text {
        font-size: 16px;
    }

    .index-news-type-item {
        margin-left: 15px;
        padding: 5px 15px;
    }

    .index-news-list-active {
        flex-direction: column;
    }

    .index-news-item {
        width: 100% !important;
        border-right: none;
    }

    .index-news-item-l {
        padding: 15px;
    }

    .index-news-item-active .index-news-item-l {
        width: 70%;
    }

    .index-news-item-active .index-news-item-r {
        width: 30%;
    }

    .index-news-item-title {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .index-news-item-text {
        font-size: 12px;
    }

    .index-news-item-text {
        font-size: 12px;
    }

    .index-news-item-time i {
        font-size: 14px;
        margin-right: 5px;
    }

    .index-news-item-icon {
        margin-top: 20px;
        font-size: 14px;
        width: 25px;
        height: 25px;
    }

    .index-service-list {
        width: auto;
        margin: 0 -8px;
    }

    .index-service-item img {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .index-service-item {
        padding: 12px;
        font-size: 16px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;

    }

    .swiper-button-next,
    .swiper-button-prev {
        padding: 25px 10px;
    }

    /****************************************************************************
    * 产品中心
    */

    .product-list {
        margin-top: 0px;
        margin-left: -8px;
        margin-right: -8px;
    }

    .product-item {
        margin: 8px;
        width: calc(100% / 3 - 16px);
    }

    .product-nav-item img {
        width: 26px;
        height: 26px;
        margin-right: 12px;
    }

    .product-item-b {
        padding: 15px;
    }

    .product-item-title {
        font-size: 16px;
    }

    .product-item-title img {
        height: 24px;
        margin-right: 10px;
    }

    .product-item-text {
        font-size: 12px;
        margin-top: 15px;
    }

    .productDetails-t {
        flex-direction: column;
        padding: 25px;
    }

    .productDetails-l {
        width: 100%;
    }

    .productDetails-r {
        width: 100%;
    }

    .productDetails-r {
        padding: 0;
    }

    .productDetails-swiper {
        margin-left: 0;
    }

    .productDetails-l-img {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .productDetails-l-img img {
        width: 75%;
        height: auto;
    }

    .productDetails-l {
        padding: 0 0 25px 0;
    }

    .productDetails-title {
        padding-bottom: 20px;
    }

    .productDetails-text {
        margin-top: 20px;

    }

    .productDetails-b {
        padding: 25px;
    }

    .productDetails-icon {
        width: 8px;
        height: 30px;
    }

    .productDetails-swiper .swiper-button-next,
    .productDetails-swiper .swiper-button-prev {
        width: 25px;
        height: 85px;
    }

    /****************************************************************************
    * 解决方案
    */
    .solution-item {
        padding: 25px 0;
    }

    .solution-item-text {
        margin-top: 15px;
    }

    .solution-item-title {
        font-size: 22px;
    }

    .solution-item-icon {
        margin-top: 35px;
        font-size: 14px;
        width: 28px;
        height: 28px;
    }

    .solution-item-l {
        width: calc(50% - 30px);
        margin-right: 30px;
    }

    .solution-item:nth-of-type(even) .solution-item-l {
        margin-left: 30px;
    }

    .solution-nav .product-nav-item {
        padding: 8px 20px;
    }


    .solutionDetails-pz-item p {
        font-size: 18px;
        padding: 12px 0;
    }


    .solutionDetails-item {
        padding: 25px;
    }

    .solutionDetails-pz-item p {
        font-size: 16px;
        padding: 10px 0;
    }

    .solutionDetails-pz-item img {
        margin-top: 15px;
        height: 70px;
    }

    .solutionDetails-xg-list .product-item {
        width: calc(50% - 12px);
    }

    .solution-lx-num {
        margin-top: 10px;
        font-size: 20px;
        padding-bottom: 10px;
    }

    .solution-lx-r i {
        font-size: 18px;
        margin-left: 6px;
    }

    .solution-lx-text {
        margin-top: 25px;
    }

    /****************************************************************************
    * 应用案例
    */
    .case-list .product-item {
        margin: 8px;
        width: calc(100% / 2 - 16px);
    }

    .caseDetails {
        padding: 25px;
    }

    .caseDetails-time {
        font-size: 14px;
        margin: 15px 0;
    }

    .caseDetails-c {
        padding: 25px;
    }

    .case-xg-box .product-list {
        margin-top: 15px;
    }

    /****************************************************************************
    * 服务支持
    */

    .service-cy .swiper-button-prev {
        left: 42%;
    }

    .service-cy .swiper-button-next {
        right: 42%;
    }

    .service-cy .swiper-button-next,
    .service-cy .swiper-button-prev {
        width: 32px;
        height: 32px;
    }

    .service-cy .swiper-button-next:after,
    .service-cy .swiper-button-prev:after {
        font-size: 14px;
    }

    .service-zl .swiper-button-next,
    .service-zl .swiper-button-prev {
        width: 32px;
        height: 32px;
    }

    .service-zl .swiper-button-next:after,
    .service-zl .swiper-button-prev:after {
        font-size: 14px;
    }

    .service-cy-item {
        margin-top: 25px !important;
    }

    .service-swiper {
        padding-bottom: 50px;
    }

    .service-js-img {
        flex-wrap: wrap;
    }

    .service-js-img div {
        width: calc(50% - 10px);
        overflow: hidden;
        margin-bottom: 20px !important;
    }

    .service-js-b div:first-child {
        width: 100%;
    }

    /****************************************************************************
    * 新闻动态
    */

    .news-top-l {
        padding: 25px;
        width: 45%;
    }

    .news-top-r {
        width: 55%;

    }

    .news-top-time p:first-child {
        font-size: 28px;
    }

    .news-top-time {
        font-size: 12px;
    }

    .news-top-title {
        font-size: 16px;
        margin-top: 15px;
    }

    .news-top-text {
        margin-top: 15px;
        font-size: 12px;
    }

    .news-top .solution-item-icon {

        font-size: 12px;
        width: 24px;
        height: 24px;
    }

    .news-list {
        justify-content: space-between;
    }

    .news-item {
        width: calc((100% - 20px) / 2);
        margin-bottom: 20px;
        margin-right: 0 !important;
    }

    .news-item-b {
        padding: 20px;
    }

    .news-item-title {
        font-size: 16px;
        height: 48px;
    }

    .news-item-time {
        font-size: 14px;
        margin-top: 15px;
    }

    .newsDetails-time {
        font-size: 14px;
    }

    .newsDetails-item {

        padding: 15px 20px;
        font-size: 14px;

    }

    /****************************************************************************
    * 关于我们
    */
    .about-jianjie-info {
        flex-wrap: wrap;
    }

    .about-jianjie-info-l {
        width: 100%;
    }

    .about-jianjie-info-r {
        margin-top: 25px;
        width: 100%;
    }

    .about-jianjie-info-title {
        font-size: 18px;
    }

    .about-jianjie-num-item p:first-child {
        font-size: 20px;
    }

    .about-jianjie-num-item p:first-child span {
        font-size: 36px;
    }

    .about-jianjie-num-item p:last-child {
        font-size: 14px;
        margin-top: 6px;
    }

    .about-jianjie-video .btn {
        font-size: 20px;
        width: 50px;
        height: 50px;
    }


    .about-yuanjing-c {
        padding-top: 60px;
    }

    .about-yuanjing-b {
        padding: 20px 0;
        margin-top: 40px;
    }

    .about-yuanjing-b-item img {
        width: 32px;
        height: 32px;
        margin-bottom: 6px;
    }

    .about-yuanjing-b-item {
        font-size: 14px;
    }

    .about-zizhi .about-zizhi-text {
        margin-top: 30px;
    }

    .about-zizhi-item {
        width: calc(100% / 3);
        margin-bottom: 5px;
    }

    .about-zizhi-item p {
        width: 65%;
    }

    .about-zizhi-item:nth-child(-n+3) {
        margin-bottom: 20px;
        width: calc((100% - 140px) / 3);
        margin-right: 70px;
    }

    .about-zizhi-item-icon {
        height: 65px;
    }

    .about-zizhi-box {
        padding-bottom: 30px;
    }

    .about-zizhi-text {
        font-size: 20px;
    }

    .about-honor-item {
        width: calc((100% - 30px) / 3);
        margin-right: 15px !important;
        margin-bottom: 15px;
    }

    .about-licheng-swiper-item-c {
        padding: 25px;
    }

    /****************************************************************************
    * 联系我们
    */

    .join-item-b {
        margin-top: 5px;
    }

    .join-more div {
        padding: 8px 25px;
        font-size: 16px;

    }

    .recruit-title {
        margin-bottom: 0px;
        font-size: 20px;
    }

    .recruit-t {
        padding-bottom: 15px;
    }

    .model-details {
        margin: 15px 0;
    }

    .join-more div {
        padding: 5px 25px;
        font-size: 14px;
    }

    .recruit-title {
        font-size: 20px;
    }

    .join-item-box {
        margin-bottom: 15px;
    }

    .contact {
        height: auto;
    }

    .map-sign-huan {
        padding: 18px;
        width: 50px;
        height: 50px;
    }


    .contact-map {
        width: 100%;
        position: relative;
        height: 320px;
        margin-top: 25px;
    }

    .contact-info img {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }

    .contact-info {
        width: 100%;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        padding-top: 0;
    }

    .contact-info p {
        width: 100%;
    }

    .contact-info div {
        font-size: 14px;
        margin-top: 20px;
        width: 50%;
    }

    .contact-info div:last-child {
        width: 100%;
    }

    .contact-form-box>div {
        flex-direction: column;
    }

    .contact-form-box .model-title {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact-form {
        margin-top: 20px;
        align-items: center;
        width: 100%;
    }

    .contact-form-item {
        margin-bottom: 20px;
    }

    .contact-form-lable {
        font-size: 14px;
    }

    .contact-form input {
        margin-top: 0px;
        font-size: 14PX;
    }

    .contact-form-btn {
        padding: 6px 30px;
        font-size: 14px;
    }

}

@media (max-width: 768px) {
    .index-banner .swiper-slide .banner-word .title {
        font-size: 20px;
    }

    .footer-code {
        width: 90px;
        height: 90px;
    }

    .footer-code {
        left: 170px;
    }

    ::-webkit-input-placeholder {
        font-size: 12px;
        line-height: 18px;
    }

    :-ms-input-placeholder {
        font-size: 12px;
        line-height: 18px;
    }

    ::placeholder {
        font-size: 12px;
        line-height: 18px;
    }

    .model-details {
        font-size: 12px;
        line-height: 18px;
    }

    .model-details a {
        font-size: 12px;
    }

    .global-nav .container-fluid .navbar-brand img {
        width: 120px;
    }



    .global-pagination a {
        margin: 0 5px;
        font-size: 12px;
    }

    .global-pagination .btn i {
        font-size: 14px;
    }

    .global-pagination {
        padding: 10px;
    }

    .global-pagination .btn {
        margin: 0 5px;
    }

    .global-nav .container-fluid .navbar-box .contact-phone {
        margin-right: 15px;
    }

    .global-nav {
        padding: 0 30px;
        height: 60px;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav {
        margin-top: 45px;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li {
        padding: 0 30px;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a {
        font-size: 14px;
        line-height: 36px;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list {
        line-height: 32px;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .hide-item {
        margin-left: 20px;
    }

    .global-footer .footer-copyright {
        font-size: 13px;
        padding-top: 40px;
        padding-bottom: 20px;
        margin-top: 30px;
    }

    .global-footer .footer-copyright a {
        margin-right: 8px;
        margin-left: 8px;
    }

    .global-footer .footer-body {
        justify-content: center;
        padding: 30px 0 0 0;
    }

    .global-footer .footer-copyright {
        padding: 10px 0;
        margin-top: 25px;
    }

    .global-footer .footer-copyright .copy {
        justify-content: center;
        flex-direction: column;
        font-size: 12px;
        padding: 0 15px;
    }

    .global-footer .footer-copyright .copy a {
        font-size: 12px;
    }

    .footer-lianxi p {
        font-size: 12px;
    }

    .global-footer .footer-copyright {
        margin-top: 25px;
    }

    .index-banner .swiper-pagination {
        bottom: 15px;
    }

    .index-banner .swiper-pagination .swiper-pagination-bullet-active {
        width: 30px;
    }

    .global-banner {
        padding-top: 300px;
        margin-top: 58px;
    }

    .footer-logo {
        width: 160px;
    }

    .footer-about {
        margin-top: 15px;

    }

    .body-info {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .banner .banner-title {
        font-size: 24px;
    }

    .banner .banner-text {
        font-size: 12px;
        line-height: 16px;
    }

    .banner-breadcrumbs-box {
        padding: 10px 0;
    }

    .overlay .dialog {
        width: 90%;
        padding: 10px;
    }

    .index-model-m-t {
        margin-top: 20px;
    }

    .index-model-m-b {
        margin-bottom: 20px;
    }

    .model-m-t {
        margin-top: 20px;
    }

    .model-m-b {
        margin-bottom: 20px;
    }

    .model-p-t {
        padding-top: 20px;
    }

    .model-p-b {
        padding-bottom: 20px;
    }

    .model-p-t-b {
        padding: 25px 0;
    }

    /****************************************************************************
    * 首页
    */
    .index-title {
        font-size: 22px;
    }

    .index-product-item-c img {
        height: 70px;
    }

    .index-product-item-c div {
        font-size: 18px;
    }

    .index-product-item-c div p:last-child {
        padding: 2px 0;
    }

    .model-title {
        font-size: 20px;
    }

    .index-case-list {
        height: auto;
        flex-direction: row;
    }

    .index-case-item {

        width: calc(50% - 10px);
        height: 180px;
        overflow: hidden;
    }

    .index-case-item:nth-child(3) {
        width: calc(50% - 10px);
        height: 180px;
    }

    .index-case-item:last-child {
        width: calc(100% - 10px);
        height: 180px;
    }

    .index-case-item:last-child img {
        margin-bottom: 10px;
        width: 40px;
    }

    .index-about-l {
        width: 85%;
    }

    .index-about-num-item span {
        font-size: 28px;
    }

    .index-about-num-item {
        margin-top: 15px;
        font-size: 14px;
    }

    .index-partners-item-img {
        padding: 12px 15px;
    }

    .index-news-type-item {
        margin-left: 12px;
        padding: 5px 15px;
    }

    .index-news-item-l {
        padding: 15px;
    }

    .index-news-item-active .index-news-item-l {
        width: 60%;
    }

    .index-news-item-active .index-news-item-r {
        width: 40%;
    }

    .index-news-item-icon {
        margin-top: 15px;
    }

    .index-service-item img {
        width: 35px;
        height: 35px;
        margin-bottom: 10px;
    }

    .index-service-item {
        padding: 10px;
        font-size: 14px;
    }

    /****************************************************************************
    * 产品中心
    */
    .product-nav {
        margin-left: -7px;
        margin-right: -7px;
    }

    .product-nav-item {
        padding: 6px 0;
        width: calc(100% / 3 - 14px);
        margin: 0 7px;
        margin-bottom: 14px;
    }

    .product-list {
        margin-left: -8px;
        margin-right: -8px;
    }

    .product-item {
        margin: 8px;
        width: calc(50% - 16px);
    }

    .product-nav-item img {
        width: 20px;
        height: 24px;
        margin-right: 12px;
    }

    .product-item-b {
        padding: 15px;
    }

    .product-item-title {
        font-size: 16px;
    }

    .product-item-title img {
        height: 24px;
        margin-right: 8px;
    }

    .product-item-text {
        margin-top: 10px;
    }

    .productDetails-t {
        padding: 20px;
    }

    .productDetails-b {
        padding: 20px;
    }

    .productDetails-title {
        padding-bottom: 15px;
    }

    .productDetails-text {
        margin-top: 15px;
    }

    .productDetails-icon {
        width: 8px;
        height: 28px;
    }

    .productDetails-l-img img {
        width: 100%;
        height: auto;
    }

    .productDetails-lx-item {
        font-size: 14px;
        padding: 12px 0;
    }

    /****************************************************************************
    * 解决方案
    */
    .solution-item {
        padding: 20px 0;
    }

    .solution-item-title {
        font-size: 18px;
    }

    .solution-item-text {
        margin-top: 12px;
    }

    .solution-item-icon {
        margin-top: 25px;
        font-size: 14px;
        width: 25px;
        height: 25px;
    }

    .solution-item-l {
        width: calc(50% - 20px);
        margin-right: 20px;
    }

    .solution-nav .product-nav-item {
        padding: 6px 15px;
    }

    .solution-item:nth-of-type(even) .solution-item-l {
        margin-left: 20px;
    }

    .solutionDetails-pz-item p {
        font-size: 14px;
        padding: 10px 0;
    }

    .solutionDetails-pz-item img {
        margin-top: 15px;
        height: 50px;
    }

    .solutionDetails-item {
        padding: 20px;
    }

    .solution-lx-l {
        width: 70%;
    }

    .solution-lx-r {
        width: 30%;
    }

    .solutionDetails-xg-list .product-item {
        width: calc(50% - 10px);
    }

    .solution-lx-text {
        margin-top: 20px;
    }

    /****************************************************************************
    * 应用案例
    */
    .case-item-lable p {
        font-size: 12px;
        margin-right: 10px;
        margin-left: 5px;
    }

    .case-list .product-item-b {
        padding: 12px;
    }

    .case-item-title {
        padding-bottom: 10px;
        font-size: 14px;
        height: 42px;
    }

    .case-item-lable {
        margin-top: 10px;
    }

    .caseDetails {
        padding: 20px;
    }

    .caseDetails-time {
        font-size: 14px;
        margin: 10px 0;
    }

    .caseDetails-c {
        padding: 20px;
    }

    .caseDetails-c-img {
        margin-bottom: 15px;
    }

    .case-xg-box .product-list {
        margin-top: 10px;
    }

    /****************************************************************************
    * 服务支持
    */
    .service-js-b div p {
        padding: 8px 12px;
        font-size: 12px;
    }

    .service-cy .swiper-button-prev {
        left: 41%;
    }

    .service-cy .swiper-button-next {
        right: 41%;
    }

    .service-js-img div {
        width: calc(50% - 8px);
        margin-bottom: 16px !important;
    }

    .service-fw-item {
        width: calc(50% - 8px);
        margin-top: 16px;
    }

    .service-cy-box .model-title {
        margin-top: 10px;
    }

    .service-cy-item img {
        width: 65%;
    }

    .download-item-l div p:first-child {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .download-item-l i {
        font-size: 40px;
        margin-right: 10px;
    }

    .download-item-l div p {
        font-size: 12px;
    }

    .download-list {
        margin-top: 10px;
    }

    /****************************************************************************
    * 新闻动态
    */

    .news-top-c {
        margin-top: 10px;
        flex-direction: column-reverse;
    }

    .news-top-l {
        width: 100%;
        padding: 15px;
    }

    .news-top-r {
        width: 100%;
    }

    .news-top-title {
        margin-top: 10px;
    }

    .news-top-text {
        margin-top: 10px;
    }

    .news-top .solution-item-icon {
        margin-top: 20px;
    }

    .news-item-b {
        padding: 15px;
    }

    .news-item-title {
        font-size: 14px;
        height: 42px;
    }

    .news-item-time {
        font-size: 12px;
        margin-top: 10px;
    }

    .news-item {
        width: calc((100% - 16px) / 2);
        margin-bottom: 16px;
        margin-right: 0 !important;
    }

    .newsDetails-time {
        margin-top: 10px !important;
    }

    /****************************************************************************
    * 关于我们
    */

    .about-jianjie-info-r {
        margin-top: 20px;
    }

    .about-jianjie-info-title {
        font-size: 16px;
    }

    .about-jianjie-num-item p:first-child {
        font-size: 18px;
    }

    .about-jianjie-num-item p:first-child span {
        font-size: 32px;
    }

    .about-jianjie-num-item p:last-child {
        font-size: 12px;
        margin-top: 5px;
    }

    .about-jianjie-video .btn {
        font-size: 18px;
        width: 42px;
        height: 42px;
    }


    .about-yuanjing-c {
        padding-top: 45px;
    }

    .about-yuanjing-b {
        padding: 15px 0;
        margin-top: 30px;
    }

    .about-yuanjing-b-item img {
        width: 28px;
        height: 28px;
        margin-bottom: 4px;
    }

    .about-zizhi .about-zizhi-text {
        margin-top: 20px;
    }

    .about-zizhi-item {
        width: calc(100% / 3);
        margin-bottom: 5px;
    }

    .about-zizhi-item p {
        width: 65%;
    }

    .about-zizhi-item-icon {
        height: 50px;
    }

    .about-zizhi-item:nth-child(-n+3) {
        margin-bottom: 20px;
        width: calc((100% - 60px) / 3);
        margin-right: 30px;
    }

    .about-zizhi-item p {
        font-size: 12px;
    }

    .about-zizhi-box {
        padding-bottom: 20px;
    }

    .about-zizhi-text {
        font-size: 16px;
    }

    .about-honor-item-text {
        font-size: 12px !important;
    }

    .about-honor-list {
        justify-content: space-between;
    }

    .about-honor-item {
        width: calc(50% - 7px);
        margin-right: 0 !important;
        margin-bottom: 14px;
    }

    .about-honor-item:nth-child(3n) {
        margin-right: 0 !important;
    }

    .about-licheng-swiper-item-c {
        padding: 20px;
    }

    .about-licheng-swiper-item-c p:last-child {
        font-size: 12px;
        height: 72;
    }

    /****************************************************************************
    * 联系我们
    */

    .join-item {
        padding: 12px 15px;
    }

    .join-item-b p:first-child {
        margin-right: 15px;
    }

    .join-item-b p {
        font-size: 12px;
    }

    .overlay .dialog .recruit .recruit-button {
        font-size: 16px;
        width: 26px;
        height: 26px;
    }

    .recruit-b {
        padding-top: 10px;
        font-size: 14px;
    }

    .join-item-title {
        font-size: 18px;
    }

    .recruit-title {
        font-size: 18px;
    }

    .join-item-box {
        margin-bottom: 12px;
    }

    .join-item-t i {
        font-size: 18px;
    }

    .contact-form {
        margin-top: 15px;

    }

    .contact-form-item {
        margin-bottom: 15px;
    }

    .contact-form input {

        font-size: 12PX;
    }

    .contact-info div {

        margin-top: 15px;

    }

    .service-cy-name {
        width: 90%;
    }

    .service-cy-item {
        margin-top: 15px !important;
    }
}

@media (max-width: 576px) {
    .index-banner .swiper-slide .banner-word .title {
        font-size: 16px;
    }

    /* ::-webkit-input-placeholder {
    line-height: 18px;
  }

  :-ms-input-placeholder {
    line-height: 18px;
  }

  ::placeholder {
    line-height: 18px;
  } */
    .global-footer .footer-copyright {
        margin-top: 15px;
    }

    .global-footer .footer-body {
        padding: 20px 15px 0 15px;
    }

    .body-info {
        flex-direction: column;
    }

    .footer-about-item {
        margin-right: 15px;
    }

    .footer-about i {
        font-size: 24px;

    }

    .footer-lianxi {
        width: 100%;
    }

    .body-info>div:first-child {
        width: 100%;
    }

    .footer-lianxi p {
        margin-bottom: 6px;
    }

    .global-nav {
        padding: 0 12px;
        height: 45px;
    }

    .global-nav .container-fluid .navbar-brand img {
        width: 100px;
    }

    .global-nav .container-fluid .navbar-box .contact-phone .global-r-icon {
        user-select: none;
        width: 25px;
        height: 25px;
    }

    .global-nav .container-fluid .navbar-box .navbar-toggler.collapsed .navbar-toggler-icon {
        height: 2px;
        width: 22px;
    }

    .global-nav .container-fluid .navbar-box .navbar-toggler .navbar-toggler-icon {
        width: 24px;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a {
        line-height: 30px;
    }


    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav {
        margin-top: 50px;
        margin-bottom: 15px;
    }

    .contact-phone-num {
        padding: 2px 15px;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li {
        padding: 0 20px;
    }

    .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .hide-item {
        margin-left: 15px;
    }

    .contact-phone-num i {
        font-size: 12px;
        margin-right: 5px;
    }

    .footer-code {
        left: 160px;
    }

    /* .global-nav .container-fluid .navbar-box .contact-phone {
    display: none;
  } */

    .global-footer .footer-copyright .copy span {
        margin-right: 0;
        display: block;
    }

    .global-footer .footer-copyright .copy .ICP {
        display: inline-block;
    }

    .footer-logo {
        width: 140px;
    }

    .footer-lianx {
        width: 95%;
    }

    .contact-phone-num {
        display: none;
    }

    .global-banner {
        padding-top: 120px;
        margin-top: 42px;
    }

    .banner .banner-title {
        font-size: 14px;
    }

    @keyframes globalBannerTitle {
        0% {
            opacity: 0;
            top: 0;
        }

        100% {
            opacity: 1;
            top: 48%;
        }
    }

    .banner .banner-title .xian {
        width: 30px;
        height: 2px;

        margin-top: 3px;
    }

    @keyframes globalServicesText {
        0% {
            opacity: 0;
            top: 0;
        }

        20% {
            opacity: 0;
            top: 0;
        }

        100% {
            opacity: 1;
            top: 72%;
        }
    }

    .banner-breadcrumbs-box {
        padding: 5px 0;
    }

    .breadcrumbs,
    .breadcrumbs a {
        font-size: 12px;
    }

    .index-model-m-t {
        margin-top: 15px;
    }

    .index-model-m-b {
        margin-bottom: 15px;
    }

    .model-m-t {
        margin-top: 15px;
    }

    .model-m-b {
        margin-bottom: 15px;
    }

    .model-p-t {
        padding-top: 15px;
    }

    .model-p-b {
        padding-bottom: 15px;
    }

    .model-p-t-b {
        padding: 20px 0;
    }

    /****************************************************************************
    * 首页
    */
    .index-title {
        font-size: 18px;
    }

    .model-title {
        font-size: 16px;
    }

    .index-model-m-b {
        margin-bottom: 10px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;

    }

    .swiper-button-next,
    .swiper-button-prev {
        padding: 20px 5px;
    }

    .index-product-item-c div {
        font-size: 12px;
    }

    .index-product-item-c div p:last-child {
        display: none;
    }

    .index-product-item-c img {
        height: 50px;
    }

    .index-case-item {
        height: 150px !important;
    }

    .index-case-item-c p:first-child {
        font-size: 12px;
    }

    .index-case-item-c p:last-child {
        font-size: 14px;
    }

    .index-about-lable {
        margin-top: 6px;
        font-size: 14px;
    }

    .index-about-text {
        margin: 10px 0;
        line-height: 20px;
    }

    .index-partner-text {
        font-size: 14px;
    }

    .index-news {
        padding-left: 12px;
        padding-right: 12px;
    }

    .index-news-type-item {
        margin-left: 10px;
        font-size: 12px;
        padding: 4px 15px;
    }

    .index-news-item .index-news-item-l {
        width: 50%;
    }

    .index-news-item .index-news-item-r {
        display: block;
        opacity: 1;
        width: 50%;
    }

    .index-news-item-title {
        font-size: 14px;
        margin-top: 6px;
        margin-bottom: 6px;
    }

    .index-service-item {
        margin: 8px;

        width: calc(50% - 16px);

    }

    /****************************************************************************
    * 产品中心
    */
    .product-nav {
        margin-left: -5px;
        margin-right: -5px;
    }

    .product-nav-item {
        padding: 6px 0;
        width: calc(100% / 3 - 10px);
        margin: 0 5px;
        margin-bottom: 10px;
    }

    .product-list {
        margin-left: -6px;
        margin-right: -6px;
    }

    .product-item {
        margin: 6px;
        font-size: 12px;
        width: calc(50% - 12px);
    }

    .product-nav-item img {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }

    .product-item-title {
        font-size: 14px;
    }

    .product-item-b {
        padding: 10px;
    }

    .product-item-title img {
        height: 18px;
        margin-right: 6px;
    }

    .productDetails-t {
        padding: 15px;
    }

    .productDetails-b {
        padding: 15px;
    }


    .productDetails-lx-item {
        font-size: 12px;
        padding: 8px 0;
    }

    .productDetails-title {
        padding-bottom: 10px;
    }

    .productDetails-text {
        margin-top: 10px;
    }

    .productDetails-swiper-item img {
        width: 70px;
        height: 70px;
    }

    .productDetails-swiper .swiper-button-next,
    .productDetails-swiper .swiper-button-prev {
        width: 20px;
        height: 75px;
    }

    /****************************************************************************
    * 解决方案
    */
    .solution-item {
        padding: 15px 0;
    }

    .solution-item-title {
        font-size: 16px;
    }

    .solution-item-text {
        margin-top: 8px;
        font-size: 12px;
    }

    .solution-item-icon {
        margin-top: 20px;
        font-size: 12px;
        width: 20px;
        height: 20px;
    }

    .solution-item-l {
        width: calc(50% - 15px);
        margin-right: 15px;
    }

    .solution-item:nth-of-type(even) .solution-item-l {
        margin-left: 15px;
    }

    .solution-nav .product-nav-item {
        padding: 5px 15px;
        font-size: 12px;
    }

    .solutionDetails-pz-item p {
        font-size: 14px;
        padding: 8px 0;
    }

    .solutionDetails-pz-item img {
        margin-top: 15px;
        height: 36px;
    }

    .solutionDetails-item {
        padding: 15px;
    }

    .solutionDetails-pz-item {
        padding-bottom: 15px;
    }

    .solutionDetails-xg-list .product-item {
        width: calc(50% - 5px);
    }

    .productDetails-icon {
        width: 6px;
        height: 20px;
    }

    .productDetails-b-title {
        padding-bottom: 10px;
    }

    .solutionDetails-item .model-details {
        margin-top: 10px;
    }

    .solution-lx {
        flex-direction: column;
    }

    .solution-lx-num {
        margin-top: 10px;
        font-size: 14px;
        padding-bottom: 5px;
    }

    .solution-lx-num span:first-child {
        margin-right: 10px;
    }

    .solution-lx-r {
        margin-top: 15px;
        justify-content: flex-end;
        width: 100%;
    }

    .solution-lx .model-title {
        font-size: 18px;
    }

    .solution-lx-text {
        margin-top: 15px;
    }

    /****************************************************************************
    * 应用案例
    */
    .case-list .product-item {

        width: 100%;
    }

    .case-item-lable p {
        margin-right: 18px;
    }

    .caseDetails {
        padding: 15px
    }

    .caseDetails-c {
        padding: 15px 10px;
    ;
    }

    .caseDetails-time {
        margin-top: 5px;
    }

    /****************************************************************************
    * 服务支持
    */

    .service-cy .swiper-button-prev {
        left: 39%;
    }

    .service-cy .swiper-button-next {
        right: 39%;
    }

    .service-cy .swiper-button-next,
    .service-cy .swiper-button-prev {
        width: 28px;
        height: 28px;
    }

    .service-zl .swiper-button-next,
    .service-zl .swiper-button-prev {
        width: 28px;
        height: 28px;
    }

    .service-js-img div {
        width: calc(50% - 6px);
        margin-bottom: 12px !important;
    }

    .service-fw-item {
        width: calc(50% - 6px);
        margin-top: 12px
    }

    .download-item {
        padding: 10px 15px;
        margin-bottom: 15px;
    }

    .download-item-l div p:first-child {
        font-size: 14px;

    }

    .download-item-l i {
        font-size: 36px;
    }

    .download-item-r i {
        margin-right: 6px;
    }

    /****************************************************************************
    * 新闻动态
    */
    .news-item {
        width: calc((100% - 12px) / 2);
        margin-bottom: 12px;
    }

    .news-item-b {
        padding: 12px 15px;
    }

    .news-item-time {
        margin-top: 5px;
    }


    /****************************************************************************
    * 关于我们
    */

    .about-jianjie-info-r {
        margin-top: 15px;
    }

    .about-jianjie-info-title {
        font-size: 14px;
    }

    .about-jianjie-num-item p:first-child {
        font-size: 16px;
    }

    .about-jianjie-num-item p:first-child span {
        font-size: 24px;
    }

    .about-jianjie-video .btn {
        font-size: 16px;
        width: 36px;
        height: 36px;
    }

    .about-yuanjing-item p:first-child {
        font-size: 18px;
    }

    .about-yuanjing-text {
        font-size: 12px;
        margin-top: 10px;
    }

    .about-yuanjing-c {
        padding-top: 35px;
    }

    .about-yuanjing-b {
        padding: 15px 0;
        margin-top: 20px;
    }

    .about-yuanjing-b-item img {
        width: 25px;
        height: 25px;
        margin-bottom: 4px;

    }

    .about-yuanjing-b-item {
        font-size: 12px;
    }

    .about-yuanjing-btn-item {
        font-size: 14px;
        width: 26px;
        height: 26px;
    }


    .about-zizhi .about-zizhi-text {
        margin-top: 10px;
    }

    .about-zizhi .model-title {
        font-size: 18px;
    }

    .about-zizhi-item {
        width: calc(100% / 2);
        margin-bottom: 5px;
    }

    .about-zizhi-item p {
        width: 65%;
        -webkit-line-clamp: 2;
    }

    .about-zizhi-item-icon {
        height: 45px;
    }

    .about-zizhi-item:nth-child(-n+3) {
        margin-bottom: 20px;
        width: calc((100% - 24px) / 3);
        margin-right: 12px;
    }

    .about-licheng-swiper-item-c {
        padding: 15px;
    }

    /****************************************************************************
    * 联系我们
    */
    .join-item {
        padding: 10px;
    }

    .join-more i {
        font-size: 14px;
        margin-left: 6px;
    }

    .join-more div {
        padding: 2px 20px;
        font-size: 12px;
    }

    .recruit-lable {
        display: flex;
        flex-direction: column;
    }

    .contact-form-item {

        width: 100%;

    }

    .service-cy-name {
        font-size: 12px;
    }

    .service-cy-xian {
        margin: 5px 0;
    }

}