:root {
    --primary: #283b6a;
    --secondary: #21cdc0;
    --accent: #3d5b96;
    --light: #ffffff;
    --dark: #333333;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --radius: 8px;
}

.list {
    display: none;
}

.list.act {
    display: flex;
}

/*浮窗*/


.fudong .fudong01 {
    position: fixed;
    left: 30px;
    top: 200px;
    z-index: 666;
}

.fudong .fudong02 {
    position: fixed;
    right: 30px;
    top: 200px;
    z-index: 666;
}


/* 咨询开始 */

.zixun {
    position: relative;
    height: 530px;
    overflow: hidden;
}

.zixun img {
    display: block;
    position: absolute;
    width: 1903px;
    left: 50%;
    margin-left: -954px;
}


/*咨询 结束*/
/* 电话区域 */
.top_right {
    display: flex;
    align-items: center;

    border-radius: 30px;
    width: 260px;
    height: 60px;
    padding: 0 25px;
    transition: var(--transition);

    position: relative;
    overflow: hidden;
    justify-content: end;
    float: right;
}

.top_right:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 15px rgba(51, 61, 60, 0.4);
}

.top_right::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.top_right:hover::before {
    left: 100%;
}

.top_right img {
    height: 30px;

    margin-right: 15px;
}

.top_dh p {
    font-size: 24px;
    font-weight: 600;
    color: #d7000f;
    letter-spacing: 1px;
}

/* 顶部区域 */
.top_warp {
    background-color: #fff;
    ;
    padding: 15px 0;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.top_warp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), #ff6b6b, #f9c74f);
    animation: gradientLine 5s infinite linear;
}

@keyframes gradientLine {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.top_box {
    position: relative;
    z-index: 2;
}

.logo {
    text-align: center;
}

.wenzi01 {
    color: var(--light);
    font-size: 22px;
    padding: 15px 0;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out;
}


/*返回顶部*/

.fanhui {
    position: fixed;
    right: 0;
    top: 800px;
}

.fanhui a {
    width: 100px;
    height: 100px;
    display: block;
    background-color: #c9201d;
    border-radius: 15px;
}

.fanhui a img {
    display: block;
    margin: 0 auto;
    padding-top: 10%;
    margin-bottom: 5%;
}

.fanhui a p {
    text-align: center;
    font-size: 18px;

    color: white;
}


/*  导航开始*/

/* 导航区域 */
.nav_top {
    background: rgba(0, 0, 0, 0.4);
    padding: 0;
    height: 90px;
    box-shadow: var(--shadow);
    position: absolute;
    top: 90px;
    z-index: 1000;
    transition: var(--transition);
    width: 100%;
}

.nav_top.scrolled {
    height: 70px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.nav_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 100%;
}

.nav_box img {

    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));

    margin-top: -80px;
}

.nav {
    flex-grow: 1;
    width: 55%;
}

.nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.nav ul li {
    margin: 0 15px;
    position: relative;
}

.nav ul li a {
    display: block;
    color: #fff;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;

    position: relative;
    z-index: 1;
}

/* 导航悬停效果 */

.nav ul li a:hover {
    background-color: #d7000f;

    border-radius: 15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
}



/* 当前活动菜单项 */
.nav ul li.active a {
    background-color: #d7000f;
    border-radius: 15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: 600;
}




/*导航结束*/


/* banner 轮播图 */

.bannerPc {
    width: 100%;
    height: auto;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.banner-slides {
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease;
}

.banner-slides li {
    width: 33.333%;
    height: 100%;
    float: left;
    list-style: none;
}

.banner-slides img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.banner-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.banner-pagination span {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}

.banner-pagination span.active {
    background: #333;
}

/* 左右导航按钮 */
.banner-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.banner-btn.left {
    left: 20px;
}

.banner-btn.right {
    right: 20px;
}

.banner-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

/* 过渡动画 */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes rotate3D {
    0% {
        transform: rotateY(90deg);
        opacity: 0;
    }

    100% {
        transform: rotateY(0);
        opacity: 1;
    }
}

/* 响应式适配 */
@media (max-width: 768px) {
    .bannerPc {
        height: 400px;
    }

    .banner-btn {
        top: 40%;
    }
}

/*  轮播图结束*/






.top-shuzi {

    margin-top: -160px;
    margin-bottom: 50px;

}


.top-shuzi .top-shuzi-box {
    background-color: #fff;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
}

.top-shuzi .top-shuzi-box ul {
    justify-content: space-around;

}

.top-shuzi .top-shuzi-box ul li {

    width: 18%;
    padding: 60px 0;
    text-align: center;
}


.top-shuzi .top-shuzi-box ul li h2 {
    font-size: 45px;
    color: #d7000f;
    padding-bottom: 10px;
    position: relative;

}

.top-shuzi .top-shuzi-box ul li h2::after {
    content: "＋";
    position: absolute;
    top: -0.5em;
    right: 32px;
    font-size: 0.55em;
    color: red;
}

.top-shuzi .top-shuzi-box ul li:nth-child(1) h2::after {

    content: "年";
    right: 67px;
    font-size: 0.4em;
    top: -0.3em;
}

.top-shuzi .top-shuzi-box ul li:nth-child(2) h2::after {


    right: 25px;
}

.top-shuzi .top-shuzi-box ul li:nth-child(3) h2::after {


    right: 35px;
}

.top-shuzi .top-shuzi-box ul li:nth-child(4) h2::after {


    right: 65px;
}

.top-shuzi .top-shuzi-box ul li:nth-child(5) h2::after {


    right: 55px;
}



.top-shuzi .top-shuzi-box ul li p {
    font-size: 22px;
    color: #333;
    font-weight: 600;
}















/*数字滚动开始*/


.shuzi {
    margin: 0 auto;
    width: 100%;
    position: relative;
    margin-top: 100px;
}

.shuzi_box {



    padding: 20px 0;

    overflow: hidden;
    z-index: 1;

}


.shuzi ul {
    display: flex;
    justify-content: space-between;
    border-radius: 24px;
    padding: 0 20px;
}

.shuzi ul li {
    width: 30%;
    text-align: center;
    color: #fff;
    padding: 80px 10px;
    border-radius: 18px;
    margin: 35px 5px;
    position: relative;
    overflow: hidden;
    background: white;
    transition: var(--transition);

    z-index: 1;
}

.shuzi ul li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #ffffff;
    transition: var(--transition);
    z-index: -1;
    opacity: 0;
}

.shuzi ul li:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top: #d7000f solid 1px;
}

.shuzi ul li:hover::after {
    height: 100%;
    opacity: 1;
}



.shuzi ul li:hover h2 {
    color: #d7000f;
    font-weight: 600;
}

.shuzi ul li:hover p {
    color: #d7000f;
}

.shuzi ul li:hover .icon-container {
    background: rgba(255, 255, 255, 0.15);
}

.icon-container {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 62, 80, 0.05);
    transition: var(--transition);
}

.shuzi ul li img {
    margin-top: 20px;
    height: 100px;
    transition: var(--transition);
}

.shuzi ul li h2 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 55px;
    padding-top: 15px;
    color: var(--dark);
    transition: var(--transition);
    position: relative;
    padding-bottom: 25px;
}

.shuzi ul li h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: var(--transition);
}

.shuzi ul li:hover h2::after {
    background: #d7000f;
    width: 70px;
}

.shuzi ul li p {
    font-size: 1rem;
    color: #6c757d;
    transition: var(--transition);
    line-height: 30px;
}


/* 响应式设计 */
@media (max-width: 992px) {
    .shuzi ul {
        flex-wrap: wrap;
    }

    .shuzi ul li {
        width: 48%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .shuzi ul li {
        width: 100%;
    }

    .header h1 {
        font-size: 2.2rem;
    }

    .header p {
        font-size: 1rem;
    }
}

/* 动画效果 */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}


.shuzi ul li:nth-child(1):hover img[src="/template/default/index/img/shuzi011.png"] {
    content: url("/template/default/index/img/shuzi012.png");
}

.shuzi ul li:nth-child(2):hover img[src="/template/default/index/img/shuzi021.png"] {
    content: url("/template/default/index/img/shuzi022.png");
}

.shuzi ul li:nth-child(3):hover img[src="/template/default/index/img/shuzi031.png"] {
    content: url("/template/default/index/img/shuzi032.png");
}



/*数字滚动 结束*/


/*硬核优势*/


/*优势 开始*/


.yuyue {

    margin-top: 100px;
    background: url(../img/ys_bgc.jpg)no-repeat top center;
    height: auto;
    padding-top: 50px;
}

.yuyue ul {
    padding-top: 50px;
}

.yuyue .c_top h1 {
    color: #fff;
}

.yuyue .c_top p {
    color: #fff;

}

.yuyue ul li {
    width: 49.1%;
    background-color: #fff;
    margin-bottom: 85px;
    padding-bottom: 30px;
}

.yuyue ul li img {
    padding-bottom: 15px;
}

.yuyue ul li p {
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    color: #666;
    padding-left: 10px;
    padding-right: 15px;


}




/*优势 开始*/


/* 赋能体系*/
.luodi {
    padding-top: 50px;
}

.luodi .luodi_left {

    width: 49%;
}

.luodi .luodi_con {
    padding-top: 35px;
}

.luodi .luodi_con ul {
    width: 49%;
}

.luodi .luodi_con ul li {
    width: 49%;

}

.luodi .luodi_left h2 {
    font-size: 18px;
    padding: 10px 0;
}

.luodi .luodi_left p {
    font-size: 16px;
    padding: 10px 0;
}

.luodi .luodi_con ul li p {
    font-size: 16px;
    padding: 10px 0;
}






/*<!-- 点击、鼠标移入 切换 开始-->*/


.funeng {
    padding-top: 60px;
    margin-bottom: 50px;
}

.funeng .c_top {
    padding-top: 30px;
}


.funeng dl {
    width: 18%;

    background-color: rgba(127, 127, 127, .7);

    position: absolute;

}

.funeng dl dt {

    padding-left: 30px;
    height: 105px;
    padding-top: 40px;
    border-bottom: 1px #fff solid;
    display: flex;
    justify-content: space-around;
    align-items: start;
}

.funeng dl dt p {
    font-size: 22px;
    color: #fff;
    padding-bottom: 5px;


}

.funeng dl .no_li {
    background-color: #00aeef;
}

.funeng dl .no_li p {
    color: #fff;
}

.funeng dl dt:hover {
    background-color: #00aeef;
}

.funeng dl dt:hover p {
    color: #fff;
}


/*切换   内容*/


/*<!-- 点击、鼠标移入 切换 结束-->*/


/*<!--服务开始-->*/


.fuwu {
    background: url(../img/fuwu_bgc.jpg) no-repeat top center;
    height: 996px;
}

.fuwu .bh1 {
    text-align: left;
    color: #fff;
    font-size: 36px;
    padding-top: 45px;
}

.fuwu .bp {
    text-align: left;
    color: #fff;
    padding-top: 15px;
    padding-bottom: 35px;
    font-size: 16px;

}

.fuwu ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 35px;
}

.fuwu ul li {
    width: 26%;
    background-color: #ebebeb;
    border-radius: 50px;
    display: flex;
    justify-content: start;
    align-items: start;
    height: 60px;
    margin-bottom: 30px;
}

.fuwu ul li:hover {
    background-color: #00aeef;
}

.fuwu ul li:hover p {
    color: #fff;
}


.fuwu ul li img {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
}

.fuwu ul li p {
    font-size: 22px;
    color: #333333;
    line-height: 60px;
    font-weight: 400;

}

.fuwu .fuwu_img02 {
    display: block;
    margin: 0 auto;
}

.fuwu .fuwu_a {
    display: flex;
    justify-content: space-around;
    padding-top: 40px;
}

.fuwu .fuwu_a h3 {

    color: #FFFFFF;
    font-size: 26px;
    line-height: 120px;
    padding-left: 120px;

}


/*<!--服务 结束-->*/


.kehu {
    padding-top: 100px;
}


.kehu img {
    width: 65%;
}

.kehu .kehu_con {
    padding-top: 50px;
    flex: 0 0 100%;
    display: flex;
    padding: 20px 0;
    align-items: center;
}

.kehu .kehu_wenzi {
    width: 30%;
}

.kehu .kehu_wenzi {
    padding-top: 50px;

}

.kehu .kehu_wenzi h2 {
    font-size: 26px;
    padding-bottom: 20px;
}

.kehu .kehu_wenzi p {
    font-size: 14px;
    color: #666;
    line-height: 26px;
}

.kh_box {
    position: relative;
    overflow: hidden;
}

.jiantou {
    position: absolute;
    right: 0;
    bottom: 30px;
}

.jiantou button {
    outline: none;
    border: none;

    width: 40px;
    height: 40px;
    font-size: 26px;
    color: #041e2b;
    background-color: #f5f6f8;
}

.jiantou button:hover {
    background-color: #041e2b;
    color: #fff;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background-color: #041e2b;
}

/*公司介绍*/

.jieshao {

    background: url(../img/js_bgc.jpg) no-repeat top center;
    height: 910px;

}

.jieshao .jieshao_box {
    margin-top: 130px;
}

.jieshao .js_c {
    width: 50%;
}


.jieshao .js_c h3 {
    font-size: 26px;
    color: #d7000f;
    padding-bottom: 10px;
    font-weight: 600;
    margin-top: 50px;
}


.jieshao .js_c h5 {
    font-size: 18px;
    color: #d7000f;
    padding-bottom: 10px;
    font-weight: 600;
    padding-bottom: 30px;
}




.jieshao .js_c h2 {
    font-size: 30px;
    color: #666;
    padding-bottom: 30px;
    font-weight: 600;
}


.jieshao .js_c p {
    color: #666;
    font-size: 14px;
    text-indent: 2em;
    line-height: 30px;

}

.jieshao .js_js {

    background-color: #fff;
    border-radius: 25px;
    box-shadow: var(--shadow);

    padding: 15px;
    width: 1400px;
    margin: 0 auto;
    margin-top: 50px;
    padding-bottom: 135px;
}

.jieshao .js_js img {
    margin-top: -300px;
    padding-left: 50px;


}

.jieshao .js_js .js_js_wz {
    width: 65%;
    padding-top: 80px;
}

.jieshao .js_js .js_js_wz p {
    color: #666;
    font-size: 18px;
    line-height: 40px;
}

.jieshao .js_js .js_js_wz p b {
    color: var(--secondary);
    font-size: 22px;
}

/*公司介绍*/


/*优势3*/


.ys3 ul li {


    width: 31%;

    position: relative;
    margin-bottom: 30px;
}


.ys3 ul li img {
    display: block;
    margin: 0 auto;

    width: 100%;
}

.ys3 ul li h2 {
    text-align: center;
    font-size: 26px;
    padding-top: 20px;
    position: absolute;
    top: 30%;
    left: 25%;
    width: 50%;

    height: 50px;
    color: #FFFFFF;
}

.ys3 ul li .ys_mtk {

    position: absolute;
    top: 0;
    background-color: rgba(51, 51, 51, .8);
    height: 100%;
    display: none;
    width: 100%;
}

.ys3 ul li:hover .ys_mtk {
    display: block;

}

.ys3 ul li:hover h2 {
    display: none;

}

.ys3 ul li .ys_mtk h3 {
    text-align: center;
    font-size: 26px;
    padding-top: 120px;
    color: #FFFFFF;
}

.ys3 ul li .ys_mtk p {
    text-align: center;
    font-size: 18px;
    padding-top: 50px;
    color: #FFFFFF;
    padding-left: 25px;
    padding-right: 25px;
    line-height: 30px;
}

/*合作企业*/
.hzqy {


    background-color: #F6F1EC;
}


.hzqy ul li {

    width: 31%;
    margin-bottom: 30px;

}

.hzqy ul li:nth-child(even) {
    border: 2px #654915 solid;

}

.hzqy ul li:nth-child(5) h2 {

    line-height: 200px;
    font-size: 36px;

}

.hzqy ul li h2 {


    height: 50px;
    text-align: center;
    color: #674913;
    line-height: 50px;
    font-size: 26px;
}

.hzqy ul li img {
    margin: 0 auto;
    display: block;


}

.hzqy ul li p {
    color: #333;
    background: url(../img/ysp.png) no-repeat 10px 13px;
    font-size: 16px;
    line-height: 40px;
    padding: 0 25px;
}




.team {
    background: url(../img/zhichi_bgc.jpg) no-repeat top center;
}

dl {
    justify-content: center;
}

.team .a {
    background: url(../img/a.png) no-repeat top center;
    width: 312px;
    border: 0;
    height: 65px;
    line-height: 65px;
    font-size: 22px;
    margin-top: 10px;
}

.team dl dt {
    border: #193c96 solid 1px;
    width: 200px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    font-size: 20px;


}

.team dl dt:hover {
    background-color: #193c96;

}

.team dl dt:hover a {
    color: #FFFFFF;

}

.team ul li {

    margin-bottom: 30px;

    width: 23.9%;

}


.team ul li img {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding-top: 20px;
}


.team ul li p {
    text-align: center;
    font-size: 20px;

    color: #fff;
    padding: 10px 0;
    margin: 0 auto;
    margin-top: -40px;
    background-color: rgba(51, 51, 51, .8);
    position: relative;

}

.zw {
    background: url(../img/pk_bgc.jpg) no-repeat top center;
    height: 880px;
}

.zw .c_top h1 {
    color: #FFFFFF;
    padding-top: 50px;
}


/*方案*/

.fangan .w a {

    background-color: #E62229;
    color: #FFFFFF;
    width: 800px;
    border-radius: 25px;
    border: 0;
    margin-top: 50px;
}

.fangan {

    position: relative;
}

.fangan .fangan_c {}

.fangan .liucheng {
    justify-content: space-around;
    margin-top: 30px;
}

.fangan .liucheng li:nth-child(even) {

    padding-top: 60px;
    width: 5%;
}

.fangan .fa2 {
    justify-content: space-around;
    margin-top: 60px;
}

.fangan ul li {}

.fangan ul li p {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 20px;
    color: #333;
}

.fangan h2 {
    padding-top: 30px;
}

.fangan .bp {
    padding-top: 20px;
}


.fangan .dianji {
    width: 38%;
    margin: 0 auto;
    border: 2px #E4AC03 solid;
    border-radius: 25px;
    margin-top: 30px;
    height: 50px;
    /*justify-content: space-around;*/
}

.fangan .dianji a {
    display: block;
    width: 30%;
    text-align: center;
    background-color: #E4AC03;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    line-height: 50px;
    color: #FFFFFF;
    font-size: 20px;
}

.fangan .dianji p {
    display: block;
    width: 70%;
    text-align: center;

    line-height: 50px;
    color: #E4AC03;
    font-size: 20px;
}

.lc {
    background: url(../img/yewu_bgc.jpg) no-repeat top center;

}

.lc .w>img {
    display: block;
    margin: 0 auto;

}

/*方案*/

.jmd {
    background: url(../img/jiameng_bgc.jpg) no-repeat top center;
}


/*jiameng*/

.jiameng {}

.jiameng ul li {
    padding-bottom: 30px;

    margin-bottom: 30px;

}

.jiameng ul li img {
    display: block;
    margin: 0 auto;

}

.jiameng ul li p {
    text-align: center;
    font-size: 18px;
    line-height: 40px;
    height: 40px;
    margin-top: -40px;

    background-color: rgba(51, 51, 51, .8);
    color: #FFFFFF;
    position: relative;
}

.jiameng ul {
    padding-top: 30px;
}

.jiameng ul li {


    text-align: center;
    font-size: 20px;


}

.jiameng ul li p {}

/*荣誉*/
.zs {}

/*  */

.zs_con {
    position: relative;
    width: 1200px;
    margin: 0 auto;

}

.zs_con .swiper-container {}

.zs_con .swiper-slide {
    width: 520px;

}


.zs_con .swiper-slide img {
    display: block;
    width: 520px;

}


.zs_con .swiper-slide p {
    line-height: 98px;
    padding-top: 0;
    text-align: center;
    color: #636363;
    font-size: 1.1em;
    margin: 0;
}

.zs_con .swiper-pagination {
    width: 100%;
    /* bottom: 20px; */
}

.zs_con .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
    border: 3px solid #fff;
    background-color: #d5d5d5;
    width: 10px;
    height: 10px;
    opacity: 1;
}

.zs_con .swiper-pagination-bullets .swiper-pagination-bullet-active {
    border: 3px solid #cfaf47;
    background-color: #fff;
}

.zs_con .swiper-button-prev {
    left: -30px;
    width: 45px;
    height: 45px;
    background: url(../images/Arrowleft.png) no-repeat;
    background-position: 0 0;
    background-size: 100%;
}

.zs_con .swiper-button-prev:hover {
    /* background-position: 0 -46px; */
    background-size: 100%
}

.zs_con .swiper-button-next {
    right: -30px;
    width: 45px;
    height: 45px;
    background: url(../images/Arrowright.png) no-repeat;
    /* background-position: 0 -93px; */
    background-size: 100%;
}

.zs_con .swiper-button-next:hover {
    /* background-position: 0 -139px; */
    background-size: 100%;
}

.zs {


    padding-bottom: 50px;
}

/*荣誉*/


/*行业*/

.hy {

    margin-top: -50px;
}

.hy img {
    padding: 30px 0;
}


/*案例*/


.an_li {}

.an_li ul {
    justify-content: space-around;
}

.an_li ul li {
    padding-top: 30px;


}

.an_li ul li img {
    display: block;
    width: 100%;
    width: 100%;
}

.an_li ul li p {

    background-color: #172980;
    text-align: center;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    height: 50px;
    line-height: 50px;
    margin-top: -50px;
    position: relative;
    opacity: 0.9;
}


.an_li a {

    margin-top: 80px;

}

.an_li a:hover {
    background-color: #158ee4;
    color: #FFFFFF;
}

/*案例*/


/* 动态 开始 */

.xinwen {

    margin-top: 50px;
}

.xinwen .c_top {
    padding: 35px 0 40px 0;
}

.xinwen .xinwen_c {
    background-color: #fff;
    height: 591px;
    box-shadow: #1e1b1b -3px 2px 36px -18px;
    border-radius: 15px;

}

.xinwen .xinwen_c .xinwen_l {
    width: 45%;
    padding-left: 30px;
}

.xinwen .xinwen_c .xinwen_l img {
    width: 100%;
    padding: 50px 0 20px 0px;
}

.xinwen .xinwen_c .xinwen_l h2 {
    color: #333;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 15px;

}

.xinwen .xinwen_c .xinwen_l p {
    color: #333;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 25px;
    line-height: 30px;
}


.rect-with-arrow {
    background: url("../img/xinwen_a.png") no-repeat top left;
    height: 34px;
    display: block;
    color: #fff;
    font-size: 16px;
    padding: 5px 0 0 15px;
}


.xinwen .xinwen_c .xinwen_r {
    width: 43%;
    padding-top: 50px;
    margin-right: 15px;

}


.xinwen .xinwen_c .xinwen_r .xinwen_r_top {
    background-color: #fff;
    align-items: start;
    padding: 10px 0 10px 10px;

}

.xinwen .xinwen_c .xinwen_r .xinwen_r_top img {
    width: 45%;
}

.xinwen .xinwen_c .xinwen_r .xinwen_r_top .xinwen_r_top_wenzi {
    width: 50%;
    padding-right: 15px;
}

.xinwen .xinwen_c .xinwen_r .xinwen_r_top .xinwen_r_top_wenzi h2 {
    color: #02b3c3;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 15px;
    padding-top: 30px;
}


.xinwen .xinwen_c .xinwen_r .xinwen_r_top .xinwen_r_top_wenzi p {
    color: #333;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 25px;
}


.xinwen .xinwen_c .xinwen_r ul {
    /*background: rgba(54, 138, 148, 0.8);*/

}


.xinwen .xinwen_c .xinwen_r ul li {

    padding: 15px 0;

}

.xinwen .xinwen_c .xinwen_r ul li a {

    color: #333;

    justify-content: space-between;
    display: flex;
    padding: 0 20px;
    font-size: 16px;
}


/* 动态 结束 */


/*  底部开始*/

.footer_box {

    padding-top: 50px;
    background-color: #d7000f;
}

.footer_box .nav {
    width: 40%;
    margin-top: 60px;
    padding-left: 50px;
}

.footer_box .nav h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 35px;
}

.footer_box .nav ul {

    justify-content: start;
}

.footer_box .nav ul li {
    margin: 0;
    width: 50%;
}

.footer_box .nav ul li a {
    color: #FFFFFF;
    text-align: left;
    padding: 8px 0;
    font-size: 16px;
}


.footer {}


.footer .footer_right {}


.footer .footer_left {


    /* padding-top: 20px; */
    padding-left: 20px;
}

.footer .footer_left h2 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 500;
    margin-top: 15px;
    padding-top: 20px;
    padding-bottom: 30px;
    border-top: 1px #ed8088 solid;
}

.footer .footer_left h3 {

    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding-top: 10px;
}

.footer .footer_left>img {}


.footer .footer_left p {
    color: #fff;
    font-size: 18px;
    margin-top: 10px;
}

.footer .footer_left p img {
    padding-right: 25px;

}

.footer .footer_left>h6 {}

.footer .fot_js {
    width: 12%;
}

.footer .fot_js div {}

.footer .fot_js p {
    color: #fff;
    font-size: 16px;
    margin-top: 15px;
    text-align: center;
}


.footer .fot_js h3 {
    font-size: 28px;
    padding-bottom: 35px;
}

.footer .fot_js img {
    padding-top: 30px;
}


.footer .fot_js .fot_r {
    padding-top: 150px;
}

/*搜索*/


.footer .nav_r {

    width: 30%;

}

.footer .nav_r {
    /* border-radius: 5px; */
    margin-top: 90px;
    position: relative;
}

.footer .nav_r input {

    border-radius: 50px;
    width: 320px;
    height: 35px;

    text-indent: 3em;
    outline: 0;
    margin-right: -20px;
    background-color: #0060ff;
    border: 0;
}

.footer .nav_r button {
    border: 0;
    cursor: pointer;
    position: absolute;
    right: 56px;
    font-size: 16px;
    width: 23px;
    top: 5px;

    background: url(../img/sousuo.png) no-repeat top;
    height: 23px;

}


/*搜索*/


.footer_bom {
    border-top: 1px #ed8088 solid;
    margin-top: 50px;
}

.footer_bom>p {
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 10px 0;
}

.footer_bom>p>a {
    color: #ff5400;
}


/*底部结束 */


.in_14_11 {
    width: 100%;
    float: left;
    margin: -1px 0 3px 0;
    background: #fff;
    padding: 40px 0;
    -moz-box-shadow: 1px 1px 5px #CCC;
    -webkit-box-shadow: 1px 1px 5px #CCC;
    box-shadow: 1px 1px 5px #CCC;
}

.in_14_11 li {
    width: 25%;
    float: left;
    text-align: center;
    position: relative;
    color: #333333;
    font-size: 24px;
}

.in_14_11 li b {
    font-size: 50px;
    color: #d90000;
    margin: 0 0 10px 0;
}

.in_14_11 li strong {
    color: #d90000;
}

.in_14_11 li i {
    width: 25px;
    line-height: 25px;
    position: absolute;
    left: 190px;
    top: 30px;
    background: #333333;
    color: #fff;
    border-radius: 25px;
    font-size: 20px;
    font-weight: bold;
}







/* 内页 */

/* 总裁 */
.tongdian {
    background: url(../img/tongdian_bgc.jpg) no-repeat top center;
    padding-top: 50px;
}

.tongdian ul {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.tongdian ul li {
    width: 33%;
    height: 475px;

}

.tongdian ul li:nth-child(1) {
    background: url(../img/tongdian01.png) top center no-repeat;
    background-size: contain;
}

.tongdian ul li:nth-child(2) {
    background: url(../img/tongdian02.png) top center no-repeat;
    background-size: contain;
}

.tongdian ul li:nth-child(3) {
    background: url(../img/tongdian03.png) top center no-repeat;
    background-size: contain;
}

.tongdian ul li:nth-child(4) {
    background: url(../img/tongdian04.png) top center no-repeat;
    background-size: contain;
}

.tongdian ul li:nth-child(5) {
    background: url(../img/tongdian05.png) top center no-repeat;
    background-size: contain;
}

.tongdian ul li h2 {
    color: #d7000f;
    font-size: 20px;
    text-align: center;
    padding-bottom: 15px;
    padding-top: 200px;
}

.tongdian ul li p {
    font-size: 12px;
    line-height: 25px;
    color: #666;
    text-align: center;
}

.tongdian ul li:nth-child(2) p {
    line-height: 20px;
}

.tongdian ul li:nth-child(5) p {
    line-height: 20px;
}

.tongdian ul li:nth-child(4) {
    margin-top: -280px;
}

.tongdian ul li:nth-child(5) {
    margin-top: -280px;
}



/* liangdian */


.liangdian {
    background: url(../img/liangdian00.png) no-repeat bottom center;
    padding-top: 80px;
    height: 620px;
}

.liangdian_box {
    position: relative;
    height: 100%;
}

.liangdian ul {

    padding-top: 85px;
}

.liangdian ul li {
    background: url(../img/liangdian01.png) no-repeat top center;
    width: 321px;
    height: 321px;
    background-size: contain;
    position: absolute;
    text-align: center;
    opacity: 0.7;
}

.liangdian ul li h2 {
    color: #fff;
    font-size: 28px;
    padding-top: 70px;
    padding-bottom: 30px;
}

.liangdian ul li p {
    color: #fff;
    font-size: 16px;
    padding-top: 15px;
}



.liangdian ul li:nth-child(even) {
    background: url(../img/liangdian02.png) no-repeat top center;

}

.liangdian ul li:nth-child(even) h2 {
    padding-top: 40px;
}

.liangdian ul li:nth-child(1) {
    bottom: 0;
    left: 0;

}

.liangdian ul li:nth-child(2) {
    bottom: 180px;
    left: 190px;

}

.liangdian ul li:nth-child(3) {
    bottom: 285px;
    left: 450px;

}

.liangdian ul li:nth-child(4) {
    bottom: 180px;
    left: 710px;

}

.liangdian ul li:nth-child(5) {
    bottom: 0;
    left: 880px;

}


.liangdian ul li:hover {
    opacity: 1;
}

.kecheng {

    background: url(../img/kc_bgc.jpg) no-repeat top center;
    padding: 50px 0;
    margin-top: 80px;
}

.kecheng .c_top h1 {
    color: #fff;
}

.kecheng .c_top p {
    color: #fff;
}


.kecheng ul li {
    background-color: #fff;
    width: 25%;
}

.kecheng ul .kc_wz h2,
h5 {

    padding: 30px 0 0 20px;

}

.kecheng ul .kc_wz h2 {
    font-size: 18px;
    line-height: 30px;
}


.kecheng ul .kc_wz h5 {
    font-size: 16px;
    color: #999;
    line-height: 30px;
}


/* 专家 */


.zhuanjia {
    padding: 150px 0 50px 0;
}

.zhuanjia .zj_list {
    width: 75%;
    align-items: start;
}

.zhuanjia .zj_list img {
    width: 50%;
}

.zhuanjia .zj_list .zj_js {
    width: 50%;
    background-color: #f2f2f2;
    margin-top: 120px;
    padding-bottom: 50px;

}

.zhuanjia .zj_list .zj_js h2 {
    padding: 50px 20px 80px 30px;
    font-size: 22px;
}

.zhuanjia .zj_list .zj_js h2 span {
    color: #999999;
    font-size: 16px;
}

.zhuanjia .zj_list .zj_js p {
    padding: 0 20px 0 30px;
    font-size: 16px;
    color: #666;
    line-height: 28px;
}


.zhuanjia ul {
    width: 20%;
    align-items: start;
}

.zhuanjia ul li {
    margin-bottom: 20px;
}

.zhuanjia ul .zj_ac img {
    border: 3px #d7000f solid;
}


.zhuanjia ul li:hover img {
    border: 3px #d7000f solid;
    border-radius: 5px;
}

.zhuanjia ul li img {
    border: 3px #f7f7f7 solid;
    display: block;
    width: 70%;
}








.jiazhi {
    padding: 50px 0 100px 0;
    background: url(../img/jiazhi_bgc.jpg) no-repeat top center;
}

.jiazhi .c_top h1,
.jiazhi .c_top p {
    color: #fff;
}

.jiazhi .jiazhi_con {
    align-items: start;
}

.jiazhi .jiazhi_con img {
    width: 54%;
}

.jiazhi .jiazhi_con ul {
    width: 44%;
}

.jiazhi .jiazhi_con ul li {
    display: flex;
    color: #fff;
    padding-bottom: 20px;

}

.jiazhi .jiazhi_con ul li h1 {
    font-size: 50px;
    padding-right: 15px;
}


.jiazhi .jiazhi_con ul li h2 {
    font-size: 18px;
    padding-bottom: 5px;

}

.jiazhi .jiazhi_con ul li p {
    font-size: 16px;

}

.jiazhi .jiazhi_con ul li:nth-child(2) {
    padding-bottom: 20px;
}

.jiazhi .jiazhi_con ul li:nth-child(3) {
    padding-top: 15px;
}

.jiazhi .jiazhi_con ul li:nth-child(4) {
    padding-top: 25px;
}

.jiazhi .jiazhi_con ul li:nth-child(5) {
    padding-top: 15px;
}



.xianchang {
    padding: 30px 0;
}

.xianchang ul li {
    width: 31%;
    padding-top: 30px;
}

.xianchang ul li img {
    width: 100%;
}



/* 认知课程 */





.tongdian2 {
    padding: 50px 0;
}



.kctd {
    background: url(../img/kctd_bgc.jpg)no-repeat top center;
    padding-bottom: 50px;
    height: 800px;
}


.kctd .c_top {
    padding-top: 50px;

}


.kctd ul {
    float: right;
    width: 35%;
    padding-top: 120px;
}

.kctd ul li {
    margin-bottom: 25px;
    display: flex;
    justify-content: start;
    align-items: start;
}

.kctd ul li h2 {
    margin-right: 15px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    background-color: #db343d;
    text-align: center;
    color: #fff;
    line-height: 45px;
    font-size: 22px;

}

.kctd ul li h3 {
    margin-right: 15px;
    border-radius: 50%;
    /* width: 45px; */
    /* height: 45px; */
    /* background-color: #db343d; */
    text-align: center;
    color: #3a3333;
    line-height: 45px;
    font-size: 20px;
}






/* 专家 */


.zhuanjia2 {
    padding: 150px 0 50px 0;
}

.zhuanjia2 .zj_con {
    align-items: start;
}

.zhuanjia2 .zj_con img {
    width: 35%;
}

.zhuanjia2 .zj_con .zj_js {
    width: 65%;
    background-color: #f2f2f2;
    margin-top: 120px;
    padding-bottom: 50px;

}

.zhuanjia2 .zj_con .zj_js h2 {
    padding: 50px 20px 30px 30px;
    font-size: 22px;
}

.zhuanjia2 .zj_con .zj_js h3 {
    color: #999999;
    padding: 0px 0px 10px 30px;
    font-size: 16px;
}

.zhuanjia2 .zj_con .zj_js p {
    padding: 20px 18px 0 30px;
    font-size: 18px;
    color: #666;
    line-height: 35px;

}



/* renqun */



.renqun {
    padding: 30px;
}

.renqun ul li {
    width: 18%;
    padding-top: 30px;
}


.renqun ul li img {
    height: 80%;
    display: block;
    margin: 0 auto;
}

.renqun ul li p {
    text-align: center;
    padding-top: 16px;
    font-size: 20px;
    font-weight: 600;
}









.shouhuo {
    background: url(../img/shouhuo_bgc.jpg)no-repeat top center;
    padding-bottom: 50px;
    margin-top: 50px;
}
.shouhuo .c_top {
    padding-top: 50px;
}

.shouhuo .c_top h1,
.shouhuo .c_top p {
    color: #fff;
}

.shouhuo ul li {
    background-color: #fff;
    width: 31%;
    margin-top: 35px;
    padding: 65px 0;
    text-align: center;
}

.shouhuo ul li img{
    padding-bottom: 25px;
}

.shouhuo ul li h2{
    font-size: 20px;
    color: #d7000f;
    padding-bottom: 25px;
}
.shouhuo ul li p{
    line-height: 30px;
    font-size: 16px;
}




.html5zoo-img-box-0 img{
    margin:  0 auto !important;
}








