* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Source Han Sans", "Noto Sans SC", "思源黑体", "Microsoft YaHei", sans-serif;
}

html {
    font-size: clamp(16px, 1vw, 28px);
}

a {
    text-decoration: none
}

img {
    display: block;
    max-width: 100%
}

body {
    max-width: 1920px;
    overflow-x: hidden;
    color: #001c44;
    margin:0 auto;

}

p {
    font-size: 1.5rem;
}


h1 {
    font-size: 2.8rem;
    line-height: 1;
}

h2 {
    font-size: 2.2rem;
}


h3 {
    font-size: 1.8rem;
}


h4 {
    font-size: 1.5rem;
}

li{list-style-type: none}

.green{color: #2e8b57}


/* 导航栏 */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E5E7EB;
    padding: 0px 5%;
position: relative;
            z-index: 99;
        }

        /* 桌面端隐藏汉堡按钮 */
        .menu-toggle {
            display: none;
        }





.logo {
    height: 30px;
}

.logo img {
    height: 40px;
}

.navbar {

    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.navbar>ul{display:flex;gap:40px;}
.navbar>ul>li{position: relative;line-height: 75px;}
.navbar>ul>li a {text-decoration: none;color: #0A2447;font-size: 1rem;white-space: nowrap;display: flex;align-items: center;}
.navbar>ul>li a:hover {color: #0066cc;}





        /* 下拉箭头样式 */
        .ep-nav-arrow {
            font-size: 6px;
            margin-left: 4px;
            transition: transform 0.3s ease; /* 箭头旋转过渡 */
        }

        /* 子菜单容器样式 - 默认隐藏 */
        .ep-submenu {
            position: absolute;
            top: 70px; /* 与导航栏底部对齐 */
            left: 0;
            background-color: #fff;
            border: 1px solid #eee;
            border-top: 2px solid #008060; /* 顶部高亮线 */
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            min-width: 180px;
            opacity: 0; /* 初始透明 */
            visibility: hidden; /* 初始不可见（解决点击穿透） */
            transform: translateY(10px); /* 初始向下偏移 */
            transition: all 0.3s ease; /* 所有属性平滑过渡 */
            z-index: 999; /* 确保在最上层 */
        }

        

.ep-submenu ul{display: flex;flex-direction: column;}

.navbar ul li:hover .ep-submenu{display: block;opacity: 1;visibility: visible;}

.navbar ul li:hover .ep-submenu>li{line-height: 30px;}


        /* 子菜单项样式 */
        .ep-submenu li a {
            display: block;
            color: #333;
            font-size: 1rem;
            padding: 10px 10px;
            transition: background-color 0.2s ease;
        }

        /* 子菜单项滑过效果 */
        .ep-submenu li a:hover {
            background-color: #f5f5f5;
            color: #008060;
        }










/* 容器 */
.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 5%;
}



.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    min-width: 300px;
    padding: 5rem 0;
    min-height: 760px
}

.hero h1 {
    font-weight: 700;
    line-height: 1.5;
    font-size: 2.8rem;
    color: #fff
}


.hero h2{

    font-size: 2rem;
    color:#2e8b57;
    margin-bottom:2rem
}



.hero p {
    font-size: 1rem;
    color:#C8CDD0;

}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}




.btn {
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background-color: #0A2447;
    color: white;
    border: none;
}

.btn-outline {
    background-color: white;
    color: #0A2447;
    border: 1px solid #0A2447;
}

.hero-image {

    min-width: 300px;

}

.hero-image img {
    max-width: 100%;
    height: auto;

}

.hero .swiper-pagination-bullet{width: 12px;height: 12px;}
.hero .swiper-pagination-bullet-active{background:#2e8b57;width: 12px;height: 12px;}


/* 数据统计区 */
.stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: center;
    padding: 5rem 0;



}

.stat-item {
    text-align: center;
    border-right: 1px solid #ccc;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}


.stats .stat-item:nth-last-child(1) {
    border-right: 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2e8b57;
}

.stat-label {

    color: #4B5563;
}

/* 核心服务区 */
.services {
    padding: 60px 0;
}

.services h2 {

    font-weight: 700;
    margin-bottom: 8px;
}

.services-subtitle {

    color: #4B5563;
    margin-bottom: 5rem;
}

.service-item {
    display: flex;
    align-items: center;
    background-color: #E5E7EB;
    margin-bottom: 5rem;
    padding: 4rem 3rem;

    flex-wrap: wrap;
    gap: 2rem;
}

.service-content {
    flex: 1;
    min-width: 300px;
    border-left: 1px solid #000;
    padding-left: 2rem;
}

.service-content h3 {

    font-weight: 600;
    margin-bottom: 2rem;
    color: #001c44
}

.service-content p {
    font-size: 1.2rem;
    color: #001c44;
    margin-bottom: 2rem;
}

.service-image {
    flex: 1;
    min-width: 300px;
    text-align: right;
    position: relative;
    padding-right: 20px;
}

.service-image img {
    max-width: 100%;
    height: auto;

}



.service-image2 {
    flex: 1;
    min-width: 300px;
    text-align: right;
    position: absolute;
    top: 30px;
    left: 30px;
}


/* 为什么选择我们 */
.why-us {
    padding: 60px 0;
}

.why-us-label {

    font-weight: 600;
    color: #2e8b57;
    margin-bottom: 12px;
}

.why-us h2 {

    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
}

.why-us-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.why-us-card {
    flex: 1;
    min-width: 280px;
    border: 1px solid #E5E7EB;
    padding: 24px;
}

.why-us-card .icon {
    font-size: 24px;
    margin-bottom: 16px;
    color: #0A2447;
}

.why-us-card h3 {

    font-weight: 600;
    margin-bottom: 1rem;
}

.why-us-card p {

    color: #4B5563;
}





/* CCAA认证区 */
.getdia {
    margin-top: 10rem
}

.getdia-box {


    max-width: 40%;
}

.getdia-box h3 {
    font-size: 4rem;
    line-height: 1;
    font-weight: 600;

    margin-bottom: 2rem;
}






.line {
    width: 5rem;
    border: 1px solid #2e8b57;
    margin: 5rem 0px;
}


/* CCAA认证区 */

.ccaa {
    margin-bottom: 10rem
}

.ccaa-box {
    background-color: #E5E7EB;
    padding: 3rem;
    max-width: 40%;
}

.ccaa-box h3 {

    font-weight: 600;
    color: #2e8b57;
    margin-bottom: 2rem;
}

.ccaa-box p {

    color: #4B5563;
}

/* 页脚 */
.footer {
    max-width: 1920px;
    padding: 5rem 5%;
    border-top: 1px solid #E5E7EB;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 5rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;

    gap: 2rem;
}
.footer-logo{display: flex;justify-content: center;align-items: center;}
.footer-logo img {

    height: 88px;
}

.footer-logo-text {

    color: #0A2447;
}

.footer-links {
    display: flex;
    gap: 2rem;

}

.footer-column h4 {

    font-weight: 600;
    margin-bottom: 12px;
}
.footer-column p{font-size: 1rem;}
.footer-column a {
    display: block;

    color: #4B5563;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1rem;
}

.footer-column ul li {
    list-style-type: none;
    position: relative;
    display: flex;
    align-items: center;
}

.footer-column ul li:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 8px;
    display: block;
    background: #000;
    margin-right: 0.5rem
}



.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-social a {
    font-size: 24px;
    color: #0A2447;
}

.footer-copyright {

    color: #4B5563;
    font-size: 1.2rem;
}




.hui{background: #e6e8ec}
.sectit{text-align: center;}



.aboutbanner{padding: 5rem 2rem;}
.aboutbanner .container{display: grid;grid-template-columns: 1fr 1fr;gap: 2rem;align-items: center;}
.aboutbanner .about-content{padding:2rem 0;}
.aboutbanner .about-content h1{margin-bottom: 2rem;line-height: 1.2}


.aboutpeople{background: #e6e8ec;padding: 5rem 2rem;display: flex; flex-direction:column;gap:2rem;}
.aboutpeople .container{display: grid;grid-template-columns: 1fr 1fr 1fr;gap: 2rem;align-items: center;}
.aboutpeople .container .card{display: flex; flex-direction:column; justify-content: center;align-items: center;gap:1rem;}
.aboutpeople .container .card-img{border-radius: 50%;overflow: hidden;width: 280px;height: 280px;}
.aboutpeople .container .card-name{font-size:1.4rem;font-weight: 600;text-align: center;}
.aboutpeople .container .card-desc{font-size:1rem;text-align: center;}




.aboutevolution{padding: 5rem 2rem;}

.aboutevolution .container{display: grid;grid-template-columns: 1fr 2fr;gap: 10rem;align-items: center;}
.aboutevolution .container .left-box{display: flex;flex-direction: column;gap:1rem;}
.aboutevolution .container .left-box .subname{color:#2e8b57;font-size: 1.5rem;font-weight: 600}
.aboutevolution .container .left-box .name{line-height:1.2}
.aboutevolution .container .left-box .cardimg{margin-top:2rem;}



.aboutevolution .container .right-box{display: flex;flex-direction: column;gap:5rem;}
.aboutevolution .container .right-box .card{border:1px solid #c5c9d1;border-radius: 10px;padding:2rem;display: grid;grid-template-columns: 1fr 5fr;align-items: center;}
.aboutevolution .container .right-box .card .cardyear{font-size: 2rem;color:#2e8b57;font-weight: 600}








.corebanner{padding: 5rem 2rem;}
.corebanner .container{display: grid;grid-template-columns: 1fr 1fr;gap: 2rem;align-items: center;}
.corebanner .subname{font-size: 1.5rem;display: flex;align-items: center;gap:1rem;}
.corebanner .subname:before{width: 5rem;height: 2px;background-color:#2e8b57;display: inline-block;content: "";}
.corebanner .core-content{padding:2rem 0;display: flex;flex-direction: column;gap:3rem;}
.corebanner .core-content h2{margin-bottom: 2rem;line-height: 1}
.corebanner .core-content .cards{display: grid;grid-template-columns: 1fr 1fr;gap: 2rem;}
.corebanner .core-content .btn{background:#001c44;padding:1rem;color: #fff;text-align: center;font-size: 1.2rem;border-radius:10px}
.corebanner .core-image{background: #e6e8ec;border-radius: 30px 0px 30px 0px;padding:3rem;}
.corebanner .core-image img{max-width:100%}











.coreguidance{padding: 5rem 2rem;}
.coreguidance .line{margin-top:1rem;}


.coreguidance .subname{font-size: 1rem;font-weight: 600}
.coreguidance h2{line-height: 1.2;padding:1rem 50% 1rem 0;}
.coreguidance .container .cards{display: flex; flex-direction: column; gap:5rem;align-items: center;}
.coreguidance .container .cards .card{display: flex; flex-direction: row; justify-content: space-between;align-items: center;}
.coreguidance .container .cards .card:nth-child(2){display: flex; flex-direction: row-reverse; gap: 2rem;align-items: center;}





.coreguidance .coreguidance-content{display: flex; flex-direction: column; gap: 2rem;width:40%;}
.coreguidance .coreguidance-content .btn{background:#001c44;padding:1rem;color: #fff;text-align: center;font-size: 1.2rem;border-radius:10px}
.coreguidance .coreguidance-image{width:55%;border-radius: 10px;overflow: hidden;}
.coreguidance .coreguidance-image img{max-width:100%}


.qualifications{background:#e6e8ec;padding:5rem 10rem;display: flex;justify-content: center;align-items: center;flex-direction: column;text-align: center;gap:1rem;}
.qualifications h3{font-weight: 600;width:60%}
.qualifications p{width:60%;font-size: 1.2rem}


.qualifications .btn{background: #001c44;
    padding: 1rem 2rem;
    color: #fff;
    text-align: center;
    font-size: 1.2rem;
    border-radius: 10px;}







.corestrategy{padding: 5rem 2rem;}
.corestrategy .line{margin:0rem;}


.corestrategy .subname{font-size: 1rem;font-weight: 600}
.corestrategy h2{line-height: 1;padding:1rem 0 1rem 0;}
.corestrategy .container .cards{display: flex; flex-direction: column; gap:5rem;align-items: center;}
.corestrategy .container .cards .card{display: flex; flex-direction: row; justify-content: space-between;align-items: center;}


.corestrategy .strategy-content{display: flex; flex-direction: column; gap:1rem;width:40%;}

.corestrategy .strategy-content .list{font-size: 1rem;font-weight: 600;gap:1rem;display: flex;flex-direction: column;}

.corestrategy .strategy-content .list p{font-size: 1.2rem;}

.corestrategy .strategy-content .btn{background:#001c44;padding:1rem;color: #fff;text-align: center;font-size: 1.2rem;border-radius:10px}
.corestrategy .strategy-image{width:55%;border-radius: 10px;overflow: hidden;}
.corestrategy .strategy-image img{max-width:100%}

















.newslist{padding: 5rem 2rem;}

.newslist .container{display: grid;gap: 5rem;align-items: center;}
.newslist .container .top-box{display: flex;flex-direction: column;gap:1rem;}
.newslist .container .top-box .name{line-height:1.2}
.newslist .container .top-box .cardimg{margin-top:2rem;}



.newslist .container .newslist-box{display: flex;flex-direction: column;gap:4rem;}
.newslist .container .newslist-box .card{border:1px solid #c5c9d1;border-radius: 10px;padding:2rem;display: flex;align-items: center;justify-content: space-between;}
.newslist .container .newslist-box .card:nth-child(2n){display: flex; flex-direction: row-reverse; gap: 2rem;align-items: center;}
.newslist .container .newslist-box .card .cardimg{width: 40%}
.newslist .container .newslist-box .card .cardcontent{width: 55%;}
.newslist .container .newslist-box .card .cardcontent h3{margin-bottom:2rem}
.newslist .container .newslist-box .card .cardcontent .desc{margin-bottom:2rem;font-size: 1.2rem}
.newslist .container .newslist-box .card .cardcontent .btn{background:#001c44;padding:1rem;color: #fff;text-align: center;font-size: 1.2rem;border-radius:10px;margin:1rem auto;}









.contact{padding: 5rem 2rem;}

.contact .container{display: flex; flex-direction: column; gap: 5rem;align-items: center;}
.contact .container .top-box{display:grid;grid-template-columns: 2fr 3fr;gap:2rem;}
.contact .container .top-box .leftbox{display: flex;flex-direction: column;border:1px solid #ccc;padding:3rem;}
.contact .container .top-box .leftbox .name{line-height:1.2}
.contact .container .top-box .leftbox .cardimg{margin-top:2rem;}
.contact .container .top-box .leftbox .cardimg img{width: 100%}



.contactmore{display:grid;grid-template-columns: 1fr 1fr;gap:2rem;}
.contactmore h2{line-height: 1.2}

.rightfrom .fc-form-body{display: flex;flex-direction: column;gap:1rem;}
.rightfrom .fc-form-body label{margin-bottom: 10px;display: block;}
.rightfrom .fc-form-body input,.rightfrom .fc-form-body textarea{border:1px solid #ccc;border-radius: 5px;min-height:2rem;padding:10px;}



.baogao{padding: 5rem 2rem;}
.baogao .main{padding:3rem 0rem;display: flex;flex-direction: column;justify-content: center;align-items: center;}

.baogao form{width: 100%;display:flex;flex-direction: column;justify-content: center;align-items:center;gap:1rem;}
.baogao .baogaoinput{border:1px solid #ccc;padding:10px;border-radius: 5px;line-height: 2rem;width: 100%;font-size:1.5rem;}
.baogao form .btn{font-size:1.5rem;}









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


.search-detail { width:96%; background:#fff; padding:2%; margin-bottom:20px;}
.search-detail .table{width: 100%}
.search-detail .search-title {
    display: inline-block;
    font-size: 24px;
    color: #000;
    text-align: center;
    width: 100%;
}
.search-detail .search-time {
    font-size: 22px;
    color: #333;
    padding: 10px 0 30px;
    text-align: center;
    width: 100%;
}
.search-detail .table .fullline {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid #DDD;
    border-top: none;
    width:100%;
}
.search-detail .table .fullline:first-of-type{
    border-top: 1px solid #DDD;
}
.search-detail .table .fullline .label {
    width:120px;
    padding: 10px 20px;
    color: #0e8946;
    font-size: 14px;
    text-align: center; 
}
.search-detail .table .fullline .value:first-of-type{ border-left:none}

.search-detail .table .fullline .value:nth-child(1){ width:20%;}
.search-detail .table .fullline .value:nth-child(2){ width:20%;}
.search-detail .table .fullline .value:nth-child(3){ width:20%;}
.search-detail .table .fullline .value:nth-child(4){ width:15%;}
.search-detail .table .fullline .value:nth-child(5){ width:15%;}
.search-detail .table .fullline .value:nth-child(6){ width:10%;}
.search-detail .table .fullline .value {border-left: 1px solid #DDD;padding: 10px 20px;color: #000;font-size: 16px;}
.search-detail .table .fullline .value a{ color:#009944}
.search-detail .table .fullline .value2:first-of-type{ border-left:none}
.search-detail .table .fullline .value2:nth-child(1){ width:20%;}
.search-detail .table .fullline .value2:nth-child(2){ width:20%;}
.search-detail .table .fullline .value2:nth-child(3){ width:20%;}
.search-detail .table .fullline .value2:nth-child(4){ width:15%;}
.search-detail .table .fullline .value2:nth-child(5){ width:15%;}
.search-detail .table .fullline .value2:nth-child(6){ width:10%;}
.search-detail .table .fullline .value2 {

    border-left: 1px solid #DDD;
    padding: 10px 20px;
    color: #fff;
    font-size: 16px;
}
.search-detail .table .fullline .value3 {

    border-left: 1px solid #DDD;
    padding: 10px 20px;
    color: #000;
    font-size: 14px;
}
.search-detail .table .fullline .value3 a{ color:#009944}



.search-detail .contents {
    padding: 20px 0 50px;
    line-height: 30px;
    font-size: 14px;
    /*text-align: center;*/
}
.search-detail .contents img {
    max-width: 100%;
}
.ny-header{ margin-bottom:30px;}
@media (min-width:1200px){.hidden-lg{display:none!important}
.page-contact{ margin-top:50px;}
}
@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}
.page-contact{ margin-top:30px;}
.search-detail .table{ margin-bottom:10px;}
}
@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}
.page-contact{ margin-top:30px;}
.search-detail .table{ margin-bottom:10px;}
}
@media (max-width:767px){.hidden-xs{display:none!important}
.page-contact{ margin-top:30px;}
.search-detail .table{ margin-bottom:10px;}
}





















        /* 企业文化 */
        .qywhbanner {
            width: 100%;
            height: 600px;
            background: #003366;
            background-image:url('../images/qywh_banner.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }
        .qywhbanner h1 {

            font-weight: bold;
            margin-bottom: 2rem;
            line-height:1.2;
        }
        .qywhbanner h2 {
            font-size: 22px;
            color: #e0e0e0;
            font-weight: normal;
            max-width: 800px;
            line-height: 1.6;
        }

        /* 模块二：两列企业宗旨 */
        .qywhtwo-col{
            padding: 80px 0;
        }
        .qywhtwo-col .qywhcol-wrapper {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }
        .qywhtwo-col .qywhcol {
            flex: 1;
            min-width: 300px;
        }
        .qywhtwo-col .qywhcol img {
            width: 100%;

            object-fit: cover;
            border-radius: 6px;
            margin-bottom: 20px;
        }


        /* 模块三：纯色愿景区 */
        .vision {
            background-color: #003366;
            color: white;
            text-align: center;
            padding: 5rem 2rem;
        }


        /* 模块四：三列核心价值观 */
        .qywhthree-col {
            padding: 80px 0;
            background: #f7f9fc;
        }
        .qywhthree-wrapper {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            text-align: center;
        }
        .qywhthree-col .item {
            flex: 1;
            min-width: 250px;
            padding: 20px;
        }
        .qywhthree-col .item .icon {
            width: 150px;
            height: 150px;

            border-radius: 50%;
            margin: 0 auto 20px;
            overflow:hidden;
        }





.qywhservice{padding: 5rem 2rem;}
.qywhservice .container{display: grid;grid-template-columns: 1fr 1fr;gap: 2rem;align-items: center;}
.qywhservice .qywhservice-content{padding:2rem 0;}
.qywhservice .qywhservice-content h3{margin-bottom: 2rem;line-height: 1}







.mcore{padding: 5rem 2rem;}
.mcore .container{display: grid;grid-template-columns: 1fr;gap: 2rem;align-items: center;}
.mcore .container .card{padding:2rem 0;display: flex;flex-direction: column;gap:1rem;}
.mcore .container .card h3{line-height: 1}



.rightfrom form {
  max-width: 520px;
  margin: 30px auto;
  padding: 25px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
 
}

/* 表单项间距 */
.rightfrom form div {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* 标签文字 */
.rightfrom form label {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

/* 输入框样式 */
.rightfrom form input[type="text"] {
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border 0.3s;
}

.rightfrom form input[type="text"]:focus {
  border-color: #007bff;
}

/* 验证码行 */
.rightfrom .code-row {
  display: flex;
  gap: 10px;
}

.rightfrom .code-row img {
  max-width:120px;
  cursor: pointer;
  border-radius: 6px;
}

/* 提交按钮 */
.rightfrom button[type="submit"] {
  width: 100%;
  height: 44px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.rightfrom button[type="submit"]:hover {
  background: #005fcc;
}







/* 响应式适配 */
@media (max-width: 768px) {

html{ font-size: 62.5%;}



p {
    font-size: 1.2rem;
}


h1 {
    font-size: 3.1rem;
    line-height: 1;
}

h2 {
    font-size: 3rem;
}


h3 {
    font-size: 1.5rem;
}


h4 {
    font-size: 1.2rem;
}


.navbar {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                /* 默认隐藏 */
                display: none;
            }

            /* 菜单展开时显示 */
            .navbar.active {
                display: flex;
            }

            /* 汉堡按钮 */
            .menu-toggle {
                display: block;
                width: 30px;
                height: 30px;
                position: relative;
                cursor: pointer;
                border: none;
                background: none;
            }

            /* 汉堡三条线 */
            .menu-toggle span {
                display: block;
                width: 100%;
                height: 3px;
                background: #333;
                border-radius: 3px;
                position: absolute;
                left: 0;
                transition: all 0.3s ease;
            }

            .menu-toggle span:nth-child(1) { top: 6px; }
            .menu-toggle span:nth-child(2) { top: 13px; }
            .menu-toggle span:nth-child(3) { top: 20px; }

            /* 点击后变成 X */
            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg);
                top: 13px;
            }
            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg);
                top: 13px;
            }


.header{padding:20px;}

.navbar>ul{display: flex;flex-direction: column;}
.navbar>ul li a{font-size: 1.5rem;}
.navbar>ul>li{line-height: 1.5}





.navbar>ul>li .ep-submenu{position: relative;top:unset;left: unset;opacity: 1;visibility: visible;box-shadow:none;}






    .container {
        padding: 0 20px;
    }



    .hero-image {
        text-align: center;
    }
    .hero-buttons{ display: flex;justify-content: center;align-items: center;}

    .stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;




    }


    .stats .stat-item:nth-child(2) {
        border: 0;
    }


    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .service-image {
        text-align: center;
    }

    .why-us-cards {
        flex-direction: column;
    }


    .getdia-box {
        max-width: 100%;
    }

    .ccaa-box {
        max-width: 100%;
    }

    .footer {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        gap: 40px;
    }

            




.aboutbanner .container {
    display: grid;
    grid-template-columns: 1fr;
}


.aboutpeople .container {
    display: grid;
    grid-template-columns:1fr 1fr;
}


.aboutpeople .container .card-img{width: 100%;height: auto}
.aboutevolution .container{
    display: grid;
    grid-template-columns:1fr;
}



.aboutevolution .container .right-box .card{
    display: grid;
    grid-template-columns:1fr;
}





.corebanner .container{display: grid;grid-template-columns: 1fr;}
.coreguidance h2{padding:1rem;}

.coreguidance .container .cards .card{display:flex;flex-wrap: wrap;gap:5rem;}
.coreguidance .coreguidance-content{width: 100%}
.coreguidance .coreguidance-image{width: 100%}




.corestrategy .container .cards .card{display:flex;flex-wrap: wrap;gap:5rem;}

.corestrategy .strategy-content{width: 100%}
.corestrategy .strategy-image{width: 100%}

.qualifications{padding:5rem 2rem;}
.qualifications h3{width: 100%}
.qualifications p{width: 100%}



.contact .container .top-box {
    display: grid;
    grid-template-columns: 1fr;
}

.contactmore {
    display: grid;
    grid-template-columns: 1fr;
}




}




