@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    color: #fff;
    text-decoration: none;
    font-family: "sy";
}
a:hover{color: #fff;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
    background: #000;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
video{
    width: 80%;
    height: 100%;
    object-fit: fill;
}
.navbar-toggler-icon{
    background-image: url(../../static/images/common/toggler-icon.png);
}
.menu-open .navbar-toggler-icon{
    background-image: url(../../static/images/common/toggler-close.png);
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
    transition-delay: 0.2s;
    width: 35px;
}
@font-face {
    font-family: "akz";
    src: url("../../static/fonts/akz.ttf") format("opentype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "sy";
    src: url("../../static/fonts/sy.ttf") format("opentype");
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: "sys";
    src: url("../../static/fonts/sys.ttf") format("opentype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "syRegular";
    src: url("../../static/fonts/syRegular.ttf") format("opentype");
    font-weight: normal;
    font-style: normal;
}



.navbar-collapse{
    align-items: initial;
}
.menu-open .navbar-collapse{
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    top: 63px;
    left: 0;
    padding: 0 15px;
}
.menu-open .nav{
    justify-content: space-between;
    margin-bottom: 30px;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row !important;
}
.menu-open .nav li {
    width: calc(33.3% - 10px);
    height: 75px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #101010;
    color: #CECECE;
    transition: initial !important;
}
.menu-open .nav li.nav-item span.nav-number{
    font-size: 16px;
    transition: initial !important;
}
.menu-open .nav-link{
    transition: initial !important;
}
/*侧边*/
.logo_content{
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 80px;
}
.logo{
    max-width: 122px;
    width: 100%;
}
.logo a{
    display: block;
    border: none;
}
.logo img {
    max-width: 100%;
    height: auto;
}
.main_brand{
    padding-top: 10px;
}
.main_brand li {
    font-size: 12px;
    color: #7F7E7E;
    line-height: 15px;
}
.sidebar {
     position: fixed;
     top: 0;
     bottom: 0;
     left: 4rem;
     z-index: 100; /* 确保侧边栏在其他内容之上 */
     padding: 30px 0 0; /* 顶部留出空间 */
 }

 .main-content {
    margin-left: 250px; /* 侧边栏宽度 */
}
 .nav-link {
     font-weight: 500;
     color: #fff;
     padding-left: 0;
     font-size: 18px;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
 }
 .nav {
    display: flex;
 }
 .nav li.nav-item{
    display: flex;
    align-items: center;
    height: 60px;
    transition: all 0.3s ease;
 }
 .nav li.nav-item span.nav-number{
    color: #878787;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    margin-right: 5px;
 }
 .nav li.nav-item span i{
    font-family: "akz";
    display: flex;
 }
 .nav li.nav-item.active a, .nav li.nav-item:hover a{
    color: #9000FF;
    font-size: 36px;
    transition: all 0.3s ease;
    font-weight: bold;
 }
 .nav li.nav-item:hover span i, .nav li.nav-item.active span i{
    color: #fff;
    font-size: 36px;
    transition: all 0.3s ease;
    font-weight: bold; 
   /* z-index: 999;*/
    position: relative;
 }
 .nav li.active span:before,.nav li.nav-item:hover span:before{
    display:inline-block;
    content:'';
}
.nav li#nav1.active span:before,.nav li#nav1:hover span:before{
    width:69px;
    height:67px;
    background:url(../../static/images/common/home_nav_icon.png) no-repeat;
    position:absolute;
    top: -21px;
    left: -12px;
}
.nav li#nav2.active span:before,.nav li#nav2:hover span:before{
    width:63px;
    height:67px;
    background:url(../../static/images/common/case_nav_icon.png) no-repeat;
    position:absolute;
    top: -15px;
    left: -10px;
}
.nav li#nav3.active span:before,.nav li#nav3:hover span:before{
    width:68px;
    height:64px;
    background:url(../../static/images/common/new_nav_icon.png) no-repeat;
    position:absolute;
    top: -16px;
    left: -14px;
}
.nav li#nav4.active span:before,.nav li#nav4:hover span:before{
    width:72px;
    height:69px;
    background:url(../../static/images/common/product_nav_icon.png) no-repeat;
    position:absolute;
    top: -11px;
    left: -12px;
}
.nav li#nav5.active span:before,.nav li#nav5:hover span:before{
    width:57px;
    height:73px;
    background:url(../../static/images/common/industry_nav_icon.png) no-repeat;
    position:absolute;
    top: -19px;
    left: -8px;
}
.nav li#nav6.active span:before,.nav li#nav6:hover span:before{
    width:68px;
    height:73px;
    background:url(../../static/images/common/service_nav_icon.png) no-repeat;
    position:absolute;
    top: -19px;
    left: -8px;
}
.nav li#nav7.active span:before,.nav li#nav7:hover span:before{
    width:64px;
    height:64px;
    background:url(../../static/images/common/about_nav_icon.png) no-repeat;
    position:absolute;
    top: -19px;
    left: -8px;
}


 .nav-phone{
    position: fixed;
    bottom: 30px;
 }
 .nav-phone>a{
    color: #9000ff;
    font-family: "akz";
 }
 .nav-phone>a:before {
    display: inline-block;
    content: '';
    width: 17px;
    height: 25px;
    background: url(../../static/images/common/mobile_icon.gif) no-repeat center center;
    margin-right: 5px;
}


.contactbox{
    width: 235px;
    background: #9000ff;
    border-radius: 20px;
    position: absolute;
    bottom: 40px;
    padding: 20px;
    display: none;
}
.contactbox dl dd{
    display: flex;
    margin-bottom: 16px;
}
.contactbox dl dd:last-child{
    margin-bottom: 0;
}
.contactbox dl dd i {
    display: flex;
}
.contactbox dl dd .icon1 {
    background: url(../../static/images/common/qq.png) no-repeat center;
    width: 24px;
    height: 25px;
}
.contactbox dl dd .icon2 {
    background: url(../../static/images/common/chat_icon.png) no-repeat center;
    width: 24px;
    height: 25px;
}
.contactbox dl dd .icon3{
    background: url(../../static/images/common/mail.png) no-repeat center;
    width: 24px;
    height: 20px;
}
.contactbox dl dd .bottom-contact{
    line-height: 22px;
    margin-left: 6px;
}
.contactbox dl dd .bottom-contact a {
    color: #fff;
}

.contactbox dl dd .bottom-contact label{
    display: block;
    cursor: pointer;
    color: #fff;
    font-family: "akz";
}
.contactbox dl dd .bottom-contact span{
    display: block;
    color: rgba(255,255,255,0.9);
}
 /*侧边*/


 /*主区域*/
 .main{
    margin-left: 10.66666667%; 
 }






 /*首页*/
/*banner*/
.HomeBan{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.HomeBan .swiper-container{
    width: 100%;
    height: 100vh;
}
.HomeBan .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
}

.banner_text{
    z-index: 99;
    color: #fff;
    text-align: right;
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 20px;
    bottom: 150px;
    padding: 15px;
}
    
.banner_text p{
    padding-top: 5px;
    display:block;
    display:block;
    text-shadow: 2px 4px 4px #333
}
.banner_text h2{
     color: #fff; 
     margin:0;
     padding-bottom: 20px;
     text-shadow: 2px 4px 4px #333;
}
.swiper-container-banner .swiper-pagination{
    display: none;
}

.father_box{
    width: 100%;
    max-width: 640px;
    position: absolute;
    bottom: 55px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.father_box .swiper-container_bb{
    margin: 0 auto;
    text-align: center;
    display: flex;
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    padding: 10px 10px;
    position: relative;
}
.father_box .swiper-container_bb .swiper-slide .img{
    width: 100%;
    height: 100%;
    border:0;
}
.father_box .swiper-container_bb .swiper-slide .img img{
    border: 1px solid rgba(255,255,255,0);
    width: calc(100% - 8px);
    height: 55px;
    border-radius: 10px;
}
.father_box .swiper-container_bb .swiper-slide.swiper-slide-thumb-active .img img{
    border: 1px solid #9100f9;
}
.father_box .swiper-slide.swiper-slide-thumb-active .img{
    transform: scale(1.1);
}


.index-cloum  .bg-image {
    border-radius: 40px !important;
}
.index-cloum .col a{
    font-family: "sy";
    font-weight: bold;
}
.bg-image .card-body .card-title{
    margin-bottom: 15px;
}

.index-cloum .col .card{
    position: relative;
}
.index-cloum .col .card-body{
    position: absolute;
    top:20px;
    left: 20px;
    padding: 0;
}

.home-title h2{
    margin-bottom: 99px;
    font-weight: bold;
    font-family: "sys";
}

.home-case{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home-case.home-title h2{
    display: block;
    width: 100%;
    margin-bottom: 100px;
    font-family: "sys";
}
.home-title h2 p{
    padding-top: 30px;
    font-weight: normal;
    color: #878787;
}
.home-case .custom-row-padding {
    width: 100%;
    display: flex;
    margin: 0;
    justify-content: space-between;
}
.home-case .custom-row-padding .col-md-6{
    margin-right: 3%;
    margin-bottom: 6%;
    width: 47%;
    padding: 0;
}
.home-case .custom-row-padding .col-md-6:nth-last-child(-n+2) {
    margin-bottom: 0;
}
.home-case .custom-row-padding .col-md-6:nth-child(even){
    margin-right:0;
}
.home-case .card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.home-case .card .card-body .card-title {
    font-weight: bold;
    margin-bottom: 15px;
}



.home-new .card {
    position: relative;
}
.home-new .card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    width: 100%;
}
.home-new .card .card-body .card-title {
    font-weight: bold;
    margin-bottom: 15px;
}


.button-container {
    text-align: center;
    margin-top: 80px;
}

.more-cases-button {
    display: inline-block;
    padding: 0 44px;
    height: 44px;
    line-height: 42px;
    border:1px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
    max-width: 170px;
    width: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 60px;
}

.home-title .card img{
    border-radius: 80px;
}
.home-new .card img{
    border-radius: 40px;
}
.bottom_contact{
    margin-top: 80px;
}
.bottom_contact img{
    border-radius: 72px;
}
.down-icon{
    position: absolute;
    width: 30px;
    height: 30px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    z-index: 99;
    background: url('../images/common/down_icon.png') no-repeat;
    background-size: 100%;
    animation: arrowDown 2s infinite;
}

@keyframes arrowDown {
    0% {
        bottom: 0;
        opacity: 1;
    }
    50% {
        bottom: 1%;
        opacity: 0.8;
    }
    100% {
        bottom: 3%;
        opacity: 0.2;
    }
}
 /*首页*/





.no-border-card {
    border: none;
}
.transparent-card{
    background-color: transparent;
}
.centered-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 425px;
}
.section-title{
    display: block;
    margin-bottom: 80px;
    font-family: "sys";
}
.b160{
    margin-bottom: 160px;
}
.b120{
    margin-bottom: 120px;
}





/*服务*/
.top-padding{
    padding-top: 160px !important;
}
.service .title{
    margin-bottom: 50px;
}
.service .title h1{
    font-family: "sys";
}
.service .title p{
    padding-top: 50px;
    line-height: 24px;
    color: #878787;
}
.Service_1 img{
    border-radius: 40px;
}
.Service_2 .mobile_service{
    display: none;
}
.Service_4 .card{
    background: rgba(255, 255, 255, 0.05);
    background-size: 100% 100%;
    padding: 30px 0;
    border-radius: 30px;
}
.Service_4 .card .card-body{
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.Service_4 .card span.numbered-label{
    padding-bottom: 10px;
    font-family: "akz";
}
.Service_4 .card .card-body .icon{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    height: 47px;
}
.Service_4 .card .card-body .card-img-top{
    max-width: 48px;
    width: 100%;
}
.Service_4 .card .card-body .card-text{
    text-align: center;
    line-height: 34px;
    color: #878787;
}
.Service_5 .row{
    display: flex;
    flex-wrap: wrap;
    gap: 50px 0;
}
.service_video #video{
    border-radius: 60px;
}
/*服务*/





/*产品*/
.banner{
    position: relative;
}
.banner img{
    position: relative;
    left: 3.66666667%;
}
.product header.title h2,.product header.title h1{
    font-family: "sys";
}
.product header.title p{
    line-height: 26px;
    color: #878787;
    padding-top: 50px;
}
.banner .position-absolute{
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    top: 12.2rem;
}
.banner .text_box .text{
    margin-bottom: 100px;
}
.banner .text_box .text h1{
    margin-bottom: 50px;
    font-weight: bold;
    font-family: "sys";
}
.banner .text_box .text .max-width-40{
    width: 56%;
    line-height: 30px;
    color: #878787;
}
.banner .text_box .text_button a{
    width: 160px;
    height: 54px;
    line-height: 54px;
    border: 1px solid #5e00a3;
    outline: none;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    padding: 0;
    margin: 0;
    color: #5e00a3;
    border-radius: 80px;
}
.banner .text_box .text_button a.ljzx_btn{
    background: #5e00a3;
    color: #fff;
    margin-right: 15px;
}
.Product-functional .card{
    position: relative;
}
.Product-functional .card img{
    border-radius: 40px;
}
.Product-functional .card-body{
    position: absolute;
    padding: 30px;
}
.Product-functional .card-body .card-title {
    margin-bottom: 20px;
}
.Product-functional .card-body .card-text{
    line-height: 26px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 2px 4px 4px #333;
}
.Product-evelopment .card{
    background: url('../images/pro/product developmentimage.png') no-repeat;
    position: relative;
    background-size: 100% 100%;
    border-radius: 40px;
}
.Product-evelopment .card:hover{
    background: url('../images/pro/product developmentimage_hover.png') no-repeat;
    background-size: 100% 100%;
}
.Product-evelopment .card i{
    display: block;
    width: 10rem;
    height: 10rem;
}
.Product-evelopment .card i.i_1 {
    background: url('../images/pro/3Dscene icon01.png') no-repeat;
    background-size: cover;
}
.Product-evelopment .card:hover i.i_1{
    background: url('../images/pro/3Dscene icon01_hover.png') no-repeat;
    background-size: cover;
} 
.Product-evelopment .card i.i_2 {
    background: url('../images/pro/Adaptive layout icon02.png') no-repeat;
    background-size: cover;
}
.Product-evelopment .card:hover i.i_2{
    background: url('../images/pro/Adaptive layout icon02_hover.png') no-repeat;
    background-size: cover;
} 
.Product-evelopment .card i.i_3 {
    background: url('../images/pro/Scene modular icon03.png') no-repeat;
    background-size: cover;
}
.Product-evelopment .card:hover i.i_3{
    background: url('../images/pro/Scene modular icon03_hover.png') no-repeat;
    background-size: cover;
} 
.Product-evelopment .card i.i_4 {
    background: url('../images/pro/Humancomputerinteractionicon04.png') no-repeat;
    background-size: cover;
}
.Product-evelopment .card:hover i.i_4{
    background: url('../images/pro/Humancomputerinteractionicon04_hover.png') no-repeat;
    background-size: cover;
} 
.Product-development .myVideo{
    border-radius: 40px;
}
.Product-evelopment .card-body{
    padding: 30px;
}
.Product-evelopment .card-body .card-title{
    padding-bottom: 30px;
}
.Product-evelopment .card-body .card-text{
    line-height: 26px;
}
.zhdl_bacground{
    overflow: hidden;
}
.zhdl_bacground .col{
    position: relative;
    overflow: hidden;
}
.zhdl_bacground .col .card-body{
    background: rgba(26, 32, 48, 0.6);
    padding: 25px 20px;
    border-radius: 40px;
}
.zhdl_bacground .col:after{
    display: inline-block;
    content: '';
    width: 100%;
    height: 100%;
    background: url('../images/pro/Decorative icons.png') no-repeat bottom right;
    position: absolute;
    right: 10px;
    bottom: 0;
}
.zhdl_bacground .col .card-body h4{
   margin-bottom: 24px;
   color: #e8f7ff;
}
.zhdl_bacground .col .card-body p{
    line-height: 24px;
    color: rgba(232, 247, 255, 0.8);
}
.application-scenarios .card{
    position: relative;
}
.application-scenarios .card img{
    width: 100%;
    height: 100%;
    border-radius: 40px;
}
.application-scenarios .card .card-body{
    width: 100%;
    position: absolute;
    bottom: 0;
}
.application-scenarios .card .card-body .card-title{
    text-shadow: 2px 4px 4px #333;
}
/*产品*/






/*行业*/
.power-grid-content .position-absolute>h1{
    font-weight: bold;
    margin-bottom: 8rem;
    font-family: "sys";
}
.power-grid-content .power-grid-text{
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-direction: column;
}
.power-grid-content .power-grid-text .power-grid-data{
    display: flex;
    padding-right: 5rem;
    margin-bottom: 5rem;
}
.power-grid-content .power-grid-text .power-grid-data dl{
    margin-right: 6rem;
}
.power-grid-content .power-grid-text .power-grid-data .stats-list dd span{
    font-weight: bold;
    font-family: "akz";
}
.power-grid-content .power-grid-text .power-grid-data .stats-list dt{
    padding-top: 5px;
    color: #878787;
}
.power-grid-content .power-grid-text .content{
    width: 50%;
    line-height: 26px;
}

.cooperating-company img{
    border-radius: 60px;
}
/*电网客户分布*/
.power-grid-customer-distribution .power-grid-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.power-grid-customer-distribution .power-grid-text h2 .section-title{
    margin-bottom: 3rem;
}
.power-grid-customer-distribution .power-grid-text h4{
    color: #fff;
    line-height: 40px;
    margin-bottom: 110px;
}
.power-grid-customer-distribution .power-grid-text p{
    color: #878787;
    line-height: 30px;
    width: 50%;
}
/*我们的优势*/
.advantage .custom-spacing .col {
    padding-left: 10px;
    padding-right: 10px;
}
.advantage .custom-spacing .col .card-body{
    padding: 45px 15px 74px;
}

.advantage .custom-spacing {
    margin-left: -10px;
    margin-right: -10px;
}

.advantage .row .col .card{
    border-radius: 40px;
    background: rgba(255,255,255,0.05);
}
.advantage .row .col .card .card-body i{
    display: flex;
    height: 74px;
    align-items: center;
}
.advantage .row .col .card .card-body i img{
    max-height: 100%;
    max-width: 100%;
}
.advantage .row .col .card .card-body .card-title{
    line-height: 33px;
    min-height: 64px;
    margin-bottom: 30px;
}
.advantage .row .col .card .card-body .card-text{
    line-height: 30px;
    color: #878787;
}
/*我们的服务*/
.service-section ul li{
    position: relative;
}
.service-section ul li img{
    width: 100%;
    border-radius: 40px;
}

.service-section ul li figcaption{
    position: absolute;
    top: 36px;
    left: 36px;
}
/*案例*/
.case-list ul li{
    margin-bottom: 100px;
}
.case-list ul li .case-item{
    display: flex;
    height: 65vh;
}
.case-list ul li .case-item.row{
    --bs-gutter-x: 10px;
}
.case-list ul li .case-item .power-content{
    height: 100%;
}
.case-list ul li .case-item .power-content .power-text{
    width: 100%;
    background: #9000FF;
    padding: 7%;
    height: 120px;
    margin-bottom: 10px;
    align-items: center;
    display: flex;
    border-radius: 40px 0 0 0;
;
}
.case-list ul li .case-item .power-content .case-title{
    display: flex;
    flex-direction: column;
    line-height: 36px;
    font-weight: bold;
}
.case-list ul li .case-item .power-content .case-subtitle{
    font-weight: normal;
    line-height: 24px;
    padding-top: 5px;
}

.case-list ul li .case-item .case-images{
    height: 100%;
}
.case-list ul li .case-item .case-images img {
     width: 100%;
     height: 100%;
     object-fit: fill;
     border-radius: 0 40px 40px 0;
 }
 .case-list ul li .case-item .power-img{
    width: 100%; 
    height: calc(100% - 130px);
}
.case-list ul li .case-item .power-img img{
    width: 100%;
    height:100%;
    border-radius: 0 0 0 40px;
}
/*行业*/





/*新闻 关于通用banner*/
.common-banner{
    position: relative;
}
.common-banner img{
    position: relative;
    left: 3.66666667%;   
}
.common-banner .common-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 160px !important;
}
.common-banner .common-text span{
    display: inline-block;
    padding-bottom: 30px;
    font-family: "sys";
}
.common-banner .common-text p{
    line-height: 28px;
    color: #878787;
}
.info-box{
    margin-top: 40px;
}


/*新闻 案例通用*/
.tablelist .card{
    position: relative;
}
.tablelist .card img{
    border-radius: 80px;
}
.tablelist .card .card-body{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.tablelist .card .card-body .card-title{
    padding-bottom: 5px;
    line-height: 30px;
}
.tablelist p.more-case{
    display: flex;
    justify-content: center;
    color: #878787;
}
.full-screen-container p img{
    width: 100%;
}

/*内页通用*/
.contact-box{
    width: 250px;
    background: #9000ff;
    position: absolute;
    top:40px;
    left: 40px;
    z-index: 999;
    border-radius: 40px;
}
.inner-page-content a{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}
.inner-page-content a span{
    display: block;
    text-align: center;
}
.inner-page-content a .inner-page-logo{
    width: 44%;
}
.inner-page-content a .group_2{
    padding: 37px 0;
}
.inner-page-content a .inner-page-tel{
    font-family: "akz";
}
.inner-page-content a .inner-page-tel:before {
    display: inline-block;
    content: '';
    width: 17px;
    height: 25px;
    background: url(../../static/images/common/mobile_icon2.gif) no-repeat center center;
    margin-right: 5px;
}


/*新闻*/
.new-list .card img{
    border-radius: 40px;
}
.new-list  .card .card-body{
    padding: 25px;
}
.new-info {
    width: 80%;
    margin: 0 auto;
    position: relative;
}
.new-info .clearfix{
    display: flex;
    align-items: flex-start;
}
.new-info .clearfix h2{
    font-family: "sys";
    margin-bottom: 49px;
    text-align: center;
}
.new-info .clearfix .float-start{
    padding: 0 3%;
}
.new-info .clearfix .float-start>p{
    display: flex;
    justify-content: center;
}
.new-info .clearfix .float-start>p span{
    display:flex;
    padding: 0 2rem;
    color: #878787;
}
.new-info .clearfix .float-start .brief{
    margin-top: 130px;
}
.new-info .clearfix .float-start .brief p{
    font-size: 18px;
    line-height: 60px;
    text-indent: 30px;
}
.new-info .m60{
    margin-bottom: 80px;
}
.new-info p img{
    width: 100%;
}
.new-info .clearfix .share-cont{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    top: inherit;
    right: 4%;
    position: fixed;
}
/*新闻*/


/*案例*/
.case-nav{
    overflow: hidden;
}
.nav-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin:0 -10px 0;
}
.case-nav .nav-container .nav-item {
    flex: 0 0 auto;
    min-width: calc(12.5% - 20px);
    margin: 0 10px;
    text-align: center;
    padding: 0 10px;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    border-radius: 20px;
    height: 42px;
    line-height: 42px;
    justify-content: center;
}
.case-nav .nav-container .nav-item:hover,.case-nav .nav-container .nav-item.active{
    background: #9000FF;
    border: 1px solid #9000FF;
}
.case-list{
    clear: both;
    overflow: hidden;
}
.case-list .clearfix{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 85px;
    padding-top: 178px;
}
.case-list .clearfix .text-content{
    display: flex;
}
.case-list .clearfix .text-content .number-text{
    margin-right: 24px;
}
.case-list .clearfix .text-content .number-text span{
    font-family: "akz";
}
.case-list .clearfix .berif{
    display: flex;
    flex-direction:column;
    justify-content: space-around;
}
.case-list .clearfix .berif p{
    line-height: 25px;
    color: #878787;
}
.case-list .custom-row-padding{
    margin-right: -50px;
    margin-left: -50px;
}
.case-list .tablelist{
    width: 100%;
    overflow: hidden;
}
.case-list .tablelist .row>*{
    padding-right:50px;
    padding-left:50px;
}
.case-list .row .col-md-6{
    margin-bottom: 100px;
}
.case-list .card-body{
    padding: 40px;
}
.case-info{
    width: 74%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    margin-right: 5rem;
}
.case-info .clearfix{
    margin-bottom: 130px;
}
.case-info .clearfix .top-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25)
}
.case-info .clearfix .title{
    display: flex;
}
.case-info .clearfix .title h2{
    font-family: "sys";
}
.case-info .clearfix .title .case-service-content{
    display: flex;
    align-items: self-end;
    height: 56px;
    margin-left: 46px;
}
.case-info .clearfix .title .case-service-content h4{
    color: #878787;
}
.case-info .clearfix .title .case-service-content p{
    color: #878787;
}
.case-info .clearfix .brief{
    margin-bottom: 45px;
    line-height: 30px;
}
.case-info .clearfix .case-service-berif p{
    color: #878787;
    line-height: 25px;
    font-family: "akz";
}
.case-info .clearfix .right {
    display: flex;
    right: 6rem;
    width: auto;
    padding-top: 40px;
    align-items: center;
}
.case-info .clearfix .right  a.close{
    display: flex;
    padding: 0;
}
.share{
    margin-right: 55px;
}
.case-info .clearfix .right .share .share-icon{
    display: block;
    width: 33px;
    height: 33px;
    cursor: pointer;
}
.close-box{
    width: 30px;
    height: 30px;
}
.close-box .goBack{
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}
.close-box .nar-close{
    width: 30px;
    height: 30px;
    cursor: pointer;
}


.mask{
    width: 100%;
    height: 100%;
    position: fixed;
    inset: 0px;
    margin: auto;
    background: rgba(0, 0, 0, 0.65);
    z-index: 99999;
    display: none;
}
#popup{
    width: 955px;
    height: 670px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100000;
    margin: auto;
    background: url(../../static/images/common/popup-image.png) no-repeat;
    display: none;
    padding: 0 50px;
    background-size: 100%;
}
/*案例*/







/*关于*/
.about-content h2{
    font-family: "sys";
    margin-bottom: 100px;
}
.our-ontroduction .about-banner{
    height: 100%;
    width: 100%;
}
.our-ontroduction .about-banner .banner-text {
    padding-top: 30px !important;
}
.our-ontroduction .about-banner .banner-text h1{
    font-family: "sys";
    font-weight: normal;
}
.our-ontroduction .about_cont{
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 42%;
    right: 158px;
    bottom: 5rem;
}
.our-ontroduction .about_cont h1{
    display: flex;
    flex-direction: column;
    font-weight: bold;
}
.our-ontroduction .about_cont p{
    line-height: 28px;
    text-indent: 32px;
    margin-bottom: 30px;
}
.our-ontroduction .about_cont p:last-child{
    margin-bottom: 0;
}
.our-ontroduction .pic img{
    height: 100%;
}

.data-display ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 120px 0;
    --bs-gutter-x: 10rem;
}
.data-display ul li{
    text-align: center;
   /* flex: 0 0 calc(25% - 20px); 
    width: auto;*/
}
.data-display ul li h4{
    font-family: "akz";
}
.data-display ul li p{
    color: #878787  !important;
    font-family: "akz";
}

.company-honors .swiper-slide{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 65px;
}

.company-video .video_box #video{
    border-radius: 60px;
}

.company-honors .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* 使图片在容器内完整显示并保持比例 */
}

.company-honors .swiper-pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.swiper-pagination-bullet{
    background: #9000ff !important;
    width: 16px;
    margin: 25px 5px;
}

.about_map .about_cont{
    position: relative;
}
.about_map .about_cont #container canvas{
    border-radius: 60px;
}
.about_cont .adre{
    width: 250px;
    background: #8F25F9;
    position: absolute;
    top: -16%;
    right: 40px;
    z-index: 9999;
    border-radius: 40px;
}

.info_card{
    width: 50%;
}
.info_card>div{
    color: #fff;
    line-height: 22px;
}
.tmap-zoom-control,.rotate-circle{
    display: none !important;
}
/*关于*/



/*底部*/
.bottom{
    width: 100%;
}
.bottom-1{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.bottom-1 .bottom-logo{
    display: flex;
    align-items: center;
}
.bottom-1 .bottom-logo a{
    width: 130px;
    margin-right: 12px;
}
.bottom-1 .bottom-logo a img{
    width: 100%;
}
.bottom-1 .bottom-logo span{
    font-family: "sys";
}
.bottom-1 .side-menu ul{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
}
.bottom-1 .side-menu ul li{
    position: relative;
    /*margin-left: 30px;*/
    width: 102px;
    display: flex;
    align-items: center;
}
.bottom-1 .side-menu ul li a{
    width: 72px;
    height: 72px;
    line-height: 72px;
    text-align: center;
    top: 0;
    bottom: 0;
    margin: auto;
    color: #F8F6FF;
    float: left;
    left: 0;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .3s;
}
.bottom-1 .side-menu li a span{
    display: block;
    width: 100%;
    height: 100%;
}
.bottom-1 .side-menu li a span.fa-dy{
    background: url('../../static/images/common/ss1.png') no-repeat center center;
    background-size: 100%;
}
.bottom-1 .side-menu li a span.fa-sph{
    background: url('../../static/images/common/ss2.png') no-repeat center center;
    background-size: 100%;
}
.bottom-1 .side-menu ul li a span.fa-zk{
    background: url('../../static/images/common/ss3.png') no-repeat center center;
    background-size: 100%;
}
.bottom-1 .side-menu li a span.fa-bz{
    background: url('../../static/images/common/ss4.png') no-repeat center center;
    background-size: 100%;
}

.bottom-1 .side-menu li .wxcode-img{
    position: absolute;
    left: 0;
    right: 0;
    top: 83px;
    z-index: 99;
}


.bottom-2{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;   
    padding: 50px 0;
}
.bottom-2 .foot-infor{
    display: flex;
    flex-wrap: wrap;
}
.bottom-2 .foot-infor .txt-infor{
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    flex: 0 0 auto;
    width: 33.33%;
}
.bottom-2 .foot-infor .txt-infor:first-child h4{
    justify-content: left;
}
.bottom-2 .foot-infor .txt-infor h4{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    color: #878787;
}
.bottom-2 .foot-infor .txt-infor dl{
    display: flex;
    margin-bottom: 30px;
    align-items: center;
    height: 22px;
}
.bottom-2 .foot-infor .txt-infor dl dt{
    margin-right: 10px;
}
.bottom-2 .foot-infor .txt-infor dl dd{
    color: #fff;
}
.bottom-2 .foot-infor .txt-infor dl dd a{
    color: #fff;
}

.bottom-2 .foot-infor .bottom-menu{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    width: 50%;
    margin: 0 auto;
}
.bottom-2 .foot-infor .bottom-menu li.menu-item{
    width: calc(50% - 5px);
    margin-bottom: 30px;
}
.Website_Map{
    display: flex;
    padding: 0;
    margin: 0;
    height: 40px;
    line-height: 40px;
}
.Website_Map a{
    color: #878787;
}
/*右边荣星*/
.bottom-2 .infor-wxcode{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.bottom-2 .infor-wxcode .bottom_logo{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 40px;
}
.bottom-2 .infor-wxcode .bottom_logo .logo-image{
    margin-right: 40px;
    width: 60px;
}
.bottom-2 .infor-wxcode .bottom_logo .logo-image img{
    width: 100%;
    height: 100%;
}
.bottom-2 .infor-wxcode .bottom_logo .logo-text{
    line-height: 25px;
}
.bottom-2 .infor-wxcode .bottom-button{
    height: 50px;
    line-height: 50px; 
    justify-content: flex-end;
    display: flex;
}
.bottom-2 .infor-wxcode .bottom-button a{
    width: 244px;
    padding: 0 20px;
    color: #FF5F01;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #181818;
    border-radius: 30px;
}
.bottom-2 .infor-wxcode .bottom-button a i.jt_icon{
    display: flex;
    width: 20px;
    height: 14px;
    background: url('../../static/images/common/jt_icon.png') no-repeat;
}
/*右边荣星*/


.bottomer{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 20px;
    margin-bottom: 20px;
}
.bottomer .copyright{
    display: flex;
    align-items: center;
}
.bottomer .copyright .bottom_icon{
    width: 16px;
    height: 16px;
    margin-right: 2px;
    display: flex;
    align-items: center;
}
.bottomer .copyright .bottom_icon img{
    width: 100%;
    height: 100%;
}
.bottomer .copyright .copyright-text a{
    color: #808080;
}


.gotop {
    width: 50px;
    height: 50px;
    display: block;
    background: url(../images/common/return.png) no-repeat;
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    z-index: 999;
    background-size: 100%;
}
/*底部*/





/*网站地图*/
.Detailmain {
    padding-left: 10%;
    padding-right: 10%;
}
.Artmain {
    padding: 30px 0;
}
.article-title {
    margin: 0 0 113px;
    font-size: 16px;
}
.article-title h2 {
    line-height: 1.25;
    font-weight: 600;
    font-family: "sys";
}
.article-content {
    font-size: 16px;
}
.article-content p {
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 2.5;
    /*text-align: justify;*/
    display: flex;
    flex-wrap: wrap;
}
.article-content p b a{
    color: #878787;
}
/*网站地图*/





/*所有内页二级导航*/
.fixed-subnav{
    width: 100%;
    position: fixed;
    display: flex;
    margin: 0;
    padding: 0;
    top: 0;
    z-index: 999;
}
.fixed-subnav .navbar-nav{
    width: 100%;
    --bs-nav-link-padding-y: 0;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 2rem 0;
}
.fixed-subnav.fixed-nav{
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
}
.fixed-subnav .navbar-nav li{
    display: flex;
    width: auto;
}
.fixed-subnav .navbar-nav li a{
    color: #fff;
    height: 40px;
    line-height: 40px;
}
.fixed-subnav .navbar-nav li:hover a,.fixed-subnav .navbar-nav li.active a{
    font-size: 28px;
    transition: all 0.2s;
    color: #9000FF;
}
/*所有内页二级导航*/
.mobile_pro_banner{
    display: none;
}
.container-fluid.pro_fluid{
    --bs-gutter-x: 1.5rem;
}
.pro_fluid .main {
    margin-left: 13.66666667%;
}






@media (max-width: 1400px) {
    .main{
        margin-left: 13.66666667%;
    }
    .banner img,.common-banner img{
        left: 0;
    }
    .product-banner .container.py-5{
        padding-top: 14rem !important;
    }
    .banner .text_box .text .max-width-40{
        width: 80%;
    }
    .power-grid-content .power-grid-text .power-grid-data{
        width: 100%;
    }
    .power-grid-content .power-grid-text .content{
        width: 100%;
    }
    .power-grid-content .position-absolute>h1{
        margin-bottom: 4rem;
    }

    

    .case-list ul li .case-item{
        height: auto;
    }
    .case-list ul li .case-item .case-images{
        width: 100%;
    }
    .case-list ul li .case-item .case-images img{
        border-radius: 0 0 20px 20px;
    }
    .case-list ul li .case-item .power-content{
        position: relative;
        width: 100%;
    }
    .case-list ul li .case-item .power-img{
        height: 100%;
        display: none;
    }
    .case-list ul li .case-item .power-img img{
        border-radius: 0 0 20px 20px;
    }
    .case-list ul li .case-item .power-content .power-text{
        padding: 20px;
        margin-bottom:0;
        border-radius: 20px 20px 0 0;
        height: auto;
    }
    .case-info{
        width: 100%;
        padding: 0 20px;
    }
    .new-info{
        width: 100%;
    }


    /*关于*/
    .our-ontroduction .banner-text h1{
        margin-bottom:0 !important;
        line-height: 35px;
    }
    .our-ontroduction .about_cont p{
        margin-bottom: 15px;
    }
    .our-ontroduction .about_cont{
        position: initial;
        width: 100%;
        margin-top: 0;
    }
    .data-display ul{
        --bs-gutter-x: 0rem;
    }
    .about_cont .adre{
        position: initial;
        width: 100%;
        height: 100%;
        justify-content: space-between;
        display: flex;
        padding: 0 20px;
        margin-bottom: 0;
    }
     /*关于*/

    .info_card>div{
        font-size: 12px;
    }

    .nav-link{
        font-weight: normal;
        font-size: 20px;
        padding: 0;
    }
    .nav li.nav-item span.nav-number{
        display: none;
    }
    .nav li.nav-item.active a, .nav li.nav-item:hover a{
        font-size: 22px;
    }

    .index-cloum{
        --bs-gutter-y: 1.5rem;
        --bs-gutter-x: 1.5rem;
    }
    .index-cloum .card-body .card-title{
        margin-bottom: 10px;
    }

     /*底部*/
    .bottom-1{
        justify-content: center;
        flex-direction: column;
        padding-bottom: 30px;
    }
    .bottom-1 .bottom-logo{
        margin-bottom: 40px;
    }
    .bottom-1 .bottom-logo a{
        width: 120px;
    }
    .bottom-1 .side-menu{
        width: 100%;
    }
    .bottom-1 .side-menu ul li{ 
        width: 25%;
        margin: 0;
        padding: 0;
    }
    .bottom-1 .side-menu ul li a{
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
    .bottom-2 .foot-infor{
        width: 100%;
        border-right:none;
    }
    .bottom-2 .foot-infor .txt-infor{
        width: 100%;
        margin-bottom: 30px;
    }
    .bottom-2 .foot-infor .txt-infor h4{
        justify-content: flex-start;
        margin-bottom: 30px;
        font-size: 18px;
    }
    .bottom-2 .foot-infor .txt-infor dl:last-child{
        margin-bottom:0;
    }
    .bottom-2 .foot-infor .txt-infor dl dt{
        margin-right: 4px;
    }
    .bottom-2 .foot-infor .txt-infor dl dt img{
        width: 19px;
    }
    .bottom-2 .foot-infor .bottom-menu{
        text-align: left;
        width: 100%;
        justify-content: flex-start;
    }
    .Website_Map{
        display: flex;
        align-items: center;
        background: none;
    }

    .bottom-2 .infor-wxcode{
        width: 100%;
        align-items: center;
        margin-top: 2rem;
    }
    .bottom-2 .infor-wxcode .bottom_logo .logo-image{
        margin-right: 15px;
        width: 46px;
    }
   /* .bottomer{
        padding-top: 0;
    }*/
    .bottomer .copyright{
        justify-content: flex-end;
        align-items: center;
    }
    .bottomer .copyright .copyright-text a{
        font-size: 14px;
    }
    .bottom-2 .foot-infor .bottom-menu li.menu-item{
        width: calc(29.3333% - 0px);
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #181818;
        color: #CECECE;
        margin: 2%;
        border-radius: 30px;
    }
    .bottom-2 .infor-wxcode .bottom_logo{
        margin-bottom: 20px;
    }
    /*底部*/
    .fixed-subnav .navbar-nav li:hover a,.fixed-subnav .navbar-nav li.active a{
        font-size: 16px;
    }
    .fixed-subnav .navbar-nav{
        justify-content: flex-start;
    }

    .inner-page-content{
        display: none;
    }

    .tablelist .card img{
        border-radius: 20px;
    }
}



@media (max-width: 1200px) {
    .main{
        width: 100%;
        margin-left: 0; 
     }
     .pro_fluid .main{
        margin-left: 0; 
     }
     .common-banner{
        left: 0;
     }
     .common-banner .common-text span{
        padding-bottom: 15px;
     }
     .container-fluid.pro_fluid,.container-fluid{
        --bs-gutter-x: 1.5rem;
     }
    
    .b160{
        margin-bottom: 50px;
    }
    .top-padding{
        padding-top: 50px !important;
        padding-bottom: 0 !important;
    }

    .product-banner .container.py-5{
        padding-top: 0rem !important;
        padding-bottom: 0 !important;
    }
    
    .tablelist .card .card-body .card-title{
        line-height: 1.3;
    }

    /*首页*/
    .HomeBan .swiper-container{
        height: auto;
    }
    .banner_text{
        left: 0;
        bottom: 10px;
        text-align: left;
    }
    .banner_text h2{
        padding-bottom: 7px;
    }
    .banner_text p{
        font-size: 14px;
        line-height: 20px;
    }
    .father_box{
        position: initial;
    }
    .father_box .swiper-container_bb .swiper-slide:last-child{
        margin-right: 0 !important;
    }
    .father_box .swiper-slide.swiper-slide-thumb-active .img{
        transform: scale(1);
    }
    .father_box .swiper-container_bb .swiper-slide .img img{
        width: 100%;
        height: auto;
    }
    .father_box .swiper-container_bb{
        display: none;
    }
    .swiper-container-banner .swiper-pagination{
        display: block;
    }
    .home-title h2{
        margin-bottom: 50px;
    }
    .home-case.home-title h2{
        margin-bottom: 50px;
        margin-left:0;
    }

    .home-case .col-md-6:last-child{
        margin-bottom: 0;
    }
    .home-case .card .card-body .card-title{
        margin-bottom: 10px;
    }
    .home-case .card .card-body{
        padding: 20px 15px;
    }
    .home-new .card .card-body{
        padding: 20px 15px;
    }
    .home-new .card .card-body .card-title{
        margin-bottom: 10px;
    }
    .button-container{
        margin-top: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .more-cases-button{
        padding: 0 45px;
        height: 40px;
        line-height: inherit;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .home-title .card img,.home-new .card img,.bottom_contact img,.Product-functional .card img,.Product-evelopment .card,
    .Product-development .myVideo,.zhdl_bacground .col .card-body,.application-scenarios .card img,.index-cloum .col .card,.cooperating-company img,
    .advantage .row .col .card,.service-section ul li img,.Service_1 img,.Service_4 .card,.company-video .video_box #video,.about_map .about_cont #container canvas{
        border-radius: 20px !important;
    }

    /*产品*/
    .fixed-subnav{
        position: relative;
        justify-content: center;
    }
    .banner img{
        left: 0;
    }
    .product-banner .position-absolute{
        padding: 0 0 50px 0 !important;
    }
    .banner .position-absolute{
        position: relative !important;
        top: 0;
    }
    .power-grid-content .position-absolute>h1{
        margin-bottom: 30px;
    }
    .fixed-subnav .navbar-nav{
        justify-content: flex-start;
        width: 100%;
        padding: 50px 0 30px;
    }
    .fixed-subnav .navbar-nav li{
        align-items: center;
        justify-content: center;
        width: 25%;
        padding: 0;
    }
    .fixed-subnav .navbar-nav li a{
        margin-right:0;
        height: 30px;
        line-height: 30px;
    }
    .banner>.pro_banner{
        display: none;
    }
    .mobile_pro_banner{
        display: block;
    }

    .mb-5{
        margin-bottom: 30px !important;
    }

    .banner .text_box .text h1{
        margin-bottom: 1.25rem;
    }
    .banner .text_box .text .max-width-40 {
        width: 100%;
        line-height: 20px;
    }
    .banner .text_box .text {
        margin-bottom: 1.5rem;
    }
    .banner .text_box .text_button a{
        width: 50%;
    }
    
        
    .product header.title p{
        line-height: 20px;
    }
    /*产品功能区域*/
    .Product-functional .card-body{
        padding: 15px;
    }
    .Product-functional .card-body .card-title{
        margin-bottom: 12px;
    }
    .Product-functional .card-body .card-text{
        line-height: 20px;
    }

    /*产品研发区域*/
    .Product-evelopment .card-body{
        padding: 15px;
    }
    .Product-evelopment .card-body .card-title {
        padding-bottom: 10px;
    }
    .Product-evelopment .card-body .card-text {
        line-height: 20px;
    }
    .Product-evelopment .card i{
        width: 80px;
        height: 80px;
    }
    
    /*产品优势区域*/
    .zhdl_bacground .col .card-body{
        padding: 15px;
    }
    /*应用场景区域*/
    .application-scenarios .card .card-body{
        padding: 0;
    }
    /*产品*/



    /*服务*/
    .service .title{
        margin-bottom: 30px;
    }
    .service .title p {
        padding-top:30px;
        line-height: 20px;
    }
    .Service_2 .mobile_service{
        display: block;
    }
    .Service_2 .pc_service{
        display: none;
    }
    .Service_4 .card .card-body .icon{
        height: 33px;
    }
    .Service_4 .g-4{
        --bs-gutter-x: 0.8rem;
        --bs-gutter-y: 0.8rem;
    }
    .Service_4 .card .card-body .card-img-top{
        max-width: 38px;
    }
    .Service_4 .card .card-body img{
        margin: 20px 0;
    }
    .centered-card{
        min-height: 367px;
    }
    .Service_4 .card .card-body .card-text{
        line-height: 26px;
    }
    .Service_5 .row{
        gap: 0;
    }
    .Service_5 .col{
        text-align: center;
        padding: 30px 0;
    }
    .Service_5 .col img{
        width: 6rem;
    }
    /*服务*/



    /*行业*/
    .power-grid-content .power-grid-text .content{
        width: 100%;
        padding-top:30px;
        padding-right: 0;
    }
    .power-grid-content .power-grid-text>h1{
        margin-bottom: 2rem;
    }
    .power-grid-content .power-grid-text .power-grid-data{
        width: 100%;
        padding-right: 0;
        margin-bottom: 0;
        justify-content: space-between;
    }
    .power-grid-content .power-grid-text .power-grid-data dl{
        margin-right:0;
    }
    

    .power-grid-customer-distribution .row{
        margin: 0;
    }
    .power-grid-customer-distribution .col-6{
        width: 100%;
        padding: 0
    }
    .power-grid-customer-distribution .power-grid-text h4,.power-grid-customer-distribution .power-grid-text p{
        line-height: 20px;
        width: 100%;
    }
    .power-grid-customer-distribution .power-grid-text h4,.power-grid-customer-distribution .power-grid-text h2 .section-title{
        margin-bottom: 30px;
    }

    .section-title{
        margin-bottom: 30px;
    }

    .advantage .custom-spacing .col .card-body{
        padding: 20px;
    }
    .advantage .row .col .card .card-body i{
        height: 46px;
    }
    .advantage .row .col .card .card-body .card-title{
        min-height: 36px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    .advantage .row .col .card .card-body .card-text{
        line-height: 20px;
    }
    .advantage .custom-spacing .col {
        padding-left: 5px;
        padding-right: 5px;
    }
    .advantage .custom-spacing {
        margin-left: -5px;
        margin-right: -5px;
    }
    .advantage .mb-4{
        margin-bottom: 0.8rem !important;
    }


    .service-section ul li figcaption{
        top: 10px;
        left: 20px;
    }
    .service-list .g-4{
        --bs-gutter-y: 1rem;
        --bs-gutter-x: 1rem;
    }
    .case-list ul li .case-item .power-content .case-title{
        line-height: 24px;
    }
    .case-list ul li{
        margin-bottom: 50px; 
    }
    /*行业*/




    /*关于*/
    .b120{
        margin-bottom: 50px;
    }
    .data-display ul{
        gap:20px 0;
        --bs-gutter-x: 0;
    }
    .data-display ul li{
        flex: 0 0 calc(50% - 10px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: #101010;
        flex-direction: column;
        padding: 10px 0;
    }
    .data-display ul li p{
        line-height: 20px;
    }
    .about-content h2{
        margin-bottom: 30px;
    }
    .our-ontroduction .about-banner{
        position: relative;
    }
    .our-ontroduction .about-banner .banner-text{
        padding-left: 0;
    }
    .company-honors .swiper-slide{
        margin-bottom: 30px;
    }
    .company-honors .swiper-slide:last-child{
        margin-bottom: 0;
    }
    /*关于*/


    /*新闻*/
    .new-info{
        width: 100%;
        margin-right:0;
    }
    .new-info .m60{
        margin-bottom: 30px;
    }
    .new-info h4{
        margin-top: 30px;
    }
    .new-info .clearfix h2{
        width: 70%;
        text-align: center;
        margin: 0 auto 30px;
    }
    .new-info .clearfix .float-end{
        width: 60%;
        margin: 0 auto;
    }
    .new-info .clearfix .float-start{
        padding: 0;
    }
    .new-info .clearfix .float-start .brief{
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .new-info .clearfix .float-start .brief p{
        font-size: 16px;
        line-height: 30px;
    }
    .new-info .clearfix .float-start>p span{
        padding: 0 7px;
    }
    .new-list .card .card-body{
        padding: 15px;
    }
    /*新闻*/


    /*案例*/
    .case-list .clearfix{
        display: block;
        margin-bottom:30px;
        padding-top:0;
    }
    .case-list .clearfix .text-content{
        display: block;
    }
    .case-list .clearfix .text-content .number-text{
        margin-right: 0;
        display: flex;
        align-items: flex-end;
        margin-bottom: 15px;
    }
    .case-list .clearfix .text-white h2{
        line-height: 30px;
        margin-left: 5px;
    }


    .case-list .row .col-md-6{
        margin-bottom: 50px;
    }
    .case-list .card-body{
        padding: 15px;
    }
    .nav-container{
        justify-content: left;
        margin: 0 -10px 0;
    }
    .case-nav .nav-container .nav-item{
        min-width: calc(25% - 10px);
        margin: 0 5px;
        height: 35px;
        line-height: 2;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }
    .case-info .clearfix{
        margin-left: 0;
        margin-bottom: 30px;
    }
    .case-info .clearfix .top-title{
        margin-bottom: 30px;
        padding-bottom: 0;
        align-items:normal
    }
    .case-info .clearfix .title{
        display: block;
    }
    .case-info .clearfix .title h2{
        width: 90%;
        margin-bottom: 30px;
    }
    .case-info .clearfix .title .case-service-content{
        display: block;
        margin-left:0;
    }
    .case-info .clearfix .title .case-service-content h4{
        margin-bottom:15px;
    }
    .case-info .clearfix .brief{
        margin-bottom: 30px;
    }
    .case-info .clearfix .right {
        position: fixed;
        right: 5%;
    }
    #popup{
        width: 90%;
        height: 200px;
    }
    /*案例*/
    .info-box{
        padding-bottom: 0 !important;
    }
    .close-box{
        width: 20px;
        display: flex;
        align-items: center;
    }
    .close-box .goBack{
        width: 20px;
        height: 20px;
        display: block;
    }
    .close-box .nar-close{
        width: 20px;
        height: 20px;
        display: none !important;
    }


    /*通用banner*/
    .common-banner .common-text{
        align-items: flex-start;
        position: relative !important;
        margin-bottom: 30px;
        padding-top: 30px !important;
    }
    .common-banner img{
        left: 0; 
    }
    .common-banner .common-text p {
        line-height: 20px;
    }
    .tablelist p.more-case{
        margin-bottom: 50px;
    }


    /*通用导航*/
    .logo{
        max-width: 103px;
    }
    .sidebar{
        display: flex;
        align-items: center;
        padding: 15px;
        flex-direction: row !important;
        position: relative;
        z-index: 999;
        width: 100%;
        top: 0;
        left: 0;
    }
    .sidebar.active {
        background: rgba(0, 0, 0, 0.7);
        z-index: 99999;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: inherit;
    }
    .menu-open{
        position: fixed;
    }
    .menu-open .sidebar{
        position: fixed;
        bottom: inherit;
        background: #000;
        z-index: 99999;
    }
    .menu-open .sidebar.active {
        background-color: #000;
    }
    .logo_content{
        margin-bottom: 0;
        flex-direction: row;
        align-items: center;
    }
    .main_brand {
        padding-top:0;
        padding-left: 10px;
    }
    .main_brand ul{
        display: flex;
        flex-wrap: wrap;
    }
    .main_brand ul li{
        min-width: 100px;
        width: 100%;
    }
    .sidebar .navbar-toggler{
        color: #fff;
        border: none;
        box-shadow: inherit;
        padding: 0;
        position: absolute;
        right: 15px;
        top:23px;
    }
    .nav{
        width: 100%;
        justify-content: space-between;
        flex-direction: row !important;
        padding-top: 30px;
    }
    .nav li.nav-item{
        width: calc(33.3% - 10px);
        height: 100px;
        line-height: 100px;
        margin-bottom: 15px;
        justify-content: center;
        background: #181818;
        color: #CECECE;
        transition: initial !important;
        border-radius: 20px;
    }
    
    .nav-phone{
        display: none;
    }
    .menu-open .nav-phone{
        left: 0;
        right: 0;
        margin: 0 15px;
        text-align: center;
        display: block;
        background: #222;
        padding: 15px 0;
        border-radius: 30px;
    }
    .menu-open .nav-phone a{
        font-size: 30px;
    }
    .contactbox{
        display: none !important;
    }
    .gotop{
        width: 35px;
        height: 35px;
        right: 15px;
    }

    .Artmain{
        padding: 30px 0;
    }
    .article-title{
        margin: 0 0 50px;
    }
    .article-title h2{
        font-size: 30px;
    }
    .article-content p{
        display: block;
    }
    .article-content p b{
        display: flex;
    }
    .article-content p a{
        margin: 0 10px 0 0 !important;
    }
    .down-icon{
        display: none;
    }
    .share{
        margin-right: 20px;
        display: none;
    }
    .case-info .clearfix .right .share .share-icon{
        width: 20px;
        height: 20px;
    }
    .social-share .icon-wechat{
        width: 22px !important;
        height: 22px !important;
        background-size: 100% !important;
    }


}


@media (max-width: 768px) {
    .home-case .custom-row-padding .col-md-6{
        padding: 0;
        width: 100% !important;
        margin-bottom: 50px;
        margin-top: 0;
    }
    .home-case .custom-row-padding .col-md-6:last-child{
        margin-bottom: 0;
    }
    .new-info .clearfix .float-end{
        width: 86%;
        margin: 0 auto;
    }
    .home-title h2 p{
        padding-top: 15px;
    }
    .bottom-1 .side-menu li .wxcode-img{
        top:63px;
    }
    .bottom-1 .bottom-logo a{
        width: 90px;
    }
}






/* 自定义自适应字体大小类 */
.f14 {
    font-size: 12px; /* 小屏幕默认字体大小 */
}
.f16 {
    font-size: 13px;
}
.f18 {
    font-size: 14px;
}
.f20 {
    font-size: 15px;
}
.f24 {
    font-size: 16px;
}
.f28{
    font-size: 16px;
}
.f30{
    font-size: 18px;
}
.f32{
    font-size: 18px;
}
.f36{
    font-size: 20px;
}
.f40{
    font-size: 22px;
}
.f50 {
    font-size: 24px;
}
.f56 {
    font-size: 24px; 
}
.f60{
    font-size: 26px;
}
.f80 {
    font-size: 30px;
}
.f90{
    font-size: 34px;
}
.f180 {
    font-size: 68px;
}
/* 小屏幕（sm，≥ 576px）字体大小 */
@media (min-width: 576px) {
    .f14 {
        font-size: 13px; 
    }
    .f16 {
        font-size: 14px;
    }
    .f18 {
        font-size: 15px;
    }
    .f20 {
        font-size: 16px;
    }
    .f24 {
        font-size: 18px;
    }
    .f28{
        font-size: 18px;
    }
    .f30{
        font-size: 20px;
    }
    .f32{
        font-size: 20px;
    }
    .f36{
        font-size: 22px;
    }
    .f40{
        font-size: 24px;
    }
    .f50 {
        font-size: 26px;
    }
    .f56 {
        font-size: 28px;
    }
    .f60{
        font-size: 30px;
    }
    .f80 {
        font-size: 32px;
    }
    .f90{
        font-size: 36px;
    }
    .f180 {
        font-size: 72px;
    }
}

/* 中等屏幕（md，≥ 768px）字体大小 */
@media (min-width: 768px) {
    .f14 {
        font-size: 14px; 
    }
    .f16 {
        font-size: 15px;
    }
    .f18 {
        font-size: 16px;
    }
    .f20 {
        font-size: 18px;
    }
    .f24 {
        font-size: 20px;
    }
    .f28{
        font-size: 20px;
    }
    .f30{
        font-size: 22px;
    }
    .f32{
        font-size: 24px;
    }
    .f36{
        font-size: 26px;
    }
    .f40{
        font-size: 28px;
    }
    .f50 {
        font-size: 28px;
    }
    .f56 {
        font-size: 30px;
    }
    .f60{
        font-size: 38px;
    }
    .f80 {
        font-size: 44px;
    }
    .f90{
        font-size: 48px;
    }
    .f180 {
        font-size: 96px;
    }
    
}
/* 大屏幕（lg，≥ 992px）字体大小 */
@media (min-width: 992px) {
    .f14 {
        font-size: 14px; 
    }
    .f16 {
        font-size: 15px;
    }
    .f18 {
        font-size: 16px;
    }
    .f20 {
        font-size: 18px;
    }
    .f24 {
        font-size: 18px;
    }
    .f28{
        font-size: 22px;
    }
    .f30{
        font-size: 24px;
    }
    .f32{
        font-size: 26px;
    }
    .f36{
        font-size: 30px;
    }
    .f40{
        font-size: 34px;
    }
    .f50 {
        font-size: 36px;
    }
    .f56 {
        font-size: 38px;
    }
    .f60{
        font-size: 46px;
    }
    .f80 {
        font-size: 50px;
    }
    .f90{
        font-size: 60px;
    }
    .f180 {
        font-size: 120px;
    }
}

/* 特大屏幕（xl，≥ 1200px）字体大小 */
@media (min-width: 1200px) {
    .f16 {
        font-size: 16px;
    }
    .f18 {
        font-size: 18px;
    }
    .f20 {
        font-size: 20px;
    }
    .f24 {
        font-size: 24px;
    }
    .f28{
        font-size: 28px;
    }
    .f30{
        font-size: 30px;
    }
    .f32{
        font-size: 32px;
    }
    .f36{
        font-size: 36px;
    }
    .f40{
        font-size: 40px;
    }
    .f50 {
        font-size: 50px;
    }
    .f56 {
        font-size: 56px;
    }
    .f60{
        font-size: 52px;
    }
    .f80 {
        font-size: 60px;
    }
    .f90{
        font-size: 72px;
    }
    .f180 {
        font-size: 144px;
    }
}
@media (min-width: 1400px) {
    .f80 {
        font-size: 80px;
    }
    .f90 {
        font-size: 90px;
    }
    .f180 {
        font-size: 180px;
    }
    .sidebar{
        left: 2.5rem;
    }
    .col-md-2.sidebar {
        width: 10.66666667%;
    }
}
