@charset "utf-8";

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: none;
    max-height: 100%;
    scroll-behavior: smooth;
}

body {
    color: #333;
    font-size: 16px;
    overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
    font-family: pingfang SC,
        helvetica neue,
        arial,
        hiragino sans gb,
        microsoft yahei ui,
        microsoft yahei,
        simsun,
        sans-serif !important;
}

body,
p,
h1,
ul,
li,
input,
img,
figure,
h3,
h1,
h2,
h4,
h5,
h6,
dl,
dd,
dt {
    margin: 0;
    padding: 0;
}

input[type="text"],
input[type="password"],
input[type="submit"],
input[type="reset"],
input[type="button"],
textarea {
    -webkit-appearance: none;
}


address,
cite,
dfn,
em,
var,
i {
    font-style: normal;
}

code,
kbd,
pre,
samp {
    font-family: "Poppins", Sans-serif
}

small {
    font-size: 10px;
}

ul,
ol {
    list-style: none;
}

sub {
    bottom: 0
}

a {
    text-decoration: none;
    color: #333
}

a:hover {
    color: #0093fe;
    text-decoration: none;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

abbr[title] {
    border-bottom: 1px dotted;
    cursor: footer-help;
}

legend {
    color: #000;
}

fieldset,
img {
    border: 0;
    max-width: 100%;
}

a img {
    vertical-align: text-bottom;
}

:focus {
    outline: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical;
}

button,
input,
select,
textarea {
    font-size: 100%;
}

button,
input,
select {
    vertical-align: middle;
}

/* 更改输入框的 placeholder 文本颜色 */
input::placeholder,
textarea::placeholder {
    color: #bababa
        /* 或者你想要的任何颜色值 */
}

button {
    cursor: pointer;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,
th {
    text-align: left;
}

.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.text-blue {
    color: #0093fe
}

.text-grey666 {
    color: #666;
}

.text-grey999 {
    color: #999;
}

.text-white {
    color: #fff
}

.bg-blue {
    background: #0093FE;
}

.bg-green {
    background: #7BCF5C;
}

.bg-grey {
    background: #f7f7f7;
}

.text-capital {
    text-transform: uppercase
}

.arial {
    font-family: Arial, Helvetica, sans-serif;
}

.lh180 {
    line-height: 180%;
}

.lh200 {
    line-height: 200%;
}

.lh220 {
    line-height: 220%;
}

.btn-gradient {
    background: linear-gradient(269deg, #0093FE, #7BCF5C);
    border-radius: 30px;
    color: #fff;
    padding: 10px 35px;
    transition: .5s;
    display: inline-block;
    font-size: 18px;
}

.btn-gradient:hover {
    background: linear-gradient(269deg, #7BCF5C, #0093FE);
    color: #fff;
}

/**************滚动条样式**********/

::-webkit-scrollbar {
    width: 10px;
    height: 1px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .3);
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: 0 0 .3125rem rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, .1);
}

/**************框架公用样式**********/

.photo img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.photo:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.photo em {
    display: block;
    overflow: hidden;
}

.iconfont,
.csiconfont,
.cseiconfont {
    font-size: inherit;
}

.container-fluid {
    max-width: 1230px;
    padding-left: 15px;
    padding-right: 15px;
}

header {
    position: fixed;
    width: 100%;
    z-index: 9;
}

header.fixednav {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, .05);
}

header .logo img {
    width: 154px;
    height: 36px;
}

header .mask {
    position: absolute;
    width: 100vw;
    height: 63px;
    z-index: -1;
    left: 0;
    top: 0;
    background-color: #fff;
    transform-origin: 0 0;
    transform: scaleY(.001);
    pointer-events: none;
    transition: transform .5s cubic-bezier(.25, .74, .22, .99);
    border-bottom: 1px solid #eee;
}

header.active .mask {
    pointer-events: auto;
    transform: scaleY(1);
}


header .header-tel,
header .header-language .btn {
    font-size: 20px;
}

header .header-language .btn:hover {
    cursor: pointer;
}

header .btn-gradient {
    padding: 6px 20px;
}

.nav li>a {
    height: 63px;
    line-height: 63px;
    margin: 0 20px;
    font-size: 18px;
    display: block;
    position: relative;
}

.nav li>a::before {
    content: '';
    height: 2px;
    background: #0093FE;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .5s;
}

.nav li>a:hover::before,
.nav li>a.current::before {
    width: 100%;
}

.nav li .nav-list {
    display: none;
}

.nav li:hover>a,
.nav li a.current {
    color: #0093FE;
    font-weight: bolder;
}

.nav li:hover .nav-list {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 63px;
    padding: 40px 0;
    width: 100%;
    background: #fff;
    animation: fadeInUp .5s .1s ease both;
    -webkit-animation: fadeInUp .5s .1s ease both;
}

.nav li:hover .nav-list .tabbtn-dz {
    width: 240px;
    border-right: 1px solid #eee;
    padding-right: 30px;
}

.nav li:hover .nav-list .tabbtn-dz .tabbtn-link {
    background: linear-gradient(269deg, #0093FE, #7BCF5C);
    color: #fff;
    padding: 15px 20px;
    border-radius: 5px;
}

.nav li:hover .nav-list .tabbtn-dz .tabbtn-link a {
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    padding: 5px 20px;
    transition: .3s;
}

.nav li:hover .nav-list .tabbtn-dz .tabbtn-link a:hover {
    background: #fff;
    color: #333;
}

.nav li:hover .nav-list .tabbtn li {
    margin-bottom: 5px;
    padding: 8px 20px;
    cursor: pointer;
}

.nav li:hover .nav-list .tabbtn li::before {
    content: '';
    height: 20px;
    width: 4px;
    background: #0093fe;
    display: inline-block;
    border-radius: 5px;
    vertical-align: middle;
    margin-right: 10px;
}

.nav li:hover .nav-list .tabbtn li.current {
    background: rgba(11, 150, 254, .2);
    color: #0093FE;
}

.nav li:hover .nav-list .tabcon {
    width: calc(100% - 280px);
}

.nav li:hover .nav-list .tabcon>div {
    gap: 2%;
}

.nav li:hover .nav-list .tabcon>div a {
    width: 32%;
    display: block;
    margin-bottom: 30px;
}

.nav li:hover .nav-list .tabcon>div a i {
    font-size: 20px;
}

.nav li .shuzihua-nav figure {
    display: flex;
    align-items: center;
}

.nav li .shuzihua-nav figure span {
    width: 52px;
    height: 45px;
    line-height: 45px;
    background: #cce9ff;
    border-radius: 5px;
    text-align: center;
    margin-right: 10px;
    font-size: 30px;
}

.nav li .shuzihua-nav figure section h6 {
    font-weight: bolder;
}

.nav li .shuzihua-nav figure section p {
    font-size: 14px;
    margin-top: 2px;
}

/**************手机导航**********/

.sp_nav,
.sjj_nav {
    display: none;
}

.sp_nav {
    width: 30px;
    position: absolute;
    top: 16px;
    right: 15px;
    cursor: pointer;
    color: #f333;
    z-index: 999
}


.sp_nav span {
    display: block;
    width: 30px;
    height: 2px;
    position: absolute;
    transition: all ease 0.35s
}

.sp_nav span {
    background: #333;
}

.sp_nav_se span {
    width: 24px;
    background: #fff;
}

.sp_nav span:nth-of-type(1) {
    top: 0px
}

.sp_nav span:nth-of-type(2) {
    top: 8px
}

.sp_nav span:nth-of-type(3) {
    top: 16px
}

.sp_nav_se span:nth-of-type(1) {
    top: 20px;
    transform: rotate(45deg)
}

.sp_nav_se span:nth-of-type(2) {
    width: 0
}

.sp_nav_se span:nth-of-type(3) {
    top: 20px;
    transform: rotate(-45deg)
}

.sjj_nav {
    position: fixed;
    z-index: 9;
    width: 100%;
    height: 100vh;
    line-height: 40px;
    top: -120vh;
    left: 0;
    right: 0;
    overflow: auto;
    overflow-x: hidden;
    transition: top ease 0.35s;
    margin: 0 auto
}

.nav_show {
    top: 0;
    padding: 60px 30px;
    background: #333
}

.sjj_nav>ul>li:first-child {
    overflow: hidden;
    border-top: 0
}

.sjj_nav a.sjj_nav_link {
    width: 100%;
    display: block;
}

.sjj_nav ul li i {
    position: absolute;
    right: 0px;
    top: 0;
    color: rgba(255, 255, 255, .5);
    transform: rotate(0);
    transition: all ease 0.35s
}

.sjj_nav ul li .sjj_nav_i_se+i {
    transform: rotate(90deg)
}

.sjj_nav ul li {
    position: relative;
    line-height: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.sjj_nav ul li ul {
    display: none
}

.sjj_nav ul li a {
    color: #ccc;
    display: block;
}

.sjj_nav ul li li {
    margin-left: 20px;
}

.sjj_nav ul li li:last-child {
    border-bottom: none;
}

.sjj_nav ul li ul li a {
    color: #999;
    text-align: left;
}

.sjj_nav ul li i svg {
    width: 20px;
    height: 20px;
    fill: #555;
}

.sjj_nav ul li .sjj_nav_i_se svg {
    fill: #699af1
}

.sjj_nav ul li ul li>ul {
    margin-left: 10px
}


/**************banner**********/


.banner .swiper-slide .swiper-slide_text {
    width: 60%;
    height: 750px;
    position: relative;
    z-index: 5;
}

.banner .swiper-slide .swiper-slide_text h1 {
    position: relative;
    font-size: 50px;
}

.banner .swiper-slide .swiper-slide_text b {
    width: 80px;
    height: 3px;
    background: rgb(0, 147, 254, .2);
    display: block;
}

.banner .swiper-slide .swiper-slide_text p {
    font-size: 24px;
    line-height: 45px;
}

.banner .swiper-pagination-bullet {
    background-color: #fff;
    width: 15px;
    height: 4px;
    opacity: .6;
    border-radius: 2px
}

.banner .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    background-color: #0093FE;
}

.project-name {
    padding-bottom: 60px;
}

.project-name h1 {
    margin-bottom: 15px;
}

.project-name p {
    font-size: 18px;
}

.page-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.page-section1 {
    background: url(../images/bg1.jpg) no-repeat;
    background-size: cover;
}

.page-section1 li {
    width: 23.5%;
    text-align: center;
    background: #fff;
    padding: 50px 20px;
    line-height: 30px;
    border-radius: 5px;
    transition: .5s;
    cursor: pointer;
}

.page-section1 li:hover {
    margin-top: -20px;
}

.page-section2 {
    background: url(../images/bg2.jpg) no-repeat;
    background-size: cover;
}

.page-section2 .tabs {
    border-bottom: 1px solid #eee;
    margin-bottom: 35px;
}

.page-section2 .tabs a {
    padding-bottom: 20px;
    font-size: 18px;
    font-weight: bolder;
    color: #666;
}

.page-section2 .tabs a i {
    font-weight: normal;
    font-size: 22px;
    vertical-align: middle;
}

.page-section2 .tabs a.active {
    border-bottom: 3px solid #0093FE;
    color: #0093FE;
}

.page-section2 .swiper-slide {
    padding: 10px;
}

.page-section2 .h-pro-list {
    padding: 40px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .05);
    background: #fff;
}

.page-section2 .h-pro-list section,
.page-section2 .h-pro-list em {
    width: 46%;
}

.page-section2 .h-pro-list section p {
    margin-top: 20px;
    line-height: 200%;
    word-break: break-all;
}

.page-section2 .swiper-container-tabs .h-pro-list p {
    min-height: 260px;
}

.page-section2 .swiper-container-tabs .ai-list p {
    min-height: inherit;
}

.page-section3 ul {
    gap: 2%;
}

.page-section3 li {
    width: 32%;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
}

.page-section3 li section {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(255, 255, 255, 0.01), rgba(0, 0, 0, 0.9));
    box-shadow: 0px 0px 10px 0px rgba(6, 0, 1, 0.04);
    position: absolute;
    height: 100%;
    z-index: 5;
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 50px 30px;
}

.page-section3 li section p {
    position: absolute;
    bottom: 30px;
    left: 0;
    padding: 0 30px;
    line-height: 28px;
}

.page-section3 li em {
    z-index: 1;
}

.page-section4 {
    background: url(../images/bg3.jpg) no-repeat;
    background-size: cover;
}

.page-section4 .tabs-why {
    font-size: 20px;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
    padding: 5px;
}

.page-section4 .tabs-why a {
    width: 33.33%;
    padding: 20px 0;
    font-weight: bolder;
    border-radius: 50px;
}

.page-section4 .tabs-why a.active {
    background: #0093FE;
    color: #fff;
}

.page-section4 .swiper-container-tabs-why .swiper-slide {
    height: 0;
}

.page-section4 .swiper-container-tabs-why .swiper-wrapper,
.page-section4 .swiper-container-tabs-why .swiper-slide-active {
    height: 100%;
}

.page-section5 {
    background: url(../images/bg4.jpg) no-repeat;
    background-size: cover;
}

.page-section5 .news-left {
    width: 44%;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}


.page-section5 .news-left section p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.page-section5 .news-left img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.page-section5 .news-right {
    width: 54%;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
    border-radius: 5px;
}

.page-section5 .news-right li {
    display: flex;
    justify-content: space-between;
}

.page-section5 .news-right li em {
    width: 115px;
    height: 115px;
    overflow: hidden;
    border-radius: 5px;
}

.page-section5 .news-right li em img {
    object-fit: cover;
    height: 100%;
}

.page-section5 .news-right li section {
    width: calc(100% - 140px);
}

.page-section5 .news-right li section p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.page-section5 .news-left b,
.page-section5 .news-right b {
    font-size: 18px;
}

.page-section5 .news-right li {
    margin-bottom: 20px;
}

.page-section5 .news-right li:last-child {
    margin-bottom: 0;
}

.page-ad {
    background: url(../images/bg5.jpg) no-repeat;
    background-size: cover;
    padding-top: 50px;
    padding-bottom: 50px;
}

.page-ad h2 {
    font-size: 35px;
}

.page-ad p {
    font-size: 18px;
}

.page-section10 {
    background: url(../images/bg7.jpg) no-repeat;
    background-size: cover;
}

.section-process ul:first-child {
    border-bottom: 2px solid #ccc;
}

.section-process ul:first-child li {
    margin: 0 80px;
    flex-direction: column-reverse;
}

.section-process ul:first-child li span {
    transform: rotate(180deg);
}

.section-process li {
    text-align: center;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-process li em {
    width: 35px;
    height: 35px;
    border: 5px solid #7BCF5C;
    background: #fff;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: 30px;
    margin-top: -20px;
}

.section-process ul:first-child li em {
    margin-bottom: -20px;
    margin-top: 30px;
}

.section-process li span {
    width: 0;
    height: 0;
    border-bottom: 20px solid #fff;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
}

.section-process li section {
    background: #fff;
    padding: 30px;
}

.section-process li section i {
    font-size: 80px;
}


.click-more {
    border-radius: 30px;
    padding: 10px 35px;
    transition: .5s;
    display: inline-block;
    font-size: 18px;
    border: 1px solid #ddd;
}

.click-more:hover {
    background: #7BCF5C;
    color: #fff;
    border: 1px solid #7BCF5C;
}

.click-more1 {
    border-radius: 30px;
    background: #7BCF5C;
    padding: 10px 35px;
    transition: .5s;
    display: inline-block;
    font-size: 18px;
    border: 1px solid #7BCF5C;
}

.click-more1:hover {
    background: none;
    color: #fff;
    border: 1px solid #fff;
}


footer {
    padding: 60px 0 0;
    background: #333;
}

footer a {
    color: #fff;
}

footer .footer-nav {
    width: 70%;
    line-height: 40px;
}

footer .footer-nav dt {
    font-size: 18px;
    margin-bottom: 10px;
}


footer .footer-nav dd a {
    color: rgba(255, 255, 255, .8);
}

footer .footer-nav dd a:hover {
    color: #0093FE;
}

footer .footer-contact h4 {
    font-size: 20px;
    margin-top: 10px;
}

footer .footer-contact a {
    color: #fff;
}

footer .footer-contact .footer-contact-ewm img {
    width: 120px;
    display: block;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 20px 0;
    margin-top: 50px;
}

.min-banner {
    height: 750px;
}

.min-banner h1 {
    font-size: 50px;
}

.min-banner h4 {
    width: 50%;
}

.min-banner p {
    font-size: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.min-banner p span {
    margin-right: 15px;
}

.min-banner p span i {
    font-weight: normal;
    font-size: 26px;
    vertical-align: middle;
}

.main-content {
    font-size: 18px;
}

.page-section6 li {
    width: 32%;
}

.page-section7 {
    background: url(../images/bg6.jpg) no-repeat;
    background-size: cover;
    padding-bottom: 300px;
}

.page-section7 li {
    background: #fff;
    border-radius: 5px;
    width: 22.5%;
    text-align: center;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: .5s;
}

.page-section7 li h5 {
    font-weight: bolder;
    margin-top: 20px;
}

.page-section7 li span {
    width: 130px;
    height: 130px;
    line-height: 130px;
    border: 2px solid #0093FE;
    border-radius: 50%;
    display: block;
    font-size: 50px;
}

.page-section7 li:hover {
    margin-top: -20px;
}

.page-section8 .about-contact {
    width: 42%;
}

.page-section8 .contact-map {
    width: 54%;
}

.page-section8 .about-contact h2 {
    font-size: 30px;
    margin-bottom: 60px;
}

.page-section8 .about-contact p {
    margin-top: 50px;
    font-size: 18px;
    display: flex;
}

.page-section8 .about-contact p span {
    width: 100px;
}

.page-section8 .about-contact p em {
    width: calc(100% - 120px);
}

.page-section8 .about-contact ul {
    padding-top: 80px;
}

.page-section8 .about-contact li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.page-section8 .about-contact li b {
    display: block;
}

.page-section8 .about-contact li span {
    width: 70px;
    height: 70px;
    display: block;
    text-align: center;
    color: #fff;
    font-size: 40px;
    border-radius: 5px;
    line-height: 70px;
}

.page-section8 .about-contact li section {
    width: calc(100% - 90px);
}

.page-section9 li {
    border-radius: 5px;
    width: 19%;
    background: linear-gradient(0deg, rgba(11, 150, 254, 0.02), rgba(255, 255, 255, 1), rgba(11,
                150, 254, 0.05));
    padding: 30px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    transition: .5s;
}

.page-section9 li:hover {
    margin-top: -20px;
}

.page-section9 li p {
    font-size: 14px;
    margin-bottom: 20px;
}

.page-section9 li img {
    width: 85px;
    float: right;
}

.page-section2 .ai-list section {
    width: 54%;
}

.page-section2 .ai-list em {
    width: 45%;
}

.page-section2 .ai-list section p {
    height: auto;
    margin-top: 15px;
}

.page-section2 .ai-list section ul {
    padding-top: 20px;
}

.page-section2 .ai-list section li {
    font-weight: bolder;
    padding-top: 20px;
}

.page-section11 {
    background: url(../images/bg8.jpg) center no-repeat;
    background-size: cover;
}

.page-section11 ul {
    width: 80%;
}

.page-section11 li {
    background: linear-gradient(0deg, #edf7ff, #fff, #f4faff);
    padding: 30px 30px 50px;
    width: 32%;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: .5s;
}

.page-section11 li:hover {
    margin-top: -20px;
}

.news-banner-list .swiper-slide em {
    width: 46%;
    border-radius: 5px;
    overflow: hidden;
}

.news-banner-list .swiper-slide em img {
    width: 100%;
}

.news-banner-list .swiper-slide figure {
    width: 50%;
}

.news-banner-list .swiper-slide figure h2 {
    line-height: 42px;
}

.news-banner-list .swiper-slide figure section {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.news-banner-list .swiper-pagination {
    text-align: right;
}

.news-list .news-menu {
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
}

.news-list .news-menu a {
    font-size: 24px;
    font-weight: bolder;
    margin-right: 20px;
    padding-bottom: 20px;
    display: inline-block;
    border-bottom: 3px solid #f7f7f7;
}

.news-list .news-menu a:hover,
.news-list .news-menu a.current {
    border-bottom: 3px solid #0b96fe;
    color: #0093FE;
}

.news-list li {
    background: #fff;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.news-list li p {
    margin: 20px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-list li em {
    width: 215px;
    height: 180px;
    border-radius: 5px;
}

.news-list li em img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-list li figure {
    width: calc(100% - 240px);
}

.breadcrumb-list {
    padding: 90px 0 30px;
}

.show-main .show-main-left {
    width: calc(100% - 320px);
    padding: 30px;
    border-radius: 5px;
}

.show-main .latest-news {
    width: 290px;
    padding: 20px;
    border-radius: 5px;
}

.show-main .latest-news li {
    margin-bottom: 20px;
}

.show-main .latest-news li h5 {
    font-size: 18px;
}

.show-main .latest-news li p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.show-main .latest-news li em {
    border-radius: 5px;
}

.show-main .latest-news li em img {
    width: 100%;
    display: block;
}

.next-list {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 80px;
}

.next-list p span {
    font-weight: bolder;
}

.pro-service-menu {
    font-size: 18px;
    border-bottom: 1px solid #eee;
    font-weight: bolder;
}

.pro-service-menu li+li {
    margin-left: 40px;
}

.pro-service-menu li a {
    padding: 20px 0;
    display: block;
}

.pro-service-menu li a:hover,
.pro-service-menu li a.current {
    color: #0093FE;
    position: relative;
}

.pro-service-menu li a:hover::after,
.pro-service-menu li a.current::after {
    content: '';
    height: 2px;
    width: 100%;
    background: #0093FE;
    display: block;
    position: absolute;
    bottom: 0;
}

.pro-service-menu .dropdown {
    display: none;
}

.pro-service-menu.fixednav {
    top: 63px;
    position: fixed;
    z-index: 5;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.page-section12 {
    background: url(../images/bg12.jpg) no-repeat;
    background-size: cover;
}

.function-list {
    padding-top: 60px;
    padding-bottom: 60px;
}

.function-list ul {
    max-width: 44%;
}

.function-list ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.function-list ul li i {
    font-size: 24px;
    color: #0093FE;
}

.function-list ul li section {
    padding-left: 20px;
}

.function-list ul li section p {
    margin-top: 5px;
}

.function-list em {
    width: 54%;
}

.page-section13 {
    background: url(../images/bg10.jpg) no-repeat;
    background-size: cover;
}

.page-section13 ul {
    gap: 2%;
}

.page-section13 li {
    display: flex;
    justify-content: space-between;
    width: 32%;
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 35px 20px;
    background: rgba(0, 0, 0, .2);
    margin-bottom: 30px;
    transition: .5s;
}

.page-section13 li:hover {
    margin-top: -20px;
}

.page-section13 li span {
    width: 95px;
    height: 95px;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 50px;
}

.page-section13 li section {
    width: calc(100% - 110px);
}

.page-section13 li section p {
    font-size: 14px;
}

.page-section14 {
    background: url(../images/bg11.jpg) no-repeat;
    background-size: cover;
}

.page-section14 li {
    width: 23.5%;
    background: #fff;
    padding: 50px 30px;
    border-radius: 5px;
    margin-bottom: 25px;
    transition: .5s;
}

.page-section14 li:hover {
    margin-top: -20px;
}

.page-section14 li i {
    font-size: 90px;
}

.page-section15 li {
    width: 32%;
    background: #fff;
}

.page-section15 li section {
    padding: 25px;
}

.page-section15 li section h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

#allmap {
    width: 100%;
    height: 100%;
}

#allmap img {
    max-width: initial;
}


.modal-open {
    overflow: inherit;
    padding: 0 !important
}

.modal-body {
    max-height: calc(100vh - 240px);
    overflow-y: auto;
    padding: 0 40px 40px 40px;
}

.modal-content {
    border-radius: 15px;
    border: 0;
}

.modal-dialog {
    max-width: 1060px;
    width: 100%;
    top: 50%;
    left: 50%;
    margin: inherit;
    position: absolute;
    transform: translate(-50%, -50%) !important;
}

.message-name {
    border-bottom: 1px solid #eee;
}

.message-name img {
    width: 120px;
}

.message-name h3 {
    border-left: 1px solid #eee;
    padding-left: 15px;
    margin-left: 15px;
}

.modal-header {
    border: 0;
    padding: 10px;
}

.modal-body .message-content {
    padding: 40px;
    border-radius: 15px;
    width: 65%;
}

.modal-body .message-content li {
    position: relative;
    margin-top: 30px;
}

.modal-body .message-content li i {
    position: absolute;
    left: 20px;
    font-size: 30px;
    top: 12px;
}

.modal-body .message-content li input {
    padding-left: 70px;
    height: 70px;
    font-size: 18px;
}

.modal-body .message-content li button {
    height: 70px;
    font-size: 20px;
}

.modal-body .message-contact {
    width: 25%;
    padding: 30px;
    border-radius: 15px;
}

.modal-body .message-contact img {
    width: 100%;
}

.modal-body .message-contact section {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    margin-top: 20px;
}

.modal-body i.icon-shangwuhezuo {
    font-size: 35px;
}


.online-list {
    position: fixed;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 60px;
}

.online-list figure {
    padding: 10px 5px;
    border-radius: 10px;
}

.online-list figure span {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.online-list figure h5 {
    letter-spacing: 2px;
    font-size: 16px;
}

.online-list figure span i {
    font-size: 24px;
}

.online-list li {
    margin: 8px 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 5px;
    padding: 2px 2px 5px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .1);
    cursor: pointer;
    transition: .5s;
    position: relative;
}

.online-list li i {
    font-size: 24px;
    color: #0093FE;
}

.online-list li:hover {
    background: #0093FE;
    color: #fff;
}

.online-list li:hover i {
    color: #fff;
}


.online-list li span {
    font-size: 12px;
    line-height: 18px;
}

.online-list li section {
    width: 220px;
    position: absolute;
    right: -400%;
    background: #0093FE;
    color: #fff;
    height: calc(100% + 6px);
    transition: .5s;
    text-align: left;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
}

.online-list li section i {
    font-size: 45px;
}

.online-list li:hover section {
    right: 0;
}

.online-list li .wx-ewm {
    display: none;
    position: absolute;
    right: 80px;
    top: -30px;
    width: 150px;
    height: 150px;
    background: #0093FE;
    padding: 10px;
    border-radius: 10px;
}

.online-list li .wx-ewm em {
    width: 0;
    height: 0;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #0093FE;
    border-top: 15px solid transparent;
    display: inline-block;
    position: absolute;
    right: -15px;
    top: 40%;
}

.online-list li .wx-ewm img {
    width: 100%;
}

.online-list li:hover .wx-ewm {
    display: block;
}

@media screen and (max-width:1600px) {
    .modal-body {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        padding: 0 40px 40px 40px;
    }
}

@media screen and (max-width:1400px) {
    .modal-body .message-content li {
        margin-top: 15px;
    }

    .modal-body .message-content li input {
        padding-left: 60px;
    }

    .modal-body .message-content li input,
    .modal-body .message-content li button {
        height: 55px;
    }

    .modal-body .message-content li i {
        position: absolute;
        left: 20px;
        font-size: 24px;
        top: 8px;
    }

    .message-name h2 {
        font-size: 28px;
    }

    .message-name h3 {
        font-size: 24px;
    }

    .message-name img {
        width: 120px;
    }
}

@media screen and (max-width:767px) {

    .sp_nav,
    .sjj_nav {
        display: block
    }

    .nav,
    header .header-tel span,
    header .btn-gradient,
    .online-list,
    .page-section5 .news-right li section p,
    .footer-contact,
    .message-name h3,
    .modal-body .message-contact,
    .modal-body i.icon-shangwuhezuo,
    .show-main .latest-news {
        display: none !important;
    }

    header .logo img {
        height: 24px;
        width: auto;
    }

    .header-language {
        margin-right: 50px !important;
    }

    .header-language .btn {
        padding-left: 0;
        padding-right: 0;
    }

    .dropdown-item {
        padding-left: 15px;
        padding-right: 15px;
    }

    header .dropdown-menu.show {
        left: 0;
        width: 100px;
    }

    header .mask {
        height: 51px;
    }

    .btn-gradient,
    .click-more,
    .click-more1 {
        padding: 6px 25px;
        font-size: 16px;
    }

    .container-fluid,
    .banner .swiper-slide .swiper-slide_text,
    .page-section1 li,
    .page-section2 .h-pro-list section,
    .page-section2 .h-pro-list em,
    .page-section3 li,
    .page-section5 .news-left,
    .page-section5 .news-right,
    footer .footer-nav,
    .modal-body .message-content,
    .page-section8 .about-contact,
    .page-section8 .contact-map,
    .page-section9 li,
    .page-section11 ul,
    .page-section11 li,
    .news-banner-list .swiper-slide em,
    .news-banner-list .swiper-slide figure,
    .news-list li em,
    .news-list li figure,
    .show-main .show-main-left,
    .function-list em,
    .page-section13 li,
    .page-section15 li,
    .function-list ul,
    .min-banner h4 {
        width: 100% !important;
        max-width: 100%;
    }

    .page-section5 .news-left img,
    .min-news-banner {
        height: auto !important;
    }

    .banner .swiper-slide .swiper-slide_text h1,
    header .header-tel,
    header .header-language .btn,
    .page-ad h2,
    .project-name h1,
    h2,
    .min-banner h1,
    .page-section8 .about-contact h2,
    .page-section2 .h-pro-list section h3 {
        font-size: 24px;
    }

    h4,
    .min-banner p span i,
    .news-list .news-menu a,
    .page-section9 li h6 {
        font-size: 18px;
    }

    .banner .swiper-slide .swiper-slide_text p,
    .project-name p,
    .page-section4 .tabs-why,
    .page-section4 h5,
    .page-section5 .news-right b,
    .main-content,
    .page-section8 .about-contact p,
    .min-banner h4 {
        font-size: 16px;
    }

    footer .footer-nav dd,
    .min-banner p {
        font-size: 14px;
    }

    .banner .swiper-slide .swiper-slide_text {
        height: 50vh;
    }

    .banner .swiper-slide .swiper-slide_text p {
        line-height: 35px;
    }

    .page-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .project-name {
        padding-bottom: 40px;
    }

    .page-section1 li,
    .page-section3 li,
    .page-section5 .news-left,
    .page-section9 li,
    .page-section11 li,
    .news-list li em,
    .news-banner-list .swiper-slide em,
    .page-section13 li,
    .page-section15 li {
        margin-bottom: 15px;
    }

    .page-section2 .tabs,
    .page-section4 .tabs-why {
        overflow-x: auto;
        flex-wrap: nowrap;
        white-space: nowrap;
        justify-content: flex-start !important;
    }

    .page-section2 .tabs a,
    .page-section4 .tabs-why a {
        white-space: nowrap;
        width: auto;
        padding: 0 15px;
    }

    .page-section2 .swiper-slide {
        padding: 0;
    }

    .page-section2 .h-pro-list section {
        margin-bottom: 30px;
    }

    .page-section2 .swiper-container-tabs .h-pro-list p {
        min-height: auto;
        margin-bottom: 20px;
    }

    .page-section4 .tabs-why a {
        padding: 5px 10px;
    }

    .page-section4 h5 {
        line-height: 180%;
    }

    .page-section5 .news-left,
    .page-section2 .h-pro-list,
    .page-section5 .news-right,
    .news-list li,
    .show-main .show-main-left {
        padding: 15px;
    }

    .breadcrumb-list {
        padding: 70px 0 20px;
    }

    .page-section5 .news-right li section {
        width: calc(100% - 130px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .page-section5 .news-right li section div {
        font-size: 14px;
    }

    .modal-body {
        padding: 0 20px 20px;
    }

    .modal-body .message-content {
        padding: 20px;
    }

    .modal-body .message-content li input,
    .modal-body .message-content li button {
        height: 55px;
    }

    .modal-body .message-content li,
    .page-section7 li {
        margin-top: 15px;
    }

    .modal-body .message-content li i {
        font-size: 24px;
    }

    .message-name img {
        width: 120px;
    }

    .modal-body .message-content li input {
        padding-left: 50px;
    }

    .modal-body .message-content li i {
        top: 10px;
        left: 15px;
    }

    .pro-list.vh-100,
    .min-banner {
        height: 40vh;
    }

    .page-section7 li,
    .page-section14 li {
        width: 48%;
        padding: 20px 15px;
    }

    .page-section7 li span {
        width: 100px;
        height: 100px;
        line-height: 100px;
        font-size: 40px;
    }

    .page-section8 .about-contact h2 {
        margin-bottom: 30px;
    }

    .page-section8 .about-contact ul {
        padding-top: 0;
    }

    .page-section8 .about-contact p {
        margin-top: 15px;
    }

    .page-section8 .contact-map {
        padding-top: 30px;
    }

    .next-list {
        padding-bottom: 15px;
        margin-top: 30px;
    }

    .min-banner p,
    .news-list li p {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .min-news-banner {
        padding-top: 80px;
        padding-bottom: 50px;
    }


    .news-list .news-menu a {
        margin-right: 10px;
        padding-bottom: 15px;
    }

    .news-list li {
        flex-wrap: wrap;
    }

    .news-list li p {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .show-main-left h2 {
        line-height: 160%;
    }

    .pro-service-menu.fixednav {
        top: 51px;
    }

    footer {
        padding-top: 50px;
    }

    footer .footer-nav {
        text-align: left;
        line-height: inherit;
    }

    footer .footer-nav dl {
        margin-bottom: 15px;
        position: relative;
        line-height: 28px;
    }

    footer .footer-nav dd {
        display: inline-block;
    }

    footer .footer-nav dd a {
        padding: 0 10px 0 0;
    }

    footer .footer-nav dt {
        margin-bottom: 5px;
    }


    .footer-contact {
        margin: 60px auto 0;
    }

    .footer-copyright {
        padding: 15px 0;
    }

    .function-list {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .function-list h2 {
        text-align: left !important;
        margin-bottom: 30px !important;
    }

    .function-list ul li {
        margin-bottom: 20px;
    }

    .page-section13 li {
        padding: 20px;
    }
}