/* Header样式 */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    z-index: 1010;
}

.head-pc {
    width: 70%;
    display: flex;
    justify-content: space-between;
}

.head-logo a,
.head-nav-list a,
.wx a {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.head-nav {
    display: flex;
    height: 74px;
}

.head-nav-list {
    display: flex;
    align-items: center;
}

.head-nav-list>li {
    width: 60px;
    margin-right: 40px;
    position: relative;
    
}

.head-nav-list li a {
    display: block;
    height: 74px;
    line-height: 74px;
    font-size: 15px;
    text-align: center;
}

.head-nav-list>li.active>a{
    color: #3266E1;
    border-bottom: 2px solid #3266E1;
}

.head-nav-list li .dropdown{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 50px;
    white-space: nowrap;
    background-color: #fff;
    box-shadow: 0px 4px 20px 0px #0000001A;
    padding: 0 50px;
    z-index: 1001;
}

.head-nav-list li .dropdown li:hover a{
    color: #3266E1;
}

.wx {
    height: 74px;
}

 /* 头部common-banner样式 */
.common-banner {
    position: relative;
    width: 100%;
    height: auto;
}

.common-banner-img img {
    width: 100%;
    height: 100%;
    min-height: 606px;
    object-fit: cover;
}

.common-banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.common-banner-title h1 {
    font-size: 43px;
    font-weight: 700;
}

.common-banner-title p {
    font-size: 17px;
    font-weight: 400;
    line-height: 19.55px;
    text-transform: uppercase;
}

/*首页样式*/
.banner-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.banner-bg img,
.business-image {
    width: 100%;
    height: 100vh;
    max-height: 960px;
    object-fit: cover;
}

.banner-title {
    width: 70%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.banner-title p {
    font-weight: 700;
    font-size: 43px;
    color: #fff;
}

.bottom-arrows{
    position: absolute;
    left: 50%;
    bottom: 58px;
    transform: translateX(-50%) rotate(-135deg);
    width: 16px;
    height: 16px;
    border-top: 2px solid #FFFFFF;
    border-left: 2px solid #FFFFFF;
    z-index: 999;
    animation: bounce 0.8s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) rotate(-135deg) translate(0, 0); 
            }
    50% {
        transform: translateX(-50%) rotate(-135deg) translate(10px, 10px); 
    }
}

.swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    background: #FFF;
}

.swiper-pagination {
    left: 50%;
    transform: translateX(-50%);
    --swiper-pagination-bottom: 25px;
}

.business-list {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.business-item {
    width: 25%;
    position: relative;
}


.business-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 128px;
    background-color: transparent;
    display: flex;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    transition:all .2s;
    z-index: 2;
}

/* 添加伪元素作为悬停时显示的蓝色渐变 */
.business-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #5056F3 0%, #42BFFF 100%);
    opacity: 0; /* 初始隐藏 */
    transition: opacity .5s ease-in-out;
    z-index: -1; /* 放在背景层 */
    opacity: 0;
}
/* 鼠标悬停时改变伪元素透明度 */
.business-item:hover .business-content::after {
    opacity: 1;
}

.business-icon {
    padding: 32px 14px 32px 46px;
}

.business-info{
    padding: 32px 0;
}

.business-info h2 {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
}

.business-info p {
    font-size: 18px;
    line-height: 20.7px;
    color: #B2b1b1;
    text-transform: uppercase;
}

.partner-container {
    width: 100%;
    padding: 80px 0 135px;
    background: url(/static/images/partner.png) no-repeat;
    background-size: cover;
}

.partner-title {
    text-align: center;
    margin-bottom: 67px;
}

.partner-title h2 {
    font-weight: 700;
    font-size: 36px;
    color: #3266E1;
}

.partner-title p {
    text-transform: uppercase;
    font-size: 24px;
    line-height: 27.6px;
    color: #D1D1D1;
}

.marquee-container{
    width: 100%;
    overflow: hidden;
    display: flex;
     margin-bottom: 40px;
}
.marquee-container:last-child{
     margin-bottom: 0px;
}
.marquee-list{
    width: 100vw;
    display: flex;
    gap: 30px;
    padding-right: 30px;
    flex-wrap: nowrap;
}
.marquee-list:last-child{
    margin-bottom: 0;
}
.marquee-container:nth-child(odd) .marquee-list{
    animation: marquee-left var(--t) linear infinite;
}
.marquee-container:nth-child(odd) .marquee-list:nth-child(2){
    animation: marquee-left2 var(--t) linear infinite;
    animation-delay: calc(var(--t)/-2);
}
.marquee-container:nth-child(even) .marquee-list{
    animation: marquee-right var(--t) linear infinite;
}
.marquee-container:nth-child(even) .marquee-list:nth-child(2){
    animation: marquee-right2 var(--t) linear infinite;
    animation-delay: calc(var(--t)/-2);
}
.marquee-item{
    width: 12.5vw;
    height: 76px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.marquee-item img {
    height: 100%;
}

@keyframes marquee-left {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes marquee-left2{
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}
@keyframes marquee-right {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}
@keyframes marquee-right2{
    from {
        transform: translateX(-200%);
    }
    to {
        transform: translateX(0);
    }
}

/*关于我们页面样式*/
.about {
    padding: 80px 0 110px;
    width: 70%;
    margin: 0 auto;
}

.about-title {
    text-align: center;
    margin-bottom: 55px;
}

.about-title h2 {
    font-size: 36px;
    font-weight: 400;
    color: #000;
}

.about-title .rectangle {
    width: 50px;
    height: 2px;
    background-color: #3266E1;
    margin: 15px auto 0;
}

.about-text {
    font-family: Microsoft YaHei；
    font-size: 18px;
    line-height: 32.4px;
    color: #000;
    text-align: justify;
}

/* 关于我们 */
.about-list {
    display: flex;
    justify-content: space-between;
    padding: 60px 30px 0;
    gap: 40px;
}

.icon img {
    width: 82px;
    height: 82px;
}

.tag p {
    margin: 25px 0 7px;
    font-size: 16px;
    line-height: 21.12px;
    color: #000;
}

.tag span {
    font-size: 49px;
    color: #3266E1;
}

.about-item{
    width: 30%;
}

.about-item>.text {
    font-size: 16px;
    line-height: 27px;
    color: #5E5E5E;
}

/* 企业文化 */
.culture .about-title h2{
    color: #fff;
}

.culture .about-title .rectangle{
    background-color: #fff;
}

.culture {
    position: relative;
    width: 100%;
}

.culture-bg img {
    width: 100%;
    min-height:672px;
    object-fit: cover;
}

.culture-box {
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.culture-cards {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.culture-card {
    width: 50%;
    background-color: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.06);
    padding: 45px 36px;
}

.card-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.card-top img {
    width: 50px;
    height: 50px;
}

.card-title h3 {
    font-size: 23px;
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
}

.card-title p {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.1px;
    color: #BDBDBD;
}

.card-content p {
    font-size: 16px;
    line-height: 30px;
    color: #5E5E5E;
}

.card-content p strong {
    color: #000;
    margin-right: 10px;
}

/* 管理理念 */
.concept{
    padding: 80px 0 125px;
    background: #F8F9FA;
}

.concept-box{
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.concept-box div{
    width: 50%;
}

.concept-img img,
.responsibility-right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.concept-details{
    padding: 44px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.concept-details article p,.responsibility-left article p{
    font-weight: 500;
    font-size: 22px;
    line-height: 35px;
    color: #000;
}

/* 社会责任 */
.responsibility{
    width: 100%;
    background-color: #fff;
    padding: 80px 0;
}

.responsibility-box{
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 70px;
}

.responsibility-box div{
    width: 50%;
}

.responsibility-left{
    padding: 44px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 员工发展 */
.develop{
    margin: 0 auto;
    padding: 87px 0 135px;
    background: #F8F9FA;
}

.develop-box{
    width: 70%;
    margin: 0 auto;
    position: relative;
}

.develop-img{
    display: flex;
    justify-content: flex-end;
}

.develop-img img{
    width: 60%;
}

.develop-lump{
    position: absolute;
    top: 90px;
    left: 0;
    width: 116px;
    height: 116px;
    background: linear-gradient(306.51deg, #4D58FF -1.17%, #25FCDB 100%);
}

.develop-dialog{
    position: absolute;
    top: 143px;
    left: 40px;
    width: 100%;
    max-width: 815px;
    background-color: #FFFFFFE5;
    box-shadow: 0px 0px 5px 0px #0000001A;
    padding: 68px 44px 84px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.develop-dialog h3{
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 20px;
    color: #000000;
}

.develop-dialog p{
    font-size: 16px;
    line-height: 30px;
    color: #666666;
}

.develop-dialog button{
    width: 180px;
    height: 48px;
    border-radius: 48px;
    background:#3266E1;
    border: none;
    color: #fff;
    margin-top: 55px;
}

/*业务领域*/
.business-container{
    padding: 90px 0 120px;
}

.business-title{
    font-size: 36px;
    color: #000000;
    text-align: center;
}

.business-description{
    margin: 37px auto 0;
    max-width: 710px;
    font-size: 18px;
    line-height: 32.4px;
    color: #5E5E5E;
    text-align: center;
}

.features{
    width: 100%;
    background-color: #F8F9FA;
    padding: 70px 0 125px; 
}

.feature-list{
    width: 70%;
    margin: 53px auto 0;
    display: flex;
    justify-content: space-between;
    /*display: grid;*/
    /*grid-template-columns: repeat(3, calc((100% - 160px) / 3));*/
    /*grid-column-gap: 80px;*/
    /*grid-row-gap: 80px;*/
}

.feature-list:first{
    margin-bottom: 77px;
}

.feature-item{
    width: 30%;
    /*width: 100%;*/
    display: flex;
    gap: 15px;
}

.feature-icon{
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border: 2px solid #3266E1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon img{
    width: 28px;
    height: 28px;
}

.feature-content h2{
    font-size: 26px;
    color: #000000;
}

.feature-content p{
    font-size: 16px;
    line-height: 24px;
    color: #5E5E5E;
}

.advantages{
    padding: 66px 0 93px;
}

.advantage-item{
    width: 70%;
    margin: 66px auto 0;
    display: flex;
    gap: 55px;
}

.advantage-img{
    width: 40%;
}

.advantage-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advantage-content{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.advantage-content h3{
    font-weight: 500;
    font-size: 26px;
    line-height: 39px;
    color: #000000;
    margin-bottom: 10px;
}

.advantage-content p{
    font-size: 18px;
    line-height: 32.4px;
    color: #5E5E5E;
     display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow: hidden;
}

/*新闻中心*/
 .news-container{
    width: 80%;
    margin: 80px auto 0;
}

.hot{
    display: flex;
}

.hot .thumb{
    width: 43%;
}

.thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hot .news-details{
    width: 57%;
    padding: 60px 105px 43px 40px;
    background-color: #F8F9FA;
}

.hot .news-details .date{
    font-weight: 700;
    font-size: 37px;
    line-height: 42.55px;
    color: #000000;
}

.hot .news-details .title{
    margin-top: 33px;
    font-weight: 500;
    font-size: 23px;
    line-height: 35px;
    color: #222222;
}

.hot .news-details .description{
    margin-top: 10px;
    font-size: 15px;
    line-height: 22.5px;
    color: #666666;
    display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      overflow: hidden;
}

.hot .news-details button{
    margin-top: 74px;
    width: 180px;
    height: 48px;
    border-radius: 48px;
    background-color: #3266E1;
    color: #fff;
    border: none;
}

.news-list li{
    margin: 35px 0;
    display: flex;
    gap: 37px;
    padding: 41px;
    background-color: #F8F9FA;
}

.news-list .thumb{
    width: 30%;
}

.news-list .news-details{
    width: 70%;
    padding: 20px 0 13px;
}

.news-list .news-details .title{
    font-weight: 500;
    font-size: 22px;
    line-height: 35px;
    color: #000000;
}

.news-details .title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.news-list .news-details .description{
    font-size: 15px;
    line-height: 22.5px;
    margin: 8px 0 58px;
    color: #666666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.news-list .news-details button{
    width: 180px;
    height: 48px;
    border-radius: 48px;
    background-color: #fff;
    color: #3266E1;
    border: 1px solid #3266E1;
}

.news-list .news-date{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-list .news-date div{
    width: 96px;
    height: 96px;
    text-align: center;
    padding: 16px 19px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-list .news-date span{
    font-weight: 700;
    font-size: 37px;
    line-height: 42.55px;
    color: #000000;
}

.news-list .news-date p{
    font-size: 16px;
    line-height: 18.4px;
    color: #666666;
}
        
/*客户案例*/
.case-container{
    width: 80%;
    margin: 90px auto 60px;
}

.case-list{
    display: grid;
    grid-template-columns: repeat(3, 32%);
    grid-column-gap: 2%;
    grid-row-gap: 30px;
}

.case-content{
    background-color: #F8F9FA;
    padding: 30px;
}

.case-content h2{
    font-size: 20px;
    line-height: 26.4px;
    color: #000000;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.case-content p{
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #5E5E5E;
}

.case-img img{
    width: 100%;
    min-height: 290px;
    object-fit: cover;
    vertical-align: middle;
}

/*详情页样式*/
.article-container{
    max-width: 800px;
    margin: 0 auto;
    margin-top: 70px;
}

.article-title h1{
    font-weight: 700;
    font-size: 23px;
    line-height: 35px;
    color: #222222;
}

.article-date p{
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    margin-bottom: 40px;
}

.goBackBtn{
    display: flex;
    justify-content: center;
    border-top: 1px solid #E6E6E6;
    padding: 40px 0;
    margin-top: 30px;
    
}

#goBackBtn{
    width: 140px;
    height: 50px;
    line-height: 50px;
    border-radius: 70px;
    border: 1px solid #3266E1;
    color: #3266E1;
    text-align: center;
}

/*合作单位页面样式*/
 .unit-container{
    width: 80%;
    padding: 90px 0;
    margin: 0 auto;
}

.unit-list{
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(6, 15%);
    grid-column-gap: 2%;
    grid-row-gap: 30px;
}

.unit-item{
    border: 1px solid #E3E3E3;
}

.unit-item div{
    display: flex;
    justify-content: center;
    align-items: center;
}

/*联系我们页面样式*/
.contact-info{
    width: 80%;
    margin: 90px auto;
}

.contact-list{
    display: grid;
   grid-template-columns: 28% 32% 36%;
    grid-column-gap: 2%;
}

.contact-item{
    background-color: #F8F9FA;
    padding: 40px 30px 30px;
}

.contact-item img{
    width: 50px;
    height: 50px;
    margin-bottom: 77px;
}

.contact-item h3{
    font-size: 17px;
    line-height: 28px;
    color: #797979;
    margin: 0;
}

.contact-item p{
    word-break: break-word;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #2E2E37;
}

.map{
    margin-top: 30px;
}

.map img{
    width: 100%;
    height: 100vh;
    max-height: 495px;
    object-fit: cover;
}

.form-bg{
    width: 100%;
    padding: 90px 0;
    background-color: #F8F9FA;
}

.form-container{
    width: 80%;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.intro{
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro h2{
    font-weight: 500;
    font-size: 38px;
    line-height: 53.2px;
    color: #000000;
    margin-bottom: 16px;
}

.intro p{
    max-width: 540px;
    font-size: 17px;
    line-height: 28px;
    color: #000000;
}

.contact-form{
    width: 52%;
}

.form_row{
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.form-group{
    width: 100%;
    position: relative;
    margin-bottom: 16px;
}

.form_row .form-group{
    width: 50%;
}

.form_row .form-group img{
    width: 16px;
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
}

.form-group img{
    position: absolute;
    top: 20px;
    left: 18px;
}

.form-group input,
.form-group textarea{
    width: 100%;
    height: 52px;
    border-radius: 6px;
    border: 1px solid #00000033;
    background: transparent;
    padding-left: 40px;
}

.form-group textarea{
    height: 122px;
    padding-top: 16px;
}

.form-btn{
    display: flex;
    justify-content: flex-end;
}

.form-container form button{
    width: 190px;
    height: 48px;
    border-radius: 48px;
    background-color: #3266E1;
    border: none;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

/* Footer样式 */
footer {
    width: 100%;
    background-color: #161B25;
    display: flex;
    justify-content: center;
}

footer a {
    font-size: 16px;
    color: #fff;
}

footer p {
    font-size: 13px;
    color: #FFFFFF80;
}

.foot-pc {
    width: 100%;
}

.footer-top {
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 35px 0 65px;
}

.footer-left, .footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    white-space: nowrap;
}

.foot-logo {
    height: 60px;
    margin-bottom: 44px;
}

.foot-nav {
    height: 20px;
}

.foot-nav-list {
    display: flex;
    justify-content: space-between;
}

.foot-nav-list li {
    margin-right: 40px;
}

.foot-nav-list li:last-child{
    margin-right: 0px;
}

.footer-right-title {
    height: 60px;
    line-height: 60px;
}

.footer-right-title h2 {
    font-size: 20px;
    color: #fff;
}

.footer-info p{
    font-size: 16px;
    line-height: 24px;
}

.footer-bottom {
    width: 100%;
    height: 70px;
    border-top: 1px solid #FFFFFF1A;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    text-align: center;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-title p {
    opacity: 0; 
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}
.banner-title p.active {
    opacity: 1;
    transform: translateY(0);
}


/*分页*/
.pager .pagination{
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}
.pager li {
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 32px;
    margin: 0 5px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    background: #F8F9FA;
    border: none;
    color: #666666;
}
.pager li.active {
    background: #3266E1;
    border: none;
    color: #fff;
}
.pager li:hover {
    background: #3266E1;
    border: none;
}
.pager li:hover a ,
.pager li:hover span {
    color: #fff;
}
.pager li a
{
    display: inline-block;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-weight: 500;
    color: #666666;
}

/*荣誉资质*/
.about_honor{
    width: 80%;
    margin: 0 auto;
    padding: 95px 0;
}
.lmComTit{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.lmComTit.lmComTitTc{
    justify-content: center;
    text-align: center;
}

.mt50{
    margin-top: 50px;
}
.set_bg{
    height: 300px;
    display: flex;
    justify-content: center;
    padding-top: 40px;
}
.set_text{
    text-align: center;
    margin-top: 30px;
}
.set_bg img{
    display: block;
    height: auto;
    filter: drop-shadow(0px 0px 20px #0000001A);
}

.about_honor .hon_warp{
    position: relative;
}
.about_honor .hon_warp .swiper-button-prev:after,.about_honor .hon_warp .swiper-button-next:after{
    font-size: 28px;
}
.about_honor .hon_warp .swiper-button-prev{
    left: 0px;
    color: #3266E1;
}
.about_honor .hon_warp .swiper-button-next{
    right: 0px;
    color: #3266E1;
}

.advantage-content{
    padding: 52px 0 32px;
    display:flex;
    flex-direction: column;
    justify-content: space-between;
}

.file_btn{
    width: 180px;
    height: 48px;
    border-radius: 48px;
    border: 1px solid #3266E1;
    text-align: center;
}
.file_btn:hover{
    cursor: pointer;
}

.file_btn a{
    line-height: 48px;
    color: #3266E1;
}

.search{
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.search:hover{
    cursor: pointer;
}

  .navSearch {
    position: absolute;
    z-index: 6;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translate3d(0, -100%, 0);
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}
.navSearch.on{
    transform: translate3d(0, 0, 0);
    opacity: 1;
    pointer-events: auto;
}
.navSearch .search-box {
    display: flex;
    border: 1px solid #e5e5e5;
    padding-left: 15px;
    width: 40%;
    border-radius: 8px;
    overflow: hidden;
}
.navSearch .search-box input {
    flex: 1;
    outline: none;
    border: none;
    font-size: 14px;
    font-weight: 400;
    color: #808080;
    line-height: 20px;
    font-family: 'PingFang SC';
}
.navSearch .search-box .btn{
    background: #3266e1;
    padding: 10px 25px;
    border: none;
    outline: none;
    border-radius: 0px;
}
.navSearch .search-box .btn span{
    color: #fff;
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}
.navSearch .sClose{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
}
.navSearch .sClose a{
    color: #474747;
    font-size: 18px;
}

.navSearch .sClose a img{
    width: 36px;
    height: 36px;
}


/* 搜索结果页 */
.search-cont{
    padding: 80px 0 50px 0;
    border-top: 1px solid #E0E0E0;
    margin-bottom: 175px;
}
.search-cont .search-txt p{
	font-size: 20px;
	font-weight: 400;
	color: #333333;
	line-height: 28px;
    font-family: 'PingFang SC';
}
.search-cont .search-txt p>strong{
	color: #3266e1;
}
.search-cont .search-list{
	margin-top: 20px;
}
.search-cont .search-box p{
	font-size: 14px;
	font-weight: 500;
	color: #333333;
	line-height: 20px;
    font-family: 'PingFang SC';
}
.search-cont .search-box h2{
	font-size: 20px;
	font-weight: 400;
	color: #333333;
	line-height: 28px;
	margin-top: 10px;
    font-family: 'PingFang SC';
}
.search-cont .search-box{
	padding: 25px 0;
	position: relative;
}
.search-cont .search-box::before{
	content: "";
	width: 100%;
	height: 2px;
	background:#ECECEC;
	position: absolute;
	bottom: 0;
	left: 0;
}
.search-cont .left-search{
	display: flex;
    margin: 20px 0;
    border: 1px solid #3266e1;
    padding-left: 15px;
    border-radius: 25px;
    overflow: hidden;
}
.search-cont .left-search input {
    flex: 1;
    outline: none;
    border: none;
    font-size: 14px;
    font-weight: 400;
    color: #808080;
    line-height: 20px;
    background: #fff;
    font-family: PingFangSC-Regular, PingFang SC;
}
.search-cont .left-search button{
	outline: none;
    border: none;
    background: #3266e1;
    padding: 10px 25px;
}
.search-cont .left-search button span {
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 22px;
    vertical-align: middle;
    padding-left: 5px;
}

.wx{
    position: relative;
}

.wx_ewm{
   position: absolute;
    transform: translateX(-50%);
    left: 50%;
    display: none;
  width: 120px;
  height: 120px;
   
}

.wx_ewm img{
    width: 100%;
}
/*职位招聘*/
 .recruitment_section{
    width: 100%;
    background-color: #fff;
     
 }
  
.recruitment_container{
    width: 80%;
    margin: 0 auto;
    padding: 90px 0 225px;
}

.menu_item{
          margin-bottom: 20px;
    
}
      .menu_item:hover{
          cursor: pointer;
      }
  
      .menu_title{
        height: 84px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 41px;
         background-color: #F8F9FA; 
        transition: background-color 0.3s ease-in-out;
      }
  
      .menu_title h2{
        font-size: 20px;
        line-height: 28px;
        color: #000000;
      }
      .menu_box{
        height: 100%;
        background-color: #F8F9FA;
        padding: 43px 41px 65px;
        display: none;
        gap: 32px;
      }
  
