/*Pc端*/
@media screen and (min-width: 1600px) and (max-width: 1920px) {
    /* 头部导航开始 */
    .header {
        width: 100%;
        /* background: #fff; */
        height: 90px;
        line-height: 72px;
        width: 100%;
        top: 0;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        position: absolute;
        z-index: 333;
    }

    .header-fixed {
        position: fixed;
        z-index: 999;
        height: 90px;
        line-height: 70px;
        transition: .4s;
        border-bottom: 1px solid #cecece;
        background: #fff;
    }

    .header-fixed .head-nav .nav-list .nav-item a {
        display: block;
        color: #000000;
        position: relative;
        font-size: 16px;
    }

    .header-fixed .head-nav .nav-list .nav-item .active a {
        color: #000000;
    }

    .header-fixed .head-logo h1 a {
        background: url("../images/logo1.svg") no-repeat;
        display: block;
        width: 233px;
        height: 48px;
    }

    .header-fixed .head-nav .nav-list .nav-item1 a {
        display: flex;
        align-items: center;
        margin-right: 35px;
        color: #300f60;
        font-weight: bold;
    }

    .header-fixed .head-nav .nav-list .nav-item1 h1 {
        background-image: url("../images/icon._cj1.png");
        width: 30px;
        height: 30px;
    }

    .header-fixed .head-nav .nav-list .nav-item3 {
        width: 90px;
        height: 40px;
        line-height: 40px;
        border-radius: 30px;
        display: block;
        text-align: center;
        margin-right: 35px;
        border: 1px solid #300f60;
    }

    .header-fixed .head-nav .nav-list .nav-item3 a {
        color: #300f60;
        font-weight: bold;
    }

    .header .container {
        width: 94%;
        max-width: 1600px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }

    .header-title {
        width: 100%;
        margin: 60px auto 0px auto;
        position: absolute;
        z-index: 332;
        top: 30px;
    }

    .header-title .container {
        width: 94%;
        max-width: 950px;
        margin: 60px auto 0px auto;
    }

    .header-title .container h1 {
        font-size: 50px;
        color: white;
        margin-bottom: 30px;
        font-weight: bold;
    }

    .header-title .container h2 {
        font-size: 30px;
        color: white;
    }

    .header-title .container .free {
        width: 170px;
        height: 55px;
        background: #fcc718;
        color: white;
        text-align: center;
        border-radius: 30px;
        line-height: 55px;
        margin-top: 60px;
        display: block;
    }

    .head-logo {
        width: 15%;
    }

    .head-logo h1 a {
        background: url("../images/logo.svg") no-repeat;
        display: block;
        width: 233px;
        height: 48px;
    }

    .nav {
        width: 44%;
        margin-right: auto;
        padding-left: 92px;
    }

    .head-nav .nav-list .nav-item {
        margin-right: 35px;
        display: flex;
        align-items: center;
        position: relative;
    }

    .head-nav .nav-list .nav-item:hover .subnav {
        opacity: 1;
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
    }

    .head-nav .nav-list .nav-item .subnav {
        position: absolute;
        width: 660px;
        height: 264px;
        top: 72px;
        left: -300px;
        z-index: 99;
        line-height: 46px;
        background-color: #fff;
        text-align: center;
        opacity: 0;
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        transform-origin: 0 0;
        border-radius: 10px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 50px;
        box-sizing: border-box;
    }

    .head-nav .nav-list .nav-item .subnav::after {
        content: "";
        position: absolute;
        width: 0px;
        border-width: 10px;
        border-style: solid;
        border-color: transparent transparent #ffffff transparent;
        top: -18px;
        left: 50%;
        margin-left: -10px;
        transition: all 0.2s ease 0s;
    }

    .head-nav .nav-list .nav-item .subnav li {
        position: relative;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item {
        width: 30%;
        position: relative;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item:hover .overlay {
        opacity: 1;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 0;
        transition: .5s ease;
        background-color: #300f60;
        border-radius: 10px;
        width: 90%;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay .icon a {
        display: block;
        width: 50px;
        height: 50px;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay .text-icon {
        display: flex;
        align-items: center;
        width: 150px;
        height: 50px;
        line-height: 50px;
        margin: 0 auto;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay .text-icon .icon-title a {
        display: block;
        color: white;
        width: 80px;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item a {
        color: #8b8e8d;
        /*border-bottom: 1px #ededed solid;*/
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        width: 90%;
        margin: auto;
        display: flex;
        align-items: center;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item a .icon-title {
        margin-left: 15px;
    }

    .head-nav .nav-list .nav-item1 {
        display: flex;
        align-items: center;
        margin-right: 35px;
    }

    .head-nav .nav-list .nav-item1 h1 {
        background-image: url("../images/icon._cj.png");
        width: 30px;
        height: 30px;
    }

    .head-nav .nav-list .nav-item1 a {
        color: white;
    }

    .head-nav .nav-list .nav-item2 {
        width: 156px;
        height: 40px;
        line-height: 40px;
        border-radius: 30px;
        background: #fcc718;
        display: block;
        text-align: center;
        margin-right: 35px;
    }

    .head-nav .nav-list .nav-item3 {
        width: 90px;
        height: 40px;
        line-height: 40px;
        border-radius: 30px;
        display: block;
        text-align: center;
        margin-right: 35px;
        border: 1px solid #ffffff;
    }

    .head-nav .nav-list .nav-item3 a {
        color: white;
    }

    .head-nav .nav-list .nav-item2 a {
        color: white;
    }

    .head-nav .nav-list .nav-item2 a {
        text-align: center;
    }

    .head-nav .nav-list .nav-item img {
        width: 30px;
        height: 30px;
    }

    .head-nav .nav-list {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-top: 12px;
        align-items: center;
    }

    .head-nav .nav-list .nav-item a {
        display: block;
        color: #ffffff;
        position: relative;
        font-size: 16px;
    }

    .head-nav .nav-list .nav-item.active a {
        /*color: #ffffff;*/
        /*border-bottom: 1px solid #450d94;*/
    }

    .head-nav .nav-list .nav-item:hover > a::after, .head-nav .nav-list .nav-item.active:hover > a::after {
        width: 90%;

    }

    .head-nav .nav-list .nav-item > a::after {
        content: "";
        height: 2px;
        background: #450d94;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        width: 0;
    }

    /* 头部导航结束 */
    /* 首页轮播图开始 */
    .index-banner {
        /* margin-top: 12px; */
    }

    .index-banner .swiper-container .swiper-wrapper {
        /*height: 800px;*/
    }

    .index-img {
        position: relative;
    }

    .Mobile-banner {
        display: none;
    }

    .index-img header {
        height: 90vh;
        /*background-color: #577eff;*/
        position: relative;
    }

    #shape {
        position: absolute;
        /*left: 0;*/
        bottom: -2vw;
    }

    header img:not(#shape) {
        position: absolute;
        /*left: 0;*/
    }

    header img:nth-child(1) {
        /*opacity: 0.4;*/
        height: 110%;
        bottom: -0.1vw;
        animation: move-1 5s infinite;
    }

    @keyframes move-1 {
        50% {
            transform: translateY(15px);
        }
    }
    header img:nth-child(2) {
        opacity: 0.3;
        bottom: 0.5vw;
        animation: move-2 4s infinite;
    }

    @keyframes move-2 {
        50% {
            transform: translateY(35px);
        }
    }
    header img:nth-child(3) {
        bottom: 0.3vw;
        opacity: 0.2;
        animation: move-3 3.5s infinite;
    }

    @keyframes move-3 {
        50% {
            transform: translateY(25px);
        }
    }
    header img:nth-child(4) {
        bottom: 0.1vw;
        /*opacity: 0.3;*/
        animation: move-4 3s infinite;
        z-index: 999;
        position: absolute;
        right: 0;
        width: 600px;
        height: 350px;
    }

    @keyframes move-4 {
        50% {
            transform: translateY(20px);
        }
    }
    /* 首页轮播图结束 */
    /* 业务领域开始 */
    .page-business {
        width: 100%;
        margin-top: 100px;
    }

    .page-business .container {
        width: 96%;
        max-width: 1600px;
        margin: 0 auto;
        overflow: hidden;
    }

    .business {
        margin-top: 60px;
        display: flex;
        justify-content: space-between;
    }

    .business .business-item {
        width: 23%;
    }

    .business .business-item .img {
        overflow: hidden;
    }

    .business .business-item .img img {
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
    }

    .business .business-item .img img:hover {
        transition: all 0.6s;
        transform: scale(1.1);
        width: 100%;
        height: 100%;
    }

    .business .business-item .business-text {
        margin-top: 12px;
    }

    .business .business-item .business-text h2 {
        font-size: 20px;
        font-weight: bold;
        color: rgb(25 24 24);
    }

    .business .business-item .business-text p {
        margin-top: 12px;
        font-size: 16px;
        font-weight: 500;
        color: #666;
    }

    /* 人员管理系统开始 */
    .page-personnel {
        width: 100%;
        margin-top: 100px;
    }

    .page-personnel .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .personnel {
        width: 100%;
        max-width: 1000px;
        margin-top: 30px;
        display: flex;
        justify-content: space-between;
        box-shadow: 1px 4px 20px rgba(145, 145, 145, 0.28);
        border: 2px solid #ffffff;
        padding: 35px;
        box-sizing: border-box;
    }

    .personnel .personnel-item {
        width: 30%;
    }

    .personnel .personnel-item a {
        display: flex;
        align-items: center;
    }

    .personnel .personnel-item .img {
        overflow: hidden;
    }

    .personnel .personnel-item .img img {
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
    }

    .personnel .personnel-item .img img:hover {
        transition: all 0.6s;
        transform: scale(1.1);
        width: 100%;
        height: 100%;
    }

    .personnel .personnel-item .personnel-text {
        margin-top: 12px;
        margin-left: 12px;
    }

    .personnel .personnel-item .personnel-text h2 {
        font-size: 20px;
        font-weight: bold;
        color: rgb(25 24 24);
    }

    .personnel .personnel-item .personnel-text p {
        margin-top: 12px;
        font-size: 16px;
        font-weight: 500;
        color: #666;
    }

    /* 公用标题 */
    .page-title {
        text-align: center;
    }

    .page-title h3 {
        color: #ebeaee;
        text-transform: uppercase;
        margin-top: -16px;
        display: block;
        z-index: 1;
        position: relative;
        font-size: 30px;
    }

    .page-title p {
        font-size: 30px;
        color: #341067;
        display: block;
        position: relative;
        z-index: 3;
    }

    .page-title p span {
        font-size: 30px;
        font-weight: bold;
        color: #341067;
    }

    .page-title text {
        line-height: 25px;
        margin-top: 30px;
        display: block;
        font-size: 16px;
    }

    .page-Company-title {
        text-align: center;
    }

    .page-Company-title h3 {
        font-size: 16px;
        color: #999;
        text-transform: uppercase;
    }

    .page-Company-title p {
        /* margin-top: -20px; */
        font-size: 30px;
        color: #007aff;
        font-weight: bold;
    }

    .page-Company-title p span {
        font-size: 30px;
        font-weight: bold;
        color: #0a0a0a;
    }

    /* 公用标题结束 */
    /* 人才管理系统结束 */
    /* 数据化人才成长系统开始 */
    .page-datamation {
        width: 100%;
        margin-top: 100px;
        position: relative;
    }

    .page-datamation .IMG {
        position: absolute;
        top: 0;
    }

    .page-datamation .IMG img {
        animation: jumpBox 1.8s infinite; /* 1.8s 事件完成时间周期 infinite无限循环 */
    }

    @keyframes jumpBox { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(0px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .page-datamation .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
        padding: 60px 0;
        box-sizing: border-box;
    }

    .container .datamation {
        margin-top: 60px;
        display: flex;
        justify-content: space-between;
    }

    .container .datamation .service-text h2 {
        font-size: 26px;
        font-weight: bold;
        line-height: 40px;
        display: none;
    }

    .container .datamation .service-text p {
        line-height: 30px;
        color: #666;
        overflow: auto;
        padding-right: 10px;
        margin-top: 12px;
        font-size: 15px;
    }

    .container .datamation .service-text .buttom {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 25px;
        text-align: center;
        width: 100%;
    }

    .container .datamation .service-text .buttom .buttom-item {
        width: 30%;
        margin-top: 24px;
        position: relative;
    }

    .container .datamation .service-text .buttom .buttom-item .overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        transition: .5s ease;
        background-color: #3e1479;
    }

    .container .datamation .service-text .buttom .buttom-item:hover .overlay {
        opacity: 1;
    }

    .container .datamation .service-text .buttom .buttom-item .text {
        color: white;
        font-size: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .container .datamation .service-text .buttom .buttom-item .text a h1 {
        font-size: 16px;
        line-height: 30px;
    }

    .container .datamation .service-text .buttom .buttom-item .text a {
        color: white;
    }

    .container .datamation .service-text .buttom .buttom-item .icon {
        margin: 0 auto;
        display: block;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        margin-bottom: 10px;
        padding: 10px;
    }

    .container .datamation .service-text .buttom .buttom-item .cost {
        font-size: 17px;
        font-weight: 700;
    }

    /* 数据化人才成长系统结束 */
    /* 视频介绍开始 */
    .page-video {
        width: 100%;
        margin-top: 100px;
        position: relative;
    }

    .page-video .IMG {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .page-video .IMG img {
        animation: jumpBox 1.8s infinite; /* 1.8s 事件完成时间周期 infinite无限循环 */
    }

    @keyframes jumpBox { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(0px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .page-video .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .video-introduce-top {
        position: relative;
    }

    .video-introduce-top .IMG {
        position: absolute;
        right: -60px;
        top: -80px;
        z-index: 1;
    }

    .video-introduce-top .IMG img {
        animation: jumpBoxHandler 1.8s infinite;
    }

    @keyframes jumpBoxHandler { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(30px, 0px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .video-introduce {
        margin-top: 60px;
        display: flex;
        justify-content: space-between;
        position: relative;
        z-index: 3;
    }

    .video-introduce .video-introduce-item {
        width: 31%;
        margin-bottom: 40px;
        background: #ffffff;
        border-radius: 12px 12px 50px 12px;
        box-shadow: 16px 11px 20px #eeecf6;
    }

    .video-introduce .video-introduce-item .img {
        height: 209px;
        overflow: hidden;
        border-radius: 12px;
    }

    .video-introduce .video-introduce-item .img img {
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
    }

    .video-introduce .video-introduce-item .img img:hover {
        width: 100%;
        height: 100%;
        transition: all 0.6s;
        transform: scale(1.1);
    }

    .video-introduce .video-introduce-item .engineering-text {
        margin-top: 12px;
        padding: 22px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .video-introduce .video-introduce-item .engineering-text h2 {
        font-size: 20px;
        color: #080808;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .video-introduce .video-introduce-item .engineering-text p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .video-buttom a {
        background: #edebf5;
        width: 200px;
        height: 60px;
        line-height: 60px;
        border-radius: 50px;
        text-align: center;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        padding: 0 35px;
        box-sizing: border-box;
    }

    .video-buttom a .arrows-title {
        font-size: 15px;
        color: #341067;
        margin-top: 3px;
    }

    .video-buttom a .arrows {
        width: 20px;
        height: 19px;
    }

    .video-buttom a .arrows img {
        width: 100%;
        height: 100%;
    }

    /* 视频介绍结束 */
    /* 更多企业信赖之选开始 */
    .page-Company {
        margin-top: 100px;
        background-image: linear-gradient(to right, rgb(233, 230, 244), rgb(252, 252, 254));
    }

    .page-Company .container {
        width: 100%;
        padding-top: 30px;
        box-sizing: border-box;

        overflow: hidden;
        margin-left: auto;
    }

    .page-Company .container .Company {
        text-align: center;
        margin-top: 45px;
    }

    .page-advantage {
        display: flex;
        margin-bottom: 21px;
        margin-left: 25px;
        justify-content: space-between;
        position: relative;
    }

    .page-advantage .advantage {
        display: flex;
        align-items: center;
        height: 120px;
        overflow: hidden;
        width: 30%;
        text-align: center;
    }

    .page-advantage .advantage .img {
        width: 120px;
        height: 120px;
        line-height: 120px;
        background: white;
    }

    .page-advantage .advantage .img img {
        width: 60px;
    }

    .page-advantage .advantage .text {
        width: 228px;
        background: #fafafa;
        padding: 40px 20px;
        box-sizing: border-box;
    }

    .page-advantage .advantage .text h2 {
        color: #494949;
        font-size: 16px;
    }

    .page-advantage .advantage .text h2 span {
        color: #a1a1a1;
        font-size: 16px;
    }

    .page-advantage .advantage .text p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin-top: 10px;
        color: #a1a1a1;
        font-size: 16px;
    }

    .across {
        margin-top: 48px;
        margin-right: -139px;
    }

    .across img {
        margin-left: auto;
        display: block;
    }

    .advantage-bottom {
        width: 100%;
        position: relative;
        padding-bottom: 100px;
        box-sizing: border-box;
    }

    .advantage-bottom .IMG {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 600px;
        height: 500px;
        overflow: hidden;
        z-index: 1;
    }

    .advantage-bottom .IMG img {
        animation: jumpBox 1.8s infinite;
    }

    @keyframes jumpBoxr { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(0px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .advantage-bottom .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        z-index: 3;
    }

    .advantage-bottom .container .advantage-bottom-list {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .advantage-bottom .container .advantage-bottom-list li {
        width: 30%;
        margin-top: 55px;
        margin-bottom: 55px;
    }

    .advantage-bottom .container .advantage-bottom-list li h1 {
        color: #341067;
        font-size: 24px;
        letter-spacing: 5px;
    }

    .advantage-bottom .container .advantage-bottom-list li h1 span {
        font-size: 45px;
        color: #341067;
        font-weight: bold;
        letter-spacing: 2px;
    }

    .advantage-bottom .container .advantage-bottom-list p {
        font-size: 18px;
        color: #341067;
        margin-top: 15px;
    }

    .advantage-bottom .superhro {
        position: absolute;
        bottom: -30px;
        left: 15%;
        z-index: 3;
    }

    .advantage-bottom .superhro .title {
        width: 1200px;
        font-size: 168px;
        color: white;
        font-weight: bold;
        letter-spacing: 5px;
        text-align: center;
        margin-top: 20px;
    }

    /* 更多企业信赖之选结束 */
    /*行业资讯开始*/
    .page-industry {
        width: 100%;
        background: #fafafa;
    }

    .page-industry .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
        padding-top: 120px;
        box-sizing: border-box;
    }

    .page-industry .container .industry-list {
        display: flex;
        justify-content: space-between;
        width: 94%;
        max-width: 1000px;
        margin: 60px auto 0px auto;
        overflow: hidden;
    }

    .page-industry .container .Mobile-industry {
        display: none;
    }

    .page-industry .container .industry-list li {
        width: 30%;
    }

    .page-industry .container .industry-list li .img {
        width: 306px;
        height: 216px;
    }

    .page-industry .container .industry-list li .img img {
        width: 100%;
        height: 100%;
        border-radius: 15px;
    }

    .page-industry .container .industry .industry-button-prev {
        position: absolute;
        top: 39%;
        right: auto;
        left: -1%;
        background: #341067;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--swiper-navigation-color, var(--swiper-theme-color));
    }


    .page-industry .container .industry .industry-button-prev::after {
        content: 'prev';
        font-family: swiper-icons;
        font-size: 15px;
        color: #ffffff;
        text-transform: none !important;
        letter-spacing: 0;
        text-transform: none;
        font-variant: initial;
        line-height: 1;
    }

    .page-industry .container .industry .industry-button-next {
        position: absolute;
        right: -2%;
        left: auto;
        top: 39%;
        background: #341067;
        /*border: 1px solid #341067;*/
        border-radius: 50%;
        width: 25px;
        height: 25px;
        margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--swiper-navigation-color, var(--swiper-theme-color));
    }

    .page-industry .container .industry .industry-button-next::after {
        content: 'next';
        font-family: swiper-icons;
        font-size: 15px;
        color: #ffffff;
        text-transform: none !important;
        letter-spacing: 0;
        text-transform: none;
        font-variant: initial;
        line-height: 1;
    }

    .page-industry .container .industry-list li .content h1 {
        margin-top: 15px;
        line-height: 25px;
    }

    .page-industry .container .industry-list li .content h1 a {
        color: #5c3f84;
        font-size: 16px;
        font-weight: bold;

    }

    .page-industry .container .industry-list li .content a {
        display: flex;
        margin: 12px 0px;
    }

    .page-industry .container .industry-list li .content a .check {
        color: #5c3f84;
        font-weight: bold;
        margin-right: 5px;
    }

    .page-industry .container .industry-list li .content a .icon {
        width: 13px;
        height: 16px;
    }

    .page-industry .container .industry-list li .content a .icon img {
        width: 100%;
        height: 100%;
    }

    .page-industry .container .industry-list li .content text {
        color: #999999;
    }

    .page-industry .container .industry .industry-bottom {
        display: flex;
        background: #edebf5;
        width: 200px;
        height: 60px;
        line-height: 60px;
        border-radius: 50px;
        text-align: center;
        margin: 0 auto;
        justify-content: space-between;
        padding: 0 35px;
        box-sizing: border-box;
    }

    .page-industry .container .industry a .icon {
        width: 13px;
        height: 16px;
    }

    .page-industry .container .industry a .icon img {
        width: 100%;
        height: 100%;
    }

    .page-industry .container .industry a .more {
        font-size: 15px;
        color: #341067;
        margin-top: 3px;
    }

    /*行业资讯结束*/
    /*预约产品演示开始*/
    .page-product {
        background: #fafafa;
        padding-top: 120px;
        box-sizing: border-box;
    }

    .page-product .bg {
        background-image: url("../images/banner2.png");
    }

    .page-product .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
        padding-top: 57px;
        box-sizing: border-box;
        position: relative;
    }

    .page-product .container .product {
        display: flex;
        justify-content: center;
        padding: 60px 0px;
        box-sizing: border-box;
    }

    .page-product .container .IMG {
        position: absolute;
        right: 0;
        top: 0;
    }

    .page-product .container .IMG img {
        animation: jump 1.8s infinite;
    }

    @keyframes jump { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(30px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .page-product .container .product .product-left .input {
        width: 401px;
        height: 64px;
        line-height: 64px;
        background: #ffffff;
        border-radius: 30px;
        padding-left: 32px;
        box-sizing: border-box;
        margin-bottom: 20px;
        box-shadow: 16px 11px 20px #eeecf6;
    }

    .page-product .container .product .product-left .submit {
        width: 401px;
        height: 64px;
        line-height: 64px;
        border-radius: 30px;
        background: #edebf5;
        text-align: center;
        color: #341067;
        font-size: 16px;
        font-weight: bold;
    }

    .page-product .container .product .product-left .input input {
        border: 0;
        background: 0;
    }

    .page-product .container .product .product-right {
        width: 400px;
        height: 310px;
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 16px 11px 20px #eeecf6;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 30px;
    }

    /*预约产品演示结束*/
    /*底部开始*/
    .footer {
        width: 100%;
    }

    .footer .footer-top {
        border-top: 1px solid #ebebeb;
        background: #fafafa;
    }

    .footer .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .footer .container .footer-top {
        display: flex;
        background: #fafafa;
        justify-content: space-between;
        height: 60px;
    }

    .footer .container .footer-top li {
        width: 20%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer .footer-bottom {
        background: #f6f6f6;
    }

    .footer .footer-bottom .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .footer .footer-bottom .container .top {
        display: flex;
        justify-content: space-between;
        padding: 40px 0px;
        box-sizing: border-box;
    }

    .footer .footer-bottom .container .top .svg {
        text-align: center;
        width: 233px;
        height: 48px;
    }

    .footer .footer-bottom .container .top .svg img {
        height: 100%;
    }

    .footer .footer-bottom .container .top .img {
        width: 498px;
        height: 41px;
    }

    .footer .footer-bottom .container .top .img img {
        width: 100%;
        height: 100%;
    }

    .footer .footer-bottom .container .content {
        display: flex;
    }

    .footer .footer-bottom .container .content li {
        margin-right: 30px;
    }

    .footer .footer-bottom .container .content li:nth-child(3) {
        margin-right: 0px;
    }

    .footer .footer-bottom .container .content li .WeChat {
        display: flex;
    }

    .footer .footer-bottom .container .content h1 {
        color: #404040;
        font-size: 16px;
        font-weight: bold;
    }

    .footer .footer-bottom .container .content .iphone {
        color: #666666;
        font-size: 16px;
        margin-top: 30px;
    }

    .footer .footer-bottom .container .content .email {
        color: #666666;
        font-size: 16px;
        margin-top: 12px;
    }

    .footer .footer-bottom .container .content .address {
        color: #666666;
        font-size: 16px;
        margin-top: 12px;
    }

    .footer .footer-bottom .container .content .img {
        margin-top: 22px;
    }

    .footer .footer-bottom .container .content .item {
        display: flex;
        width: 307px;
    }

    .footer .footer-bottom .container .content .item .about {
        font-size: 16px;
        color: #404040;
        font-weight: bold;
    }

    .footer .footer-bottom .container .content .item .about1 {
        font-size: 16px;
        color: #404040;
        font-weight: bold;
        margin-right: 38px;
    }

    .footer .footer-bottom .container .content .item {
        margin-bottom: 30px;
        width: 307px;
    }

    .footer .footer-bottom .container .content .item .introduce {
        display: flex;
    }

    .footer .footer-bottom .container .content .item .introduce .company {
        color: #666666;
        font-size: 16px;
        margin-left: 30px;
    }

    .footer .footer-bottom .container .content .item .product {
        font-size: 16px;
        color: #404040;
        font-weight: bold;
        width: 22%;;
    }

    .footer .footer-bottom .container .content .item .product1 {
        width: 76%;
        display: flex;
        flex-wrap: wrap;
    }

    .footer .footer-bottom .container .content .item .product1 span {
        display: block;
        color: #666666;
        font-size: 16px;
        margin-left: 12px;
        margin-bottom: 12px;
    }

    .footer .footer-bottom .container .content .WeChat {
        text-align: center;
    }

    .footer .footer-bottom .container .bottom {
        display: flex;
        justify-content: space-between;
    }

    .footer .footer-bottom .container .bottom .ul {
        display: flex;
    }

    .fixed {
        display: none;
    }

    /*底部开始*/
}

@media screen and (min-width: 1023px) and (max-width: 1659px) {
    /* 头部导航开始 */
    .header {
        width: 100%;
        /* background: #fff; */
        height: 90px;
        line-height: 72px;
        width: 100%;
        top: 0;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        position: absolute;
        z-index: 333;
    }

    .header-fixed {
        position: fixed;
        z-index: 999;
        height: 90px;
        line-height: 70px;
        transition: .4s;
        border-bottom: 1px solid #cecece;
        background: #fff;
    }

    .header-fixed .head-nav .nav-list .nav-item a {
        display: block;
        color: #000000;
        position: relative;
        font-size: 16px;
    }

    .header-fixed .head-nav .nav-list .nav-item .active a {
        color: #000000;
    }

    .header-fixed .head-logo h1 a {
        background: url("../images/logo1.svg") no-repeat;
        display: block;
        width: 233px;
        height: 48px;
    }

    .header-fixed .head-nav .nav-list .nav-item1 a {
        display: flex;
        align-items: center;
        margin-right: 35px;
        color: #300f60;
        font-weight: bold;
    }

    .header-fixed .head-nav .nav-list .nav-item1 h1 {
        background-image: url("../images/icon._cj1.png");
        width: 30px;
        height: 30px;
    }

    .header-fixed .head-nav .nav-list .nav-item3 {
        width: 90px;
        height: 40px;
        line-height: 40px;
        border-radius: 30px;
        display: block;
        text-align: center;
        margin-right: 35px;
        border: 1px solid #300f60;
    }

    .header-fixed .head-nav .nav-list .nav-item3 a {
        color: #300f60;
        font-weight: bold;
    }

    .header .container {
        width: 94%;
        max-width: 1600px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }

    .header-title {
        width: 100%;
        margin: 60px auto 0px auto;
        position: absolute;
        z-index: 332;
        top: 30px;
    }

    .header-title .container {
        width: 94%;
        max-width: 950px;
        margin: 60px auto 0px auto;
    }

    .header-title .container h1 {
        font-size: 50px;
        color: white;
        margin-bottom: 30px;
        font-weight: bold;
    }

    .header-title .container h2 {
        font-size: 30px;
        color: white;
    }

    .header-title .container .free {
        width: 170px;
        height: 55px;
        background: #fcc718;
        color: white;
        text-align: center;
        border-radius: 30px;
        line-height: 55px;
        margin-top: 60px;
        display: block;
    }

    .head-logo {
        width: 15%;
    }

    .head-logo h1 a {
        background: url("../images/logo.svg") no-repeat;
        display: block;
        width: 233px;
        height: 48px;
    }

    .nav {
        width: 44%;
        margin-right: auto;
        padding-left: 92px;
    }

    .head-nav .nav-list .nav-item {
        margin-right: 35px;
        display: flex;
        align-items: center;
        position: relative;
    }

    .head-nav .nav-list .nav-item:hover .subnav {
        opacity: 1;
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
    }

    .head-nav .nav-list .nav-item .subnav {
        position: absolute;
        width: 660px;
        height: 264px;
        top: 72px;
        left: -300px;
        z-index: 99;
        line-height: 46px;
        background-color: #fff;
        text-align: center;
        opacity: 0;
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        transform-origin: 0 0;
        border-radius: 10px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 50px;
        box-sizing: border-box;
    }

    .head-nav .nav-list .nav-item .subnav::after {
        content: "";
        position: absolute;
        width: 0px;
        border-width: 10px;
        border-style: solid;
        border-color: transparent transparent #ffffff transparent;
        top: -18px;
        left: 50%;
        margin-left: -10px;
        transition: all 0.2s ease 0s;
    }

    .head-nav .nav-list .nav-item .subnav li {
        position: relative;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item {
        width: 30%;
        position: relative;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item:hover .overlay {
        opacity: 1;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 0;
        transition: .5s ease;
        background-color: #300f60;
        border-radius: 10px;
        width: 90%;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay .icon a {
        display: block;
        width: 50px;
        height: 50px;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay .text-icon {
        display: flex;
        align-items: center;
        width: 150px;
        height: 50px;
        line-height: 50px;
        margin: 0 auto;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay .text-icon .icon-title a {
        display: block;
        color: white;
        width: 80px;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item a {
        color: #8b8e8d;
        /*border-bottom: 1px #ededed solid;*/
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        width: 90%;
        margin: auto;
        display: flex;
        align-items: center;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item a .icon-title {
        margin-left: 15px;
    }

    .head-nav .nav-list .nav-item1 {
        display: flex;
        align-items: center;
        margin-right: 35px;
    }

    .head-nav .nav-list .nav-item1 h1 {
        background-image: url("../images/icon._cj.png");
        width: 30px;
        height: 30px;
    }

    .head-nav .nav-list .nav-item1 a {
        color: white;
    }

    .head-nav .nav-list .nav-item2 {
        width: 156px;
        height: 40px;
        line-height: 40px;
        border-radius: 30px;
        background: #fcc718;
        display: block;
        text-align: center;
        margin-right: 35px;
    }

    .head-nav .nav-list .nav-item3 {
        width: 90px;
        height: 40px;
        line-height: 40px;
        border-radius: 30px;
        display: block;
        text-align: center;
        margin-right: 35px;
        border: 1px solid #ffffff;
    }

    .head-nav .nav-list .nav-item3 a {
        color: white;
    }

    .head-nav .nav-list .nav-item2 a {
        color: white;
    }

    .head-nav .nav-list .nav-item2 a {
        text-align: center;
    }

    .head-nav .nav-list .nav-item img {
        width: 30px;
        height: 30px;
    }

    .head-nav .nav-list {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-top: 12px;
        align-items: center;
    }

    .head-nav .nav-list .nav-item a {
        display: block;
        color: #ffffff;
        position: relative;
        font-size: 16px;
    }

    .head-nav .nav-list .nav-item.active a {
        /*color: #ffffff;*/
        /*border-bottom: 1px solid #450d94;*/
    }

    .head-nav .nav-list .nav-item:hover > a::after, .head-nav .nav-list .nav-item.active:hover > a::after {
        width: 90%;

    }

    .head-nav .nav-list .nav-item > a::after {
        content: "";
        height: 2px;
        background: #450d94;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        width: 0;
    }

    /* 头部导航结束 */
    /* 首页轮播图开始 */
    .index-banner {
        /* margin-top: 12px; */
    }

    .index-banner .swiper-container .swiper-wrapper {
        /*height: 800px;*/
    }

    .index-img {
        position: relative;
    }

    .Mobile-banner {
        display: none;
    }

    .index-img header {
        height: 90vh;
        /*background-color: #577eff;*/
        position: relative;
    }

    #shape {
        position: absolute;
        left: 0;
        bottom: -2vw;
    }

    header img:not(#shape) {
        /*position: absolute;*/
        /*left: 0;*/
    }

    header img:nth-child(1) {
        /*opacity: 0.4;*/
        bottom: -0.1vw;
        animation: move-1 5s infinite;
    }

    @keyframes move-1 {
        50% {
            transform: translateY(15px);
        }
    }
    header img:nth-child(2) {
        opacity: 0.3;
        bottom: 0.5vw;
        animation: move-2 4s infinite;
    }

    @keyframes move-2 {
        50% {
            transform: translateY(35px);
        }
    }
    header img:nth-child(3) {
        bottom: 0.3vw;
        opacity: 0.2;
        animation: move-3 3.5s infinite;
    }

    @keyframes move-3 {
        50% {
            transform: translateY(25px);
        }
    }
    header img:nth-child(4) {
        bottom: 0.1vw;
        /*opacity: 0.3;*/
        animation: move-4 3s infinite;
        z-index: 999;
        position: absolute;
        right: 0;
    }

    @keyframes move-4 {
        50% {
            transform: translateY(20px);
        }
    }
    /* 首页轮播图结束 */
    /* 业务领域开始 */
    .page-business {
        width: 100%;
        margin-top: 100px;
    }

    .page-business .container {
        width: 96%;
        max-width: 1600px;
        margin: 0 auto;
        overflow: hidden;
    }

    .business {
        margin-top: 60px;
        display: flex;
        justify-content: space-between;
    }

    .business .business-item {
        width: 23%;
    }

    .business .business-item .img {
        overflow: hidden;
    }

    .business .business-item .img img {
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
    }

    .business .business-item .img img:hover {
        transition: all 0.6s;
        transform: scale(1.1);
        width: 100%;
        height: 100%;
    }

    .business .business-item .business-text {
        margin-top: 12px;
    }

    .business .business-item .business-text h2 {
        font-size: 20px;
        font-weight: bold;
        color: rgb(25 24 24);
    }

    .business .business-item .business-text p {
        margin-top: 12px;
        font-size: 16px;
        font-weight: 500;
        color: #666;
    }

    /* 人员管理系统开始 */
    .page-personnel {
        width: 100%;
        margin-top: 100px;
    }

    .page-personnel .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .personnel {
        width: 100%;
        max-width: 1000px;
        margin-top: 30px;
        display: flex;
        justify-content: space-between;
        box-shadow: 1px 4px 20px rgba(145, 145, 145, 0.28);
        border: 2px solid #ffffff;
        padding: 35px;
        box-sizing: border-box;
    }

    .personnel .personnel-item {
        width: 30%;
    }

    .personnel .personnel-item a {
        display: flex;
        align-items: center;
    }

    .personnel .personnel-item .img {
        overflow: hidden;
    }

    .personnel .personnel-item .img img {
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
    }

    .personnel .personnel-item .img img:hover {
        transition: all 0.6s;
        transform: scale(1.1);
        width: 100%;
        height: 100%;
    }

    .personnel .personnel-item .personnel-text {
        margin-top: 12px;
        margin-left: 12px;
    }

    .personnel .personnel-item .personnel-text h2 {
        font-size: 20px;
        font-weight: bold;
        color: rgb(25 24 24);
    }

    .personnel .personnel-item .personnel-text p {
        margin-top: 12px;
        font-size: 16px;
        font-weight: 500;
        color: #666;
    }

    /* 公用标题 */
    .page-title {
        text-align: center;
    }

    .page-title h3 {
        color: #ebeaee;
        text-transform: uppercase;
        margin-top: -16px;
        display: block;
        z-index: 1;
        position: relative;
        font-size: 30px;
    }

    .page-title p {
        font-size: 30px;
        color: #341067;
        display: block;
        position: relative;
        z-index: 3;
    }

    .page-title p span {
        font-size: 30px;
        font-weight: bold;
        color: #341067;
    }

    .page-title text {
        line-height: 25px;
        margin-top: 30px;
        display: block;
        font-size: 16px;
    }

    .page-Company-title {
        text-align: center;
    }

    .page-Company-title h3 {
        font-size: 16px;
        color: #999;
        text-transform: uppercase;
    }

    .page-Company-title p {
        /* margin-top: -20px; */
        font-size: 30px;
        color: #007aff;
        font-weight: bold;
    }

    .page-Company-title p span {
        font-size: 30px;
        font-weight: bold;
        color: #0a0a0a;
    }

    /* 公用标题结束 */
    /* 人才管理系统结束 */
    /* 数据化人才成长系统开始 */
    .page-datamation {
        width: 100%;
        margin-top: 100px;
        position: relative;
    }

    .page-datamation .IMG {
        position: absolute;
        top: 0;
    }

    .page-datamation .IMG img {
        animation: jumpBox 1.8s infinite; /* 1.8s 事件完成时间周期 infinite无限循环 */
    }

    @keyframes jumpBox { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(0px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .page-datamation .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
        padding: 60px 0;
        box-sizing: border-box;
    }

    .container .datamation {
        margin-top: 60px;
        display: flex;
        justify-content: space-between;
    }

    .container .datamation .service-text h2 {
        font-size: 26px;
        font-weight: bold;
        line-height: 40px;
        display: none;
    }

    .container .datamation .service-text p {
        line-height: 30px;
        color: #666;
        overflow: auto;
        padding-right: 10px;
        margin-top: 12px;
        font-size: 15px;
    }

    .container .datamation .service-text .buttom {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 25px;
        text-align: center;
        width: 100%;
    }

    .container .datamation .service-text .buttom .buttom-item {
        width: 30%;
        margin-top: 24px;
        position: relative;
    }

    .container .datamation .service-text .buttom .buttom-item .overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        transition: .5s ease;
        background-color: #3e1479;
    }

    .container .datamation .service-text .buttom .buttom-item:hover .overlay {
        opacity: 1;
    }

    .container .datamation .service-text .buttom .buttom-item .text {
        color: white;
        font-size: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .container .datamation .service-text .buttom .buttom-item .text a h1 {
        font-size: 16px;
        line-height: 30px;
    }

    .container .datamation .service-text .buttom .buttom-item .text a {
        color: white;
    }

    .container .datamation .service-text .buttom .buttom-item .icon {
        margin: 0 auto;
        display: block;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        margin-bottom: 10px;
        padding: 10px;
    }

    .container .datamation .service-text .buttom .buttom-item .cost {
        font-size: 17px;
        font-weight: 700;
    }

    /* 数据化人才成长系统结束 */
    /* 视频介绍开始 */
    .page-video {
        width: 100%;
        margin-top: 100px;
        position: relative;
    }

    .page-video .IMG {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .page-video .IMG img {
        animation: jumpBox 1.8s infinite; /* 1.8s 事件完成时间周期 infinite无限循环 */
    }

    @keyframes jumpBox { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(0px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .page-video .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .video-introduce-top {
        position: relative;
    }

    .video-introduce-top .IMG {
        position: absolute;
        right: -60px;
        top: -80px;
        z-index: 1;
    }

    .video-introduce-top .IMG img {
        animation: jumpBoxHandler 1.8s infinite;
    }

    @keyframes jumpBoxHandler { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(30px, 0px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .video-introduce {
        margin-top: 60px;
        display: flex;
        justify-content: space-between;
        position: relative;
        z-index: 3;
    }

    .video-introduce .video-introduce-item {
        width: 31%;
        margin-bottom: 40px;
        background: #ffffff;
        border-radius: 12px 12px 50px 12px;
        box-shadow: 16px 11px 20px #eeecf6;
    }

    .video-introduce .video-introduce-item .img {
        height: 209px;
        overflow: hidden;
        border-radius: 12px;
    }

    .video-introduce .video-introduce-item .img img {
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
    }

    .video-introduce .video-introduce-item .img img:hover {
        width: 100%;
        height: 100%;
        transition: all 0.6s;
        transform: scale(1.1);
    }

    .video-introduce .video-introduce-item .engineering-text {
        margin-top: 12px;
        padding: 22px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .video-introduce .video-introduce-item .engineering-text h2 {
        font-size: 20px;
        color: #080808;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .video-introduce .video-introduce-item .engineering-text p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .video-buttom a {
        background: #edebf5;
        width: 200px;
        height: 60px;
        line-height: 60px;
        border-radius: 50px;
        text-align: center;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        padding: 0 35px;
        box-sizing: border-box;
    }

    .video-buttom a .arrows-title {
        font-size: 15px;
        color: #341067;
        margin-top: 3px;
    }

    .video-buttom a .arrows {
        width: 20px;
        height: 19px;
    }

    .video-buttom a .arrows img {
        width: 100%;
        height: 100%;
    }

    /* 视频介绍结束 */
    /* 更多企业信赖之选开始 */
    .page-Company {
        margin-top: 100px;
        background-image: linear-gradient(to right, rgb(233, 230, 244), rgb(252, 252, 254));
    }

    .page-Company .container {
        width: 100%;
        padding-top: 30px;
        box-sizing: border-box;
        max-width: 1800px;
        overflow: hidden;
        margin-left: auto;
    }

    .page-Company .container .Company {
        text-align: center;
        margin-top: 45px;
    }

    .page-advantage {
        display: flex;
        margin-bottom: 21px;
        margin-left: 25px;
        justify-content: space-between;
        position: relative;
    }

    .page-advantage .advantage {
        display: flex;
        align-items: center;
        height: 120px;
        overflow: hidden;
        width: 30%;
        text-align: center;
    }

    .page-advantage .advantage .img {
        width: 120px;
        height: 120px;
        line-height: 120px;
        background: white;
    }

    .page-advantage .advantage .img img {
        width: 60px;
    }

    .page-advantage .advantage .text {
        width: 228px;
        background: #fafafa;
        padding: 40px 20px;
        box-sizing: border-box;
    }

    .page-advantage .advantage .text h2 {
        color: #494949;
        font-size: 16px;
    }

    .page-advantage .advantage .text h2 span {
        color: #a1a1a1;
        font-size: 16px;
    }

    .page-advantage .advantage .text p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin-top: 10px;
        color: #a1a1a1;
        font-size: 16px;
    }

    .across {
        margin-top: 48px;
        margin-right: -139px;
    }

    .across img {
        margin-left: auto;
        display: block;
    }

    .advantage-bottom {
        width: 100%;
        position: relative;
        padding-bottom: 100px;
        box-sizing: border-box;
    }

    .advantage-bottom .IMG {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 600px;
        height: 500px;
        overflow: hidden;
        z-index: 1;
    }

    .advantage-bottom .IMG img {
        animation: jumpBox 1.8s infinite;
    }

    @keyframes jumpBoxr { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(0px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .advantage-bottom .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        z-index: 3;
    }

    .advantage-bottom .container .advantage-bottom-list {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .advantage-bottom .container .advantage-bottom-list li {
        width: 30%;
        margin-top: 55px;
        margin-bottom: 55px;
    }

    .advantage-bottom .container .advantage-bottom-list li h1 {
        color: #341067;
        font-size: 24px;
        letter-spacing: 5px;
    }

    .advantage-bottom .container .advantage-bottom-list li h1 span {
        font-size: 45px;
        color: #341067;
        font-weight: bold;
        letter-spacing: 2px;
    }

    .advantage-bottom .container .advantage-bottom-list p {
        font-size: 18px;
        color: #341067;
        margin-top: 15px;
    }

    .advantage-bottom .superhro {
        position: absolute;
        bottom: -30px;
        left: 15%;
        z-index: 3;
    }

    .advantage-bottom .superhro .title {
        width: 1200px;
        font-size: 168px;
        color: white;
        font-weight: bold;
        letter-spacing: 5px;
        text-align: center;
        margin-top: 20px;
    }

    /* 更多企业信赖之选结束 */
    /*行业资讯开始*/
    .page-industry {
        width: 100%;
        background: #fafafa;
    }

    .page-industry .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
        padding-top: 120px;
        box-sizing: border-box;
    }

    .page-industry .container .industry-list {
        display: flex;
        justify-content: space-between;
        width: 94%;
        max-width: 1000px;
        margin: 60px auto 0px auto;
        overflow: hidden;
    }

    .page-industry .container .Mobile-industry {
        display: none;
    }

    .page-industry .container .industry-list li {
        width: 30%;
    }

    .page-industry .container .industry-list li .img {
        width: 306px;
        height: 216px;
    }

    .page-industry .container .industry-list li .img img {
        width: 100%;
        height: 100%;
        border-radius: 15px;
    }

    .page-industry .container .industry .industry-button-prev {
        position: absolute;
        top: 39%;
        right: auto;
        left: -1%;
        background: #341067;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--swiper-navigation-color, var(--swiper-theme-color));
    }


    .page-industry .container .industry .industry-button-prev::after {
        content: 'prev';
        font-family: swiper-icons;
        font-size: 15px;
        color: #ffffff;
        text-transform: none !important;
        letter-spacing: 0;
        text-transform: none;
        font-variant: initial;
        line-height: 1;
    }

    .page-industry .container .industry .industry-button-next {
        position: absolute;
        right: -2%;
        left: auto;
        top: 39%;
        background: #341067;
        /*border: 1px solid #341067;*/
        border-radius: 50%;
        width: 25px;
        height: 25px;
        margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--swiper-navigation-color, var(--swiper-theme-color));
    }

    .page-industry .container .industry .industry-button-next::after {
        content: 'next';
        font-family: swiper-icons;
        font-size: 15px;
        color: #ffffff;
        text-transform: none !important;
        letter-spacing: 0;
        text-transform: none;
        font-variant: initial;
        line-height: 1;
    }

    .page-industry .container .industry-list li .content h1 {
        margin-top: 15px;
        line-height: 25px;
    }

    .page-industry .container .industry-list li .content h1 a {
        color: #5c3f84;
        font-size: 16px;
        font-weight: bold;

    }

    .page-industry .container .industry-list li .content a {
        display: flex;
        margin: 12px 0px;
    }

    .page-industry .container .industry-list li .content a .check {
        color: #5c3f84;
        font-weight: bold;
        margin-right: 5px;
    }

    .page-industry .container .industry-list li .content a .icon {
        width: 13px;
        height: 16px;
    }

    .page-industry .container .industry-list li .content a .icon img {
        width: 100%;
        height: 100%;
    }

    .page-industry .container .industry-list li .content text {
        color: #999999;
    }

    .page-industry .container .industry .industry-bottom {
        display: flex;
        background: #edebf5;
        width: 200px;
        height: 60px;
        line-height: 60px;
        border-radius: 50px;
        text-align: center;
        margin: 0 auto;
        justify-content: space-between;
        padding: 0 35px;
        box-sizing: border-box;
    }

    .page-industry .container .industry a .icon {
        width: 13px;
        height: 16px;
    }

    .page-industry .container .industry a .icon img {
        width: 100%;
        height: 100%;
    }

    .page-industry .container .industry a .more {
        font-size: 15px;
        color: #341067;
        margin-top: 3px;
    }

    /*行业资讯结束*/
    /*预约产品演示开始*/
    .page-product {
        background: #fafafa;
        padding-top: 120px;
        box-sizing: border-box;
    }

    .page-product .bg {
        background-image: url("../images/banner2.png");
    }

    .page-product .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
        padding-top: 57px;
        box-sizing: border-box;
        position: relative;
    }

    .page-product .container .product {
        display: flex;
        justify-content: center;
        padding: 60px 0px;
        box-sizing: border-box;
    }

    .page-product .container .IMG {
        position: absolute;
        right: 0;
        top: 0;
    }

    .page-product .container .IMG img {
        animation: jump 1.8s infinite;
    }

    @keyframes jump { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(30px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .page-product .container .product .product-left .input {
        width: 401px;
        height: 64px;
        line-height: 64px;
        background: #ffffff;
        border-radius: 30px;
        padding-left: 32px;
        box-sizing: border-box;
        margin-bottom: 20px;
        box-shadow: 16px 11px 20px #eeecf6;
    }

    .page-product .container .product .product-left .submit {
        width: 401px;
        height: 64px;
        line-height: 64px;
        border-radius: 30px;
        background: #edebf5;
        text-align: center;
        color: #341067;
        font-size: 16px;
        font-weight: bold;
    }

    .page-product .container .product .product-left .input input {
        border: 0;
        background: 0;
    }

    .page-product .container .product .product-right {
        width: 400px;
        height: 310px;
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 16px 11px 20px #eeecf6;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 30px;
    }

    /*预约产品演示结束*/
    /*底部开始*/
    .footer {
        width: 100%;
    }

    .footer .footer-top {
        border-top: 1px solid #ebebeb;
        background: #fafafa;
    }

    .footer .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .footer .container .footer-top {
        display: flex;
        background: #fafafa;
        justify-content: space-between;
        height: 60px;
    }

    .footer .container .footer-top li {
        width: 20%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer .footer-bottom {
        background: #f6f6f6;
    }

    .footer .footer-bottom .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .footer .footer-bottom .container .top {
        display: flex;
        justify-content: space-between;
        padding: 40px 0px;
        box-sizing: border-box;
    }

    .footer .footer-bottom .container .top .svg {
        text-align: center;
        width: 233px;
        height: 48px;
    }

    .footer .footer-bottom .container .top .svg img {
        height: 100%;
    }

    .footer .footer-bottom .container .top .img {
        width: 498px;
        height: 41px;
    }

    .footer .footer-bottom .container .top .img img {
        width: 100%;
        height: 100%;
    }

    .footer .footer-bottom .container .content {
        display: flex;
    }

    .footer .footer-bottom .container .content li {
        margin-right: 30px;
    }

    .footer .footer-bottom .container .content li:nth-child(3) {
        margin-right: 0px;
    }

    .footer .footer-bottom .container .content li .WeChat {
        display: flex;
    }

    .footer .footer-bottom .container .content h1 {
        color: #404040;
        font-size: 16px;
        font-weight: bold;
    }

    .footer .footer-bottom .container .content .iphone {
        color: #666666;
        font-size: 16px;
        margin-top: 30px;
    }

    .footer .footer-bottom .container .content .email {
        color: #666666;
        font-size: 16px;
        margin-top: 12px;
    }

    .footer .footer-bottom .container .content .address {
        color: #666666;
        font-size: 16px;
        margin-top: 12px;
    }

    .footer .footer-bottom .container .content .img {
        margin-top: 22px;
    }

    .footer .footer-bottom .container .content .item {
        display: flex;
        width: 307px;
    }

    .footer .footer-bottom .container .content .item .about {
        font-size: 16px;
        color: #404040;
        font-weight: bold;
    }

    .footer .footer-bottom .container .content .item .about1 {
        font-size: 16px;
        color: #404040;
        font-weight: bold;
        margin-right: 38px;
    }

    .footer .footer-bottom .container .content .item {
        margin-bottom: 30px;
        width: 307px;
    }

    .footer .footer-bottom .container .content .item .introduce {
        display: flex;
    }

    .footer .footer-bottom .container .content .item .introduce .company {
        color: #666666;
        font-size: 16px;
        margin-left: 30px;
    }

    .footer .footer-bottom .container .content .item .product {
        font-size: 16px;
        color: #404040;
        font-weight: bold;
        width: 22%;;
    }

    .footer .footer-bottom .container .content .item .product1 {
        width: 76%;
        display: flex;
        flex-wrap: wrap;
    }

    .footer .footer-bottom .container .content .item .product1 span {
        display: block;
        color: #666666;
        font-size: 16px;
        margin-left: 12px;
        margin-bottom: 12px;
    }

    .footer .footer-bottom .container .content .WeChat {
        text-align: center;
    }

    .footer .footer-bottom .container .bottom {
        display: flex;
        justify-content: space-between;
    }

    .footer .footer-bottom .container .bottom .ul {
        display: flex;
    }

    .fixed {
        display: none;
    }

    /*底部开始*/
}

@media screen and (min-width: 768px) and (max-width: 1022px) {
    /* 头部导航开始 */
    .header {
        width: 100%;
        /* background: #fff; */
        height: 90px;
        line-height: 72px;
        width: 100%;
        top: 0;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        position: absolute;
        z-index: 333;
    }

    .header-fixed {
        position: fixed;
        z-index: 999;
        height: 90px;
        line-height: 70px;
        transition: .4s;
        border-bottom: 1px solid #cecece;
        background: #fff;
    }

    .header-fixed .head-nav .nav-list .nav-item a {
        display: block;
        color: #000000;
        position: relative;
        font-size: 16px;
    }

    .header-fixed .head-nav .nav-list .nav-item .active a {
        color: #000000;
    }

    .header-fixed .head-logo h1 a {
        background: url("../images/logo1.svg") no-repeat;
        display: block;
        width: 233px;
        height: 48px;
    }

    .header-fixed .head-nav .nav-list .nav-item1 a {
        display: flex;
        align-items: center;
        margin-right: 35px;
        color: #300f60;
        font-weight: bold;
    }

    .header-fixed .head-nav .nav-list .nav-item1 h1 {
        background-image: url("../images/icon._cj1.png");
        width: 30px;
        height: 30px;
    }

    .header-fixed .head-nav .nav-list .nav-item3 {
        width: 90px;
        height: 40px;
        line-height: 40px;
        border-radius: 30px;
        display: block;
        text-align: center;
        margin-right: 35px;
        border: 1px solid #300f60;
    }

    .header-fixed .head-nav .nav-list .nav-item3 a {
        color: #300f60;
        font-weight: bold;
    }

    .header .container {
        width: 94%;
        max-width: 1600px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }

    .header-title {
        width: 100%;
        margin: 60px auto 0px auto;
        position: absolute;
        z-index: 332;
        top: 30px;
    }

    .header-title .container {
        width: 94%;
        max-width: 950px;
        margin: 60px auto 0px auto;
    }

    .header-title .container h1 {
        font-size: 50px;
        color: white;
        margin-bottom: 30px;
        font-weight: bold;
    }

    .header-title .container h2 {
        font-size: 30px;
        color: white;
    }

    .header-title .container .free {
        width: 170px;
        height: 55px;
        background: #fcc718;
        color: white;
        text-align: center;
        border-radius: 30px;
        line-height: 55px;
        margin-top: 60px;
        display: block;
    }

    .head-logo {
        width: 15%;
    }

    .head-logo h1 a {
        background: url("../images/logo.svg") no-repeat;
        display: block;
        width: 233px;
        height: 48px;
    }

    .nav {
        width: 44%;
        margin-right: auto;
        padding-left: 92px;
    }

    .head-nav .nav-list .nav-item {
        margin-right: 35px;
        display: flex;
        align-items: center;
        position: relative;
    }

    .head-nav .nav-list .nav-item:hover .subnav {
        opacity: 1;
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
    }

    .head-nav .nav-list .nav-item .subnav {
        position: absolute;
        width: 660px;
        height: 264px;
        top: 72px;
        left: -300px;
        z-index: 99;
        line-height: 46px;
        background-color: #fff;
        text-align: center;
        opacity: 0;
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        transform-origin: 0 0;
        border-radius: 10px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 50px;
        box-sizing: border-box;
    }

    .head-nav .nav-list .nav-item .subnav::after {
        content: "";
        position: absolute;
        width: 0px;
        border-width: 10px;
        border-style: solid;
        border-color: transparent transparent #ffffff transparent;
        top: -18px;
        left: 50%;
        margin-left: -10px;
        transition: all 0.2s ease 0s;
    }

    .head-nav .nav-list .nav-item .subnav li {
        position: relative;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item {
        width: 30%;
        position: relative;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item:hover .overlay {
        opacity: 1;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 0;
        transition: .5s ease;
        background-color: #300f60;
        border-radius: 10px;
        width: 90%;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay .icon a {
        display: block;
        width: 50px;
        height: 50px;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay .text-icon {
        display: flex;
        align-items: center;
        width: 150px;
        height: 50px;
        line-height: 50px;
        margin: 0 auto;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay .text-icon .icon-title a {
        display: block;
        color: white;
        width: 80px;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item a {
        color: #8b8e8d;
        /*border-bottom: 1px #ededed solid;*/
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        width: 90%;
        margin: auto;
        display: flex;
        align-items: center;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item a .icon-title {
        margin-left: 15px;
    }

    .head-nav .nav-list .nav-item1 {
        display: flex;
        align-items: center;
        margin-right: 35px;
    }

    .head-nav .nav-list .nav-item1 h1 {
        background-image: url("../images/icon._cj.png");
        width: 30px;
        height: 30px;
    }

    .head-nav .nav-list .nav-item1 a {
        color: white;
    }

    .head-nav .nav-list .nav-item2 {
        width: 156px;
        height: 40px;
        line-height: 40px;
        border-radius: 30px;
        background: #fcc718;
        display: block;
        text-align: center;
        margin-right: 35px;
    }

    .head-nav .nav-list .nav-item3 {
        width: 90px;
        height: 40px;
        line-height: 40px;
        border-radius: 30px;
        display: block;
        text-align: center;
        margin-right: 35px;
        border: 1px solid #ffffff;
    }

    .head-nav .nav-list .nav-item3 a {
        color: white;
    }

    .head-nav .nav-list .nav-item2 a {
        color: white;
    }

    .head-nav .nav-list .nav-item2 a {
        text-align: center;
    }

    .head-nav .nav-list .nav-item img {
        width: 30px;
        height: 30px;
    }

    .head-nav .nav-list {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-top: 12px;
        align-items: center;
    }

    .head-nav .nav-list .nav-item a {
        display: block;
        color: #ffffff;
        position: relative;
        font-size: 16px;
    }

    .head-nav .nav-list .nav-item.active a {
        /*color: #ffffff;*/
        /*border-bottom: 1px solid #450d94;*/
    }

    .head-nav .nav-list .nav-item:hover > a::after, .head-nav .nav-list .nav-item.active:hover > a::after {
        width: 90%;

    }

    .head-nav .nav-list .nav-item > a::after {
        content: "";
        height: 2px;
        background: #450d94;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        width: 0;
    }

    /* 头部导航结束 */
    /* 首页轮播图开始 */
    .index-banner {
        /* margin-top: 12px; */
    }

    .index-banner .swiper-container .swiper-wrapper {
        /*height: 800px;*/
    }

    .index-img {
        position: relative;
    }

    .Mobile-banner {
        display: none;
    }

    .index-img header {
        height: 90vh;
        /*background-color: #577eff;*/
        position: relative;
    }

    #shape {
        position: absolute;
        left: 0;
        bottom: -2vw;
    }

    header img:not(#shape) {
        position: absolute;
        left: 0;
    }

    header img:nth-child(1) {
        /*opacity: 0.4;*/
        bottom: -0.1vw;
        animation: move-1 5s infinite;
    }

    @keyframes move-1 {
        50% {
            transform: translateY(15px);
        }
    }
    header img:nth-child(2) {
        opacity: 0.3;
        bottom: 0.5vw;
        animation: move-2 4s infinite;
    }

    @keyframes move-2 {
        50% {
            transform: translateY(35px);
        }
    }
    header img:nth-child(3) {
        bottom: 0.3vw;
        opacity: 0.2;
        animation: move-3 3.5s infinite;
    }

    @keyframes move-3 {
        50% {
            transform: translateY(25px);
        }
    }
    header img:nth-child(4) {
        bottom: 0.1vw;
        opacity: 0.3;
        animation: move-4 3s infinite;
    }

    @keyframes move-4 {
        50% {
            transform: translateY(20px);
        }
    }
    /* 首页轮播图结束 */
    /* 业务领域开始 */
    .page-business {
        width: 100%;
        margin-top: 100px;
    }

    .page-business .container {
        width: 96%;
        max-width: 1600px;
        margin: 0 auto;
        overflow: hidden;
    }

    .business {
        margin-top: 60px;
        display: flex;
        justify-content: space-between;
    }

    .business .business-item {
        width: 23%;
    }

    .business .business-item .img {
        overflow: hidden;
    }

    .business .business-item .img img {
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
    }

    .business .business-item .img img:hover {
        transition: all 0.6s;
        transform: scale(1.1);
        width: 100%;
        height: 100%;
    }

    .business .business-item .business-text {
        margin-top: 12px;
    }

    .business .business-item .business-text h2 {
        font-size: 20px;
        font-weight: bold;
        color: rgb(25 24 24);
    }

    .business .business-item .business-text p {
        margin-top: 12px;
        font-size: 16px;
        font-weight: 500;
        color: #666;
    }

    /* 人员管理系统开始 */
    .page-personnel {
        width: 100%;
        margin-top: 100px;
    }

    .page-personnel .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .personnel {
        width: 100%;
        max-width: 1000px;
        margin-top: 30px;
        display: flex;
        justify-content: space-between;
        box-shadow: 1px 4px 20px rgba(145, 145, 145, 0.28);
        border: 2px solid #ffffff;
        padding: 35px;
        box-sizing: border-box;
    }

    .personnel .personnel-item {
        width: 30%;
    }

    .personnel .personnel-item a {
        display: flex;
        align-items: center;
    }

    .personnel .personnel-item .img {
        overflow: hidden;
    }

    .personnel .personnel-item .img img {
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
    }

    .personnel .personnel-item .img img:hover {
        transition: all 0.6s;
        transform: scale(1.1);
        width: 100%;
        height: 100%;
    }

    .personnel .personnel-item .personnel-text {
        margin-top: 12px;
        margin-left: 12px;
    }

    .personnel .personnel-item .personnel-text h2 {
        font-size: 20px;
        font-weight: bold;
        color: rgb(25 24 24);
    }

    .personnel .personnel-item .personnel-text p {
        margin-top: 12px;
        font-size: 16px;
        font-weight: 500;
        color: #666;
    }

    /* 公用标题 */
    .page-title {
        text-align: center;
    }

    .page-title h3 {
        color: #ebeaee;
        text-transform: uppercase;
        margin-top: -16px;
        display: block;
        z-index: 1;
        position: relative;
        font-size: 30px;
    }

    .page-title p {
        font-size: 30px;
        color: #341067;
        display: block;
        position: relative;
        z-index: 3;
    }

    .page-title p span {
        font-size: 30px;
        font-weight: bold;
        color: #341067;
    }

    .page-title text {
        line-height: 25px;
        margin-top: 30px;
        display: block;
        font-size: 16px;
    }

    .page-Company-title {
        text-align: center;
    }

    .page-Company-title h3 {
        font-size: 16px;
        color: #999;
        text-transform: uppercase;
    }

    .page-Company-title p {
        /* margin-top: -20px; */
        font-size: 30px;
        color: #007aff;
        font-weight: bold;
    }

    .page-Company-title p span {
        font-size: 30px;
        font-weight: bold;
        color: #0a0a0a;
    }

    /* 公用标题结束 */
    /* 人才管理系统结束 */
    /* 数据化人才成长系统开始 */
    .page-datamation {
        width: 100%;
        margin-top: 100px;
        position: relative;
    }

    .page-datamation .IMG {
        position: absolute;
        top: 0;
    }

    .page-datamation .IMG img {
        animation: jumpBox 1.8s infinite; /* 1.8s 事件完成时间周期 infinite无限循环 */
    }

    @keyframes jumpBox { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(0px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .page-datamation .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
        padding: 60px 0;
        box-sizing: border-box;
    }

    .container .datamation {
        margin-top: 60px;
        display: flex;
        justify-content: space-between;
    }

    .container .datamation .service-text h2 {
        font-size: 26px;
        font-weight: bold;
        line-height: 40px;
        display: none;
    }

    .container .datamation .service-text p {
        line-height: 30px;
        color: #666;
        overflow: auto;
        padding-right: 10px;
        margin-top: 12px;
        font-size: 15px;
    }

    .container .datamation .service-text .buttom {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 25px;
        text-align: center;
        width: 100%;
    }

    .container .datamation .service-text .buttom .buttom-item {
        width: 30%;
        margin-top: 24px;
        position: relative;
    }

    .container .datamation .service-text .buttom .buttom-item .overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        transition: .5s ease;
        background-color: #3e1479;
    }

    .container .datamation .service-text .buttom .buttom-item:hover .overlay {
        opacity: 1;
    }

    .container .datamation .service-text .buttom .buttom-item .text {
        color: white;
        font-size: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .container .datamation .service-text .buttom .buttom-item .text a h1 {
        font-size: 16px;
        line-height: 30px;
    }

    .container .datamation .service-text .buttom .buttom-item .text a {
        color: white;
    }

    .container .datamation .service-text .buttom .buttom-item .icon {
        margin: 0 auto;
        display: block;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        margin-bottom: 10px;
        padding: 10px;
    }

    .container .datamation .service-text .buttom .buttom-item .cost {
        font-size: 17px;
        font-weight: 700;
    }

    /* 数据化人才成长系统结束 */
    /* 视频介绍开始 */
    .page-video {
        width: 100%;
        margin-top: 100px;
        position: relative;
    }

    .page-video .IMG {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .page-video .IMG img {
        animation: jumpBox 1.8s infinite; /* 1.8s 事件完成时间周期 infinite无限循环 */
    }

    @keyframes jumpBox { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(0px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .page-video .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .video-introduce-top {
        position: relative;
    }

    .video-introduce-top .IMG {
        position: absolute;
        right: -60px;
        top: -80px;
        z-index: 1;
    }

    .video-introduce-top .IMG img {
        animation: jumpBoxHandler 1.8s infinite;
    }

    @keyframes jumpBoxHandler { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(30px, 0px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .video-introduce {
        margin-top: 60px;
        display: flex;
        justify-content: space-between;
        position: relative;
        z-index: 3;
    }

    .video-introduce .video-introduce-item {
        width: 31%;
        margin-bottom: 40px;
        background: #ffffff;
        border-radius: 12px 12px 50px 12px;
        box-shadow: 16px 11px 20px #eeecf6;
    }

    .video-introduce .video-introduce-item .img {
        height: 209px;
        overflow: hidden;
        border-radius: 12px;
    }

    .video-introduce .video-introduce-item .img img {
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
    }

    .video-introduce .video-introduce-item .img img:hover {
        width: 100%;
        height: 100%;
        transition: all 0.6s;
        transform: scale(1.1);
    }

    .video-introduce .video-introduce-item .engineering-text {
        margin-top: 12px;
        padding: 22px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .video-introduce .video-introduce-item .engineering-text h2 {
        font-size: 20px;
        color: #080808;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .video-introduce .video-introduce-item .engineering-text p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .video-buttom a {
        background: #edebf5;
        width: 200px;
        height: 60px;
        line-height: 60px;
        border-radius: 50px;
        text-align: center;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        padding: 0 35px;
        box-sizing: border-box;
    }

    .video-buttom a .arrows-title {
        font-size: 15px;
        color: #341067;
        margin-top: 3px;
    }

    .video-buttom a .arrows {
        width: 20px;
        height: 19px;
    }

    .video-buttom a .arrows img {
        width: 100%;
        height: 100%;
    }

    /* 视频介绍结束 */
    /* 更多企业信赖之选开始 */
    .page-Company {
        margin-top: 100px;
        background-image: linear-gradient(to right, rgb(233, 230, 244), rgb(252, 252, 254));
    }

    .page-Company .container {
        width: 100%;
        padding-top: 30px;
        box-sizing: border-box;

        overflow: hidden;
        margin-left: auto;
    }

    .page-Company .container .Company {
        text-align: center;
        margin-top: 45px;
    }

    .page-advantage {
        display: flex;
        margin-bottom: 21px;
        margin-left: 25px;
        justify-content: space-between;
        position: relative;
    }

    .page-advantage .advantage {
        display: flex;
        align-items: center;
        height: 120px;
        overflow: hidden;
        width: 30%;
        text-align: center;
    }

    .page-advantage .advantage .img {
        width: 120px;
        height: 120px;
        line-height: 120px;
        background: white;
    }

    .page-advantage .advantage .img img {
        width: 60px;
    }

    .page-advantage .advantage .text {
        width: 228px;
        background: #fafafa;
        padding: 40px 20px;
        box-sizing: border-box;
    }

    .page-advantage .advantage .text h2 {
        color: #494949;
        font-size: 16px;
    }

    .page-advantage .advantage .text h2 span {
        color: #a1a1a1;
        font-size: 16px;
    }

    .page-advantage .advantage .text p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin-top: 10px;
        color: #a1a1a1;
        font-size: 16px;
    }

    .across {
        margin-top: 48px;
        margin-right: -139px;
    }

    .across img {
        margin-left: auto;
        display: block;
    }

    .advantage-bottom {
        width: 100%;
        position: relative;
        padding-bottom: 100px;
        box-sizing: border-box;
    }

    .advantage-bottom .IMG {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 600px;
        height: 500px;
        overflow: hidden;
        z-index: 1;
    }

    .advantage-bottom .IMG img {
        animation: jumpBox 1.8s infinite;
    }

    @keyframes jumpBoxr { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(0px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .advantage-bottom .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        z-index: 3;
    }

    .advantage-bottom .container .advantage-bottom-list {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .advantage-bottom .container .advantage-bottom-list li {
        width: 30%;
        margin-top: 55px;
        margin-bottom: 55px;
    }

    .advantage-bottom .container .advantage-bottom-list li h1 {
        color: #341067;
        font-size: 24px;
        letter-spacing: 5px;
    }

    .advantage-bottom .container .advantage-bottom-list li h1 span {
        font-size: 45px;
        color: #341067;
        font-weight: bold;
        letter-spacing: 2px;
    }

    .advantage-bottom .container .advantage-bottom-list p {
        font-size: 18px;
        color: #341067;
        margin-top: 15px;
    }

    .advantage-bottom .superhro {
        position: absolute;
        bottom: -30px;
        left: 15%;
        z-index: 3;
    }

    .advantage-bottom .superhro .title {
        width: 1200px;
        font-size: 168px;
        color: white;
        font-weight: bold;
        letter-spacing: 5px;
        text-align: center;
        margin-top: 20px;
    }

    /* 更多企业信赖之选结束 */
    /*行业资讯开始*/
    .page-industry {
        width: 100%;
        background: #fafafa;
    }

    .page-industry .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
        padding-top: 120px;
        box-sizing: border-box;
    }

    .page-industry .container .industry-list {
        display: flex;
        justify-content: space-between;
        width: 94%;
        max-width: 1000px;
        margin: 60px auto 0px auto;
        overflow: hidden;
    }

    .page-industry .container .Mobile-industry {
        display: none;
    }

    .page-industry .container .industry-list li {
        width: 30%;
    }

    .page-industry .container .industry-list li .img {
        width: 306px;
        height: 216px;
    }

    .page-industry .container .industry-list li .img img {
        width: 100%;
        height: 100%;
        border-radius: 15px;
    }

    .page-industry .container .industry .industry-button-prev {
        position: absolute;
        top: 39%;
        right: auto;
        left: -1%;
        background: #341067;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--swiper-navigation-color, var(--swiper-theme-color));
    }


    .page-industry .container .industry .industry-button-prev::after {
        content: 'prev';
        font-family: swiper-icons;
        font-size: 15px;
        color: #ffffff;
        text-transform: none !important;
        letter-spacing: 0;
        text-transform: none;
        font-variant: initial;
        line-height: 1;
    }

    .page-industry .container .industry .industry-button-next {
        position: absolute;
        right: -2%;
        left: auto;
        top: 39%;
        background: #341067;
        /*border: 1px solid #341067;*/
        border-radius: 50%;
        width: 25px;
        height: 25px;
        margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--swiper-navigation-color, var(--swiper-theme-color));
    }

    .page-industry .container .industry .industry-button-next::after {
        content: 'next';
        font-family: swiper-icons;
        font-size: 15px;
        color: #ffffff;
        text-transform: none !important;
        letter-spacing: 0;
        text-transform: none;
        font-variant: initial;
        line-height: 1;
    }

    .page-industry .container .industry-list li .content h1 {
        margin-top: 15px;
        line-height: 25px;
    }

    .page-industry .container .industry-list li .content h1 a {
        color: #5c3f84;
        font-size: 16px;
        font-weight: bold;

    }

    .page-industry .container .industry-list li .content a {
        display: flex;
        margin: 12px 0px;
    }

    .page-industry .container .industry-list li .content a .check {
        color: #5c3f84;
        font-weight: bold;
        margin-right: 5px;
    }

    .page-industry .container .industry-list li .content a .icon {
        width: 13px;
        height: 16px;
    }

    .page-industry .container .industry-list li .content a .icon img {
        width: 100%;
        height: 100%;
    }

    .page-industry .container .industry-list li .content text {
        color: #999999;
    }

    .page-industry .container .industry .industry-bottom {
        display: flex;
        background: #edebf5;
        width: 200px;
        height: 60px;
        line-height: 60px;
        border-radius: 50px;
        text-align: center;
        margin: 0 auto;
        justify-content: space-between;
        padding: 0 35px;
        box-sizing: border-box;
    }

    .page-industry .container .industry a .icon {
        width: 13px;
        height: 16px;
    }

    .page-industry .container .industry a .icon img {
        width: 100%;
        height: 100%;
    }

    .page-industry .container .industry a .more {
        font-size: 15px;
        color: #341067;
        margin-top: 3px;
    }

    /*行业资讯结束*/
    /*预约产品演示开始*/
    .page-product {
        background: #fafafa;
        padding-top: 120px;
        box-sizing: border-box;
    }

    .page-product .bg {
        background-image: url("../images/banner2.png");
    }

    .page-product .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
        padding-top: 57px;
        box-sizing: border-box;
        position: relative;
    }

    .page-product .container .product {
        display: flex;
        justify-content: center;
        padding: 60px 0px;
        box-sizing: border-box;
    }

    .page-product .container .IMG {
        position: absolute;
        right: 0;
        top: 0;
    }

    .page-product .container .IMG img {
        animation: jump 1.8s infinite;
    }

    @keyframes jump { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(30px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .page-product .container .product .product-left .input {
        width: 401px;
        height: 64px;
        line-height: 64px;
        background: #ffffff;
        border-radius: 30px;
        padding-left: 32px;
        box-sizing: border-box;
        margin-bottom: 20px;
        box-shadow: 16px 11px 20px #eeecf6;
    }

    .page-product .container .product .product-left .submit {
        width: 401px;
        height: 64px;
        line-height: 64px;
        border-radius: 30px;
        background: #edebf5;
        text-align: center;
        color: #341067;
        font-size: 16px;
        font-weight: bold;
    }

    .page-product .container .product .product-left .input input {
        border: 0;
        background: 0;
    }

    .page-product .container .product .product-right {
        width: 400px;
        height: 310px;
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 16px 11px 20px #eeecf6;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 30px;
    }

    /*预约产品演示结束*/
    /*底部开始*/
    .footer {
        width: 100%;
    }

    .footer .footer-top {
        border-top: 1px solid #ebebeb;
        background: #fafafa;
    }

    .footer .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .footer .container .footer-top {
        display: flex;
        background: #fafafa;
        justify-content: space-between;
        height: 60px;
    }

    .footer .container .footer-top li {
        width: 20%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer .footer-bottom {
        background: #f6f6f6;
    }

    .footer .footer-bottom .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .footer .footer-bottom .container .top {
        display: flex;
        justify-content: space-between;
        padding: 40px 0px;
        box-sizing: border-box;
    }

    .footer .footer-bottom .container .top .svg {
        text-align: center;
        width: 233px;
        height: 48px;
    }

    .footer .footer-bottom .container .top .svg img {
        height: 100%;
    }

    .footer .footer-bottom .container .top .img {
        width: 498px;
        height: 41px;
    }

    .footer .footer-bottom .container .top .img img {
        width: 100%;
        height: 100%;
    }

    .footer .footer-bottom .container .content {
        display: flex;
    }

    .footer .footer-bottom .container .content li {
        margin-right: 30px;
    }

    .footer .footer-bottom .container .content li:nth-child(3) {
        margin-right: 0px;
    }

    .footer .footer-bottom .container .content li .WeChat {
        display: flex;
    }

    .footer .footer-bottom .container .content h1 {
        color: #404040;
        font-size: 16px;
        font-weight: bold;
    }

    .footer .footer-bottom .container .content .iphone {
        color: #666666;
        font-size: 16px;
        margin-top: 30px;
    }

    .footer .footer-bottom .container .content .email {
        color: #666666;
        font-size: 16px;
        margin-top: 12px;
    }

    .footer .footer-bottom .container .content .address {
        color: #666666;
        font-size: 16px;
        margin-top: 12px;
    }

    .footer .footer-bottom .container .content .img {
        margin-top: 22px;
    }

    .footer .footer-bottom .container .content .item {
        display: flex;
        width: 307px;
    }

    .footer .footer-bottom .container .content .item .about {
        font-size: 16px;
        color: #404040;
        font-weight: bold;
    }

    .footer .footer-bottom .container .content .item .about1 {
        font-size: 16px;
        color: #404040;
        font-weight: bold;
        margin-right: 38px;
    }

    .footer .footer-bottom .container .content .item {
        margin-bottom: 30px;
        width: 307px;
    }

    .footer .footer-bottom .container .content .item .introduce {
        display: flex;
    }

    .footer .footer-bottom .container .content .item .introduce .company {
        color: #666666;
        font-size: 16px;
        margin-left: 30px;
    }

    .footer .footer-bottom .container .content .item .product {
        font-size: 16px;
        color: #404040;
        font-weight: bold;
        width: 22%;;
    }

    .footer .footer-bottom .container .content .item .product1 {
        width: 76%;
        display: flex;
        flex-wrap: wrap;
    }

    .footer .footer-bottom .container .content .item .product1 span {
        display: block;
        color: #666666;
        font-size: 16px;
        margin-left: 12px;
        margin-bottom: 12px;
    }

    .footer .footer-bottom .container .content .WeChat {
        text-align: center;
    }

    .footer .footer-bottom .container .bottom {
        display: flex;
        justify-content: space-between;
    }

    .footer .footer-bottom .container .bottom .ul {
        display: flex;
    }

    .fixed {
        display: none;
    }

    /*底部开始*/
}

/* 手机端屏幕尺寸 */
@media screen and (min-width: 414px) and (max-width: 767px) {
    /* 头部导航开始 */
    .header {
        width: 100%;
        /*background: #ffffff;*/
        height: 90px;
        line-height: 72px;
        width: 100%;
        top: 0;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        position: absolute;
        z-index: 333;
    }

    .header-fixed {
        position: fixed;
        z-index: 999;
        height: 90px;
        line-height: 70px;
        transition: .4s;
        border-bottom: 1px solid #cecece;
        background: #fff;
    }

    .header-fixed .head-nav .nav-list .nav-item a {
        display: block;
        color: #000000;
        position: relative;
        font-size: 16px;
    }

    .header-fixed .head-nav .nav-list .nav-item .active a {
        color: #000000;
    }

    .header-fixed .head-logo h1 a {
        background: url("../images/logo1.svg") no-repeat;
        display: block;
        width: 233px;
        height: 48px;
    }

    .header-fixed .head-nav .nav-list .nav-item1 a {
        display: flex;
        align-items: center;
        margin-right: 35px;
        color: #300f60;
        font-weight: bold;
    }

    .header-fixed .head-nav .nav-list .nav-item1 h1 {
        background-image: url("../images/icon._cj1.png");
        width: 30px;
        height: 30px;
    }

    .header-fixed .head-nav .nav-list .nav-item3 {
        width: 90px;
        height: 40px;
        line-height: 40px;
        border-radius: 30px;
        display: block;
        text-align: center;
        margin-right: 35px;
        border: 1px solid #300f60;
    }

    .header-fixed .head-nav .nav-list .nav-item3 a {
        color: #300f60;
        font-weight: bold;
    }

    .header .container {
        width: 94%;
        max-width: 1600px;
        margin: 0 auto;
        justify-content: space-between;
        box-sizing: border-box;
        position: relative;
    }

    .header-title {
        width: 100%;
        /*margin: 60px auto 0px auto;*/
        position: absolute;
        z-index: 332;
        /*top: 30px;*/
    }

    .header-title .container {
        width: 94%;
        max-width: 950px;
        margin: 60px auto 0px auto;
    }

    .header-title .container h1 {
        font-size: 50px;
        color: white;
        margin-bottom: 30px;
        font-weight: bold;
    }

    .header-title .container h2 {
        font-size: 30px;
        color: white;
    }

    .header-title .container .free {
        width: 170px;
        height: 55px;
        background: #fcc718;
        color: white;
        text-align: center;
        border-radius: 30px;
        line-height: 55px;
        margin-top: 60px;
        display: block;
    }

    .head-logo {
        width: 15%;
    }

    .head-logo h1 a {
        background: url("../images/logo.svg") no-repeat;
        display: block;
        width: 233px;
        height: 48px;
    }

    .nav {
        width: 44%;
        margin-right: auto;
        /*padding-left: 92px;*/
        text-align: center;
    }

    .head-nav .nav-list .nav-item {
        /*margin-right: 35px;*/
        display: flex;
        align-items: center;
        position: relative;
    }

    .head-nav .nav-list .nav-item:hover .subnav {
        opacity: 1;
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
    }

    .head-nav .nav-list .nav-item .subnav {
        position: absolute;
        width: 660px;
        height: 264px;
        top: 72px;
        left: -300px;
        z-index: 99;
        line-height: 46px;
        background-color: #fff;
        text-align: center;
        opacity: 0;
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        transform-origin: 0 0;
        border-radius: 10px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 50px;
        box-sizing: border-box;
        display: none;
    }

    .head-nav .nav-list .nav-item .subnav::after {
        content: "";
        position: absolute;
        width: 0px;
        border-width: 10px;
        border-style: solid;
        border-color: transparent transparent #ffffff transparent;
        top: -18px;
        left: 50%;
        margin-left: -10px;
        transition: all 0.2s ease 0s;
    }

    .head-nav .nav-list .nav-item .subnav li {
        position: relative;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item {
        width: 30%;
        position: relative;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item:hover .overlay {
        opacity: 1;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 0;
        transition: .5s ease;
        background-color: #300f60;
        border-radius: 10px;
        width: 90%;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay .icon a {
        display: block;
        width: 50px;
        height: 50px;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay .text-icon {
        display: flex;
        align-items: center;
        width: 150px;
        height: 50px;
        line-height: 50px;
        margin: 0 auto;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay .text-icon .icon-title a {
        display: block;
        color: white;
        width: 80px;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item a {
        color: #8b8e8d;
        /*border-bottom: 1px #ededed solid;*/
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        width: 90%;
        margin: auto;
        display: flex;
        align-items: center;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item a .icon-title {
        margin-left: 15px;
    }

    .head-nav .nav-list .nav-item1 {
        display: flex;
        align-items: center;
        margin-right: 35px;
    }

    .head-nav .nav-list .nav-item1 h1 {
        background-image: url("../images/icon._cj.png");
        width: 30px;
        height: 30px;
    }

    .head-nav .nav-list .nav-item1 a {
        color: white;
    }

    .head-nav .nav-list .nav-item2 {
        width: 156px;
        height: 40px;
        line-height: 40px;
        border-radius: 30px;
        background: #fcc718;
        display: block;
        text-align: center;
        margin-right: 35px;
    }

    .head-nav .nav-list .nav-item3 {
        width: 90px;
        height: 40px;
        line-height: 40px;
        border-radius: 30px;
        display: block;
        text-align: center;
        margin-right: 35px;
        border: 1px solid #ffffff;
    }

    .head-nav .nav-list .nav-item3 a {
        color: white;
    }

    .head-nav .nav-list .nav-item2 a {
        color: white;
    }

    .head-nav .nav-list .nav-item2 a {
        text-align: center;
    }

    .head-nav .nav-list .nav-item img {
        width: 30px;
        height: 30px;
    }

    .head-nav .nav-list {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-top: 12px;
        align-items: center;
    }

    .head-nav .nav-list .nav-item a {
        display: block;
        color: #ffffff;
        position: relative;
        font-size: 16px;
    }

    .head-nav .nav-list .nav-item.active a {
        /*color: #ffffff;*/
        /*border-bottom: 1px solid #450d94;*/
    }

    .head-nav .nav-list .nav-item:hover > a::after, .head-nav .nav-list .nav-item.active:hover > a::after {
        width: 90%;

    }

    .head-nav .nav-list .nav-item > a::after {
        content: "";
        height: 2px;
        background: #450d94;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        width: 0;
    }

    /* 头部导航结束 */
    /* 首页轮播图开始 */
    .index-banner {
        /* margin-top: 12px; */
        display: none;
    }

    .index-banner .swiper-container .swiper-wrapper {
        /*height: 800px;*/
    }

    /* 首页轮播图结束 */
    /* 业务领域开始 */
    .page-business {
        width: 100%;
        margin-top: 100px;
    }

    .page-business .container {
        width: 96%;
        max-width: 1600px;
        margin: 0 auto;
        overflow: hidden;
    }

    .business {
        margin-top: 60px;
        display: flex;
        justify-content: space-between;
    }

    .business .business-item {
        width: 23%;
    }

    .business .business-item .img {
        overflow: hidden;
    }

    .business .business-item .img img {
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
    }

    .business .business-item .img img:hover {
        transition: all 0.6s;
        transform: scale(1.1);
        width: 100%;
        height: 100%;
    }

    .business .business-item .business-text {
        margin-top: 12px;
    }

    .business .business-item .business-text h2 {
        font-size: 20px;
        font-weight: bold;
        color: rgb(25 24 24);
    }

    .business .business-item .business-text p {
        margin-top: 12px;
        font-size: 16px;
        font-weight: 500;
        color: #666;
    }

    /* 人员管理系统开始 */
    .page-personnel {
        width: 100%;
        /*margin-top: 100px;*/
    }

    .page-personnel .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .personnel {
        width: 100%;
        max-width: 1000px;
        margin-top: 30px;
        display: flex;
        justify-content: space-between;
        box-shadow: 1px 4px 20px rgba(145, 145, 145, 0.28);
        border: 2px solid #ffffff;
        padding: 22px;
        box-sizing: border-box;
    }

    .personnel .personnel-item {
        width: 30%;
    }

    .personnel .personnel-item a {
        /*display: flex;*/
        /*align-items: center;*/
    }

    .personnel .personnel-item .img {
        overflow: hidden;
        width: 105px;
        height: 89px;
    }

    .personnel .personnel-item .img img {
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        width: 100%;
        height: 100%;
    }

    .personnel .personnel-item .img img:hover {
        transition: all 0.6s;
        transform: scale(1.1);
        width: 100%;
        height: 100%;
    }

    .personnel .personnel-item .personnel-text {
        margin-top: 12px;
        /*margin-left: 12px;*/
    }

    .personnel .personnel-item .personnel-text h2 {
        font-size: 14px;
        font-weight: bold;
        color: #694e8e;
    }

    .personnel .personnel-item .personnel-text p {
        margin-top: 12px;
        font-size: 16px;
        font-weight: 500;
        color: #666;
    }

    /* 公用标题 */
    .page-title {
        text-align: center;
    }

    .page-title span {
        color: #341067;
        font-size: 20px;
        font-weight: bold;
    }

    /*.page-title h3{*/
    /*    color: #ebeaee;*/
    /*    text-transform: uppercase;*/
    /*    margin-top: -16px;*/
    /*    display: block;*/
    /*    z-index: 1;*/
    /*    position: relative;*/
    /*    font-size: 18px;*/
    /*}*/
    .page-title h3 {
        color: #ebeaee;
        text-transform: uppercase;
        margin-top: -14px;
        display: block;
        z-index: 1;
        position: relative;
        font-size: 16px;
    }

    .page-title p {
        font-size: 22px;
        color: #341067;
        display: block;
        position: relative;
        z-index: 3;
    }

    .page-title p span {
        font-size: 25px;
        font-weight: bold;
        color: #341067;
    }

    .page-title text {
        line-height: 25px;
        margin-top: 30px;
        font-size: 16px;
        display: none;
    }

    .page-Company-title {
        text-align: center;
    }

    .page-Company-title h3 {
        font-size: 16px;
        color: #999;
        text-transform: uppercase;
    }

    .page-Company-title p {
        /* margin-top: -20px; */
        font-size: 30px;
        color: #007aff;
        font-weight: bold;
    }

    .page-Company-title p span {
        font-size: 30px;
        font-weight: bold;
        color: #0a0a0a;
    }

    /* 公用标题结束 */
    /* 人才管理系统结束 */
    /* 数据化人才成长系统开始 */
    .page-datamation {
        width: 100%;
        position: relative;
    }

    .page-datamation .IMG {
        position: absolute;
        top: 0;
    }

    .page-datamation .IMG img {
        animation: jumpBox 1.8s infinite; /* 1.8s 事件完成时间周期 infinite无限循环 */
    }

    @keyframes jumpBox { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(0px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .page-datamation .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
        padding: 60px 0;
        box-sizing: border-box;
    }

    .container .datamation {
        margin-top: -22px;
        display: flex;
        justify-content: space-between;
    }

    .container .datamation .service-text h2 {
        font-size: 26px;
        font-weight: bold;
        line-height: 40px;
        display: none;
    }

    .container .datamation .service-text p {
        line-height: 30px;
        color: #666;
        overflow: auto;
        padding-right: 10px;
        margin-top: 12px;
        font-size: 15px;
    }

    .container .datamation .service-text .buttom {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 25px;
        text-align: center;
        width: 100%;
    }

    .container .datamation .service-text .buttom .buttom-item {
        width: 30%;
        margin-top: 24px;
        position: relative;
    }

    .container .datamation .service-text .buttom .buttom-item .overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        transition: .5s ease;
        background-color: #3e1479;
    }

    .container .datamation .service-text .buttom .buttom-item:hover .overlay {
        opacity: 1;
    }

    .container .datamation .service-text .buttom .buttom-item .text {
        color: white;
        font-size: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .container .datamation .service-text .buttom .buttom-item .text a h1 {
        font-size: 16px;
        line-height: 30px;
    }

    .container .datamation .service-text .buttom .buttom-item .text a {
        color: white;
    }

    .container .datamation .service-text .buttom .buttom-item .icon {
        margin: 0 auto;
        display: block;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        margin-bottom: 10px;
        padding: 10px;
    }

    .container .datamation .service-text .buttom .buttom-item .cost {
        font-size: 17px;
        font-weight: 700;
    }

    /* 数据化人才成长系统结束 */
    /* 视频介绍开始 */
    .page-video {
        width: 100%;
        margin-top: 100px;
        position: relative;
    }

    .page-video .IMG {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .page-video .IMG img {
        animation: jumpBox 1.8s infinite; /* 1.8s 事件完成时间周期 infinite无限循环 */
    }

    @keyframes jumpBox { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(0px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .page-video .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .video-introduce-top {
        position: relative;
    }

    .video-introduce-top .IMG {
        position: absolute;
        right: -60px;
        top: -80px;
        z-index: 1;
    }

    .video-introduce-top .IMG img {
        animation: jumpBoxHandler 1.8s infinite;
    }

    @keyframes jumpBoxHandler { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(30px, 0px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .video-introduce {
        margin-top: 60px;
        /*display: flex;*/
        justify-content: space-between;
        position: relative;
        z-index: 3;
    }

    .video-introduce .video-introduce-item {
        width: 100%;
        margin-bottom: 40px;
        background: #ffffff;
        border-radius: 12px 12px 50px 12px;
        box-shadow: 16px 11px 20px #eeecf6;
    }

    .video-introduce .video-introduce-item .img {
        height: 209px;
        overflow: hidden;
        border-radius: 12px;
    }

    .video-introduce .video-introduce-item .img img {
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
    }

    .video-introduce .video-introduce-item .img img:hover {
        width: 100%;
        height: 100%;
        transition: all 0.6s;
        transform: scale(1.1);
    }

    .video-introduce .video-introduce-item .engineering-text {
        margin-top: 12px;
        padding: 22px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .video-introduce .video-introduce-item .engineering-text h2 {
        font-size: 20px;
        color: #080808;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .video-introduce .video-introduce-item .engineering-text p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .video-buttom a {
        background: #edebf5;
        width: 200px;
        height: 60px;
        line-height: 60px;
        border-radius: 50px;
        text-align: center;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        padding: 0 35px;
        box-sizing: border-box;
    }

    .video-buttom a .arrows-title {
        font-size: 15px;
        color: #341067;
        margin-top: 3px;
    }

    .video-buttom a .arrows {
        width: 20px;
        height: 19px;
    }

    .video-buttom a .arrows img {
        width: 100%;
        height: 100%;
    }

    /* 视频介绍结束 */
    /* 更多企业信赖之选开始 */
    .page-Company {
        margin-top: 100px;
        background-image: linear-gradient(to right, rgb(233, 230, 244), rgb(252, 252, 254));
    }

    .page-Company .container {
        width: 100%;
        padding-top: 30px;
        box-sizing: border-box;

        overflow: hidden;
        margin-left: auto;
    }

    .page-Company .container .Company {
        text-align: center;
        margin-top: 45px;
    }

    .page-advantage {
        display: flex;
        margin-bottom: 21px;
        margin-top: 21px;
        margin-left: 25px;
        justify-content: space-between;
        position: relative;
    }

    .page-advantage .advantage {
        display: flex;
        align-items: center;
        height: 120px;
        overflow: hidden;
        width: 30% !important;
        text-align: center;
    }

    .page-advantage .advantage .img {
        width: 120px !important;
        height: 120px;
        line-height: 120px;
        background: white;
    }

    .page-advantage .advantage .img img {
        width: 60px;
    }

    .page-advantage .advantage .text {
        width: 228px;
        background: #fafafa;
        padding: 40px 20px;
        box-sizing: border-box;
        display: none;
    }

    .page-advantage .advantage .text h2 {
        color: #494949;
        font-size: 16px;
    }

    .page-advantage .advantage .text h2 span {
        color: #a1a1a1;
        font-size: 16px;
    }

    .page-advantage .advantage .text p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin-top: 10px;
        color: #a1a1a1;
        font-size: 16px;
    }

    .across {
        margin-top: 48px;
        margin-right: -139px;
        display: none;
    }

    .across img {
        margin-left: auto;
        display: block;
    }

    .advantage-bottom {
        width: 100%;
        position: relative;
        padding-bottom: 100px;
        box-sizing: border-box;
    }

    .advantage-bottom .IMG {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 600px;
        height: 500px;
        overflow: hidden;
        z-index: 1;
    }

    .advantage-bottom .IMG img {
        animation: jumpBox 1.8s infinite;
    }

    @keyframes jumpBoxr { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(0px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .advantage-bottom .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        z-index: 3;
        display: none;
    }

    .advantage-bottom .container .advantage-bottom-list {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .advantage-bottom .container .advantage-bottom-list li {
        width: 30%;
        margin-top: 55px;
        margin-bottom: 55px;
    }

    .advantage-bottom .container .advantage-bottom-list li h1 {
        color: #341067;
        font-size: 24px;
        letter-spacing: 5px;
    }

    .advantage-bottom .container .advantage-bottom-list li h1 span {
        font-size: 45px;
        color: #341067;
        font-weight: bold;
        letter-spacing: 2px;
    }

    .advantage-bottom .container .advantage-bottom-list p {
        font-size: 18px;
        color: #341067;
        margin-top: 15px;
    }

    .advantage-bottom .superhro {
        position: absolute;
        bottom: -30px;
        left: 15%;
        z-index: 3;
        display: none;
    }

    .advantage-bottom .superhro .title {
        width: 1200px;
        font-size: 168px;
        color: white;
        font-weight: bold;
        letter-spacing: 5px;
        text-align: center;
        margin-top: 20px;
    }

    /* 更多企业信赖之选结束 */
    /*行业资讯开始*/
    .page-industry {
        width: 100%;
        background: #fafafa;
    }

    .page-industry .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
        padding-top: 55px;
        box-sizing: border-box;
    }

    .page-industry .container .industry {
        display: none;
    }

    .page-industry .container .Mobile-industry .list {
        margin-top: 40px;
    }

    .page-industry .container .Mobile-industry .list .item {
        display: flex;
        margin-top: 12px;
    }

    .page-industry .container .Mobile-industry .list .item .img {
        width: 222px;
    }

    .page-industry .container .Mobile-industry .list .item .img img {
        width: 100%;
        height: 100%;
        border-radius: 12px;
    }

    .page-industry .container .Mobile-industry .list .item .title {
        padding-left: 12px;
        box-sizing: border-box;
    }

    .page-industry .container .Mobile-industry .list .item .title h1 {
        color: #333333;
        overflow: hidden;
        -webkit-line-clamp: 2;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        word-break: break-all;
        line-height: 21px;
    }

    .page-industry .container .Mobile-industry .list .item .title .time {
        margin-top: 12px;
        font-size: 15px;
        color: #341067;
    }

    .page-industry .container .industry-list {
        display: flex;
        justify-content: space-between;
        width: 94%;
        max-width: 1000px;
        margin: 60px auto 0px auto;
        overflow: hidden;
    }

    .page-industry .container .industry-list li {
        width: 30%;
    }

    .page-industry .container .industry-list li .img {
        width: 306px;
        height: 216px;
    }

    .page-industry .container .industry-list li .img img {
        width: 100%;
        height: 100%;
        border-radius: 15px;
    }

    .page-industry .container .industry .industry-button-prev {
        position: absolute;
        top: 39%;
        right: auto;
        left: -1%;
        background: #341067;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--swiper-navigation-color, var(--swiper-theme-color));
    }


    .page-industry .container .industry .industry-button-prev::after {
        content: 'prev';
        font-family: swiper-icons;
        font-size: 15px;
        color: #ffffff;
        text-transform: none !important;
        letter-spacing: 0;
        text-transform: none;
        font-variant: initial;
        line-height: 1;
    }

    .page-industry .container .industry .industry-button-next {
        position: absolute;
        right: -2%;
        left: auto;
        top: 39%;
        background: #341067;
        /*border: 1px solid #341067;*/
        border-radius: 50%;
        width: 25px;
        height: 25px;
        margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--swiper-navigation-color, var(--swiper-theme-color));
    }

    .page-industry .container .industry .industry-button-next::after {
        content: 'next';
        font-family: swiper-icons;
        font-size: 15px;
        color: #ffffff;
        text-transform: none !important;
        letter-spacing: 0;
        text-transform: none;
        font-variant: initial;
        line-height: 1;
    }

    .page-industry .container .industry-list li .content h1 {
        margin-top: 15px;
        line-height: 25px;
    }

    .page-industry .container .industry-list li .content h1 a {
        color: #5c3f84;
        font-size: 16px;
        font-weight: bold;

    }

    .page-industry .container .industry-list li .content a {
        display: flex;
        margin: 12px 0px;
    }

    .page-industry .container .industry-list li .content a .check {
        color: #5c3f84;
        font-weight: bold;
        margin-right: 5px;
    }

    .page-industry .container .industry-list li .content a .icon {
        width: 13px;
        height: 16px;
    }

    .page-industry .container .industry-list li .content a .icon img {
        width: 100%;
        height: 100%;
    }

    .page-industry .container .industry-list li .content text {
        color: #999999;
    }

    .page-industry .container .industry .industry-bottom {
        display: flex;
        background: #edebf5;
        width: 200px;
        height: 60px;
        line-height: 60px;
        border-radius: 50px;
        text-align: center;
        margin: 0 auto;
        justify-content: space-between;
        padding: 0 35px;
        box-sizing: border-box;
    }

    .page-industry .container .industry a .icon {
        width: 13px;
        height: 16px;
    }

    .page-industry .container .industry a .icon img {
        width: 100%;
        height: 100%;
    }

    .page-industry .container .industry a .more {
        font-size: 15px;
        color: #341067;
        margin-top: 3px;
    }

    .page-industry .container .Mobile-industry .industry-bottom {
        display: flex;
        background: #edebf5;
        width: 150px;
        height: 50px;
        line-height: 50px;
        border-radius: 50px;
        text-align: center;
        margin: 20px auto 0px auto;
        justify-content: space-between;
        padding: 0 35px;
        box-sizing: border-box;
    }

    .page-industry .container .Mobile-industry a .icon {
        width: 13px;
        height: 16px;
    }

    .page-industry .container .Mobile-industry a .icon img {
        width: 100%;
        height: 100%;
    }

    .page-industry .container .Mobile-industry a .more {
        font-size: 15px;
        color: #341067;
        margin-top: 3px;
        font-weight: bold;
    }

    /*行业资讯结束*/
    /*预约产品演示开始*/
    .page-product {
        background: #fafafa;
        padding-top: 23px;
        box-sizing: border-box;
    }

    .page-product .bg {
        background-image: url("../images/banner2.png");
    }

    .page-product .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
        padding-top: 57px;
        box-sizing: border-box;
        position: relative;
    }

    .page-product .container .product {
        /*display: flex;*/
        /*justify-content: center;*/
        padding: 60px 0px;
        box-sizing: border-box;
    }

    .page-product .container .IMG {
        position: absolute;
        right: 0;
        top: 0;
    }

    .page-product .container .IMG img {
        animation: jump 1.8s infinite;
    }

    @keyframes jump { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(30px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .page-product .container .product .product-left .input {
        width: 384px;
        height: 64px;
        line-height: 64px;
        background: #ffffff;
        border-radius: 30px;
        padding-left: 32px;
        box-sizing: border-box;
        margin-bottom: 20px;
        box-shadow: 16px 11px 20px #eeecf6;
    }

    .page-product .container .product .product-left .submit {
        width: 384px;
        height: 64px;
        line-height: 64px;
        border-radius: 30px;
        background: #edebf5;
        text-align: center;
        color: #341067;
        font-size: 16px;
        font-weight: bold;
    }

    .page-product .container .product .product-left .input input {
        border: 0;
        background: 0;
    }

    .page-product .container .product .product-right {
        width: 310px;
        height: 256px;
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 16px 11px 20px #eeecf6;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 12px auto 0px auto;
    }

    /*预约产品演示结束*/
    /*底部开始*/
    .footer {
        width: 100%;
        padding-bottom: 60px;
        box-sizing: border-box;
    }

    .footer .footer-top {
        border-top: 1px solid #ebebeb;
        background: #fafafa;
    }

    .footer .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .footer .container .footer-top {
        background: #fafafa;
        justify-content: space-between;
        height: 60px;
        display: none;
    }

    .footer .container .footer-top li {
        width: 20%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer .footer-bottom {
        background: #f6f6f6;
    }

    .footer .footer-bottom .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .footer .footer-bottom .container .top {
        padding: 40px 0px 0px 0px;
        box-sizing: border-box;
    }

    .footer .footer-bottom .container .top .svg {
        text-align: center;
        width: 196px;
        height: 48px;
    }

    .footer .footer-bottom .container .top .svg img {
        height: 100%;
    }

    .footer .footer-bottom .container .top .img {
        /*width: 498px;*/
        /*height: 41px;*/
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .footer .footer-bottom .container .top .img img {
        width: 100%;
        height: 100%;
    }

    .footer .footer-bottom .container .content {
        /*display: flex;*/
    }

    .footer .footer-bottom .container .content li {
        margin-right: 30px;
    }

    .footer .footer-bottom .container .content li:nth-child(2) {
        display: none;
    }

    .footer .footer-bottom .container .content li:nth-child(3) {
        margin-right: 0px;
    }

    .footer .footer-bottom .container .content li .WeChat {
        display: flex;
        justify-content: center;
        margin-top: 16px;
    }

    .footer .footer-bottom .container .content h1 {
        color: #404040;
        font-size: 16px;
        font-weight: bold;
        display: none;
    }

    .footer .footer-bottom .container .content .iphone {
        color: #666666;
        font-size: 14px;
        margin-top: 30px;
    }

    .footer .footer-bottom .container .content .email {
        color: #666666;
        font-size: 14px;
        margin-top: 12px;
    }

    .footer .footer-bottom .container .content .address {
        color: #666666;
        font-size: 14px;
        margin-top: 12px;
    }

    .footer .footer-bottom .container .content .img1 {
        margin-top: 22px;
        display: none;
    }

    .footer .footer-bottom .container .content .item {
        display: flex;
        width: 307px;
    }

    .footer .footer-bottom .container .content .item .about {
        font-size: 16px;
        color: #404040;
        font-weight: bold;
    }

    .footer .footer-bottom .container .content .item .about1 {
        font-size: 16px;
        color: #404040;
        font-weight: bold;
        margin-right: 38px;
    }

    .footer .footer-bottom .container .content .item {
        margin-bottom: 30px;
        width: 307px;
    }

    .footer .footer-bottom .container .content .item .introduce {
        display: flex;
    }

    .footer .footer-bottom .container .content .item .introduce .company {
        color: #666666;
        font-size: 16px;
        margin-left: 30px;
    }

    .footer .footer-bottom .container .content .item .product {
        font-size: 16px;
        color: #404040;
        font-weight: bold;
        width: 22%;;
    }

    .footer .footer-bottom .container .content .item .product1 {
        width: 76%;
        display: flex;
        flex-wrap: wrap;
    }

    .footer .footer-bottom .container .content .item .product1 span {
        display: block;
        color: #666666;
        font-size: 16px;
        margin-left: 12px;
        margin-bottom: 12px;
    }

    .footer .footer-bottom .container .content .WeChat {
        text-align: center;
    }

    .footer .footer-bottom .container .bottom {
        display: flex;
        justify-content: space-between;
    }

    .footer .footer-bottom .container .bottom .ul {
        display: none;
    }

    .footer .footer-bottom .container .bottom .txt {
        text-align: center;
        margin-top: 12px;
        padding-bottom: 30px;
        box-sizing: border-box;
    }

    .fixed {
        position: fixed;
        bottom: 0;
        z-index: 666;
    }

    .fixed .fixed-content {
        display: flex;
        padding-top: 60px;
        box-sizing: border-box;
    }

    .fixed .fixed-content a {
        width: 207px;
        background-image: linear-gradient(to right, #501ca3, #7456e2);
        height: 60px;
        line-height: 60px;
        color: #ffffff;
        text-align: center;
    }

    /*底部开始*/
}

@media screen and (min-width: 375px) and (max-width: 413px) {
    /* 头部导航开始 */
    .header {
        width: 100%;
        /*background: #ffffff;*/
        height: 90px;
        line-height: 72px;
        width: 100%;
        top: 0;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        position: absolute;
        z-index: 333;
    }

    .header-fixed {
        position: fixed;
        z-index: 999;
        height: 90px;
        line-height: 70px;
        transition: .4s;
        border-bottom: 1px solid #cecece;
        background: #fff;
    }

    .header-fixed .head-nav .nav-list .nav-item a {
        display: block;
        color: #000000;
        position: relative;
        font-size: 16px;
    }

    .header-fixed .head-nav .nav-list .nav-item .active a {
        color: #000000;
    }

    .header-fixed .head-logo h1 a {
        background: url("../images/logo1.svg") no-repeat;
        display: block;
        width: 233px;
        height: 48px;
    }

    .header-fixed .head-nav .nav-list .nav-item1 a {
        display: flex;
        align-items: center;
        margin-right: 35px;
        color: #300f60;
        font-weight: bold;
    }

    .header-fixed .head-nav .nav-list .nav-item1 h1 {
        background-image: url("../images/icon._cj1.png");
        width: 30px;
        height: 30px;
    }

    .header-fixed .head-nav .nav-list .nav-item3 {
        width: 90px;
        height: 40px;
        line-height: 40px;
        border-radius: 30px;
        display: block;
        text-align: center;
        margin-right: 35px;
        border: 1px solid #300f60;
    }

    .header-fixed .head-nav .nav-list .nav-item3 a {
        color: #300f60;
        font-weight: bold;
    }

    .header .container {
        width: 94%;
        max-width: 1600px;
        margin: 0 auto;
        justify-content: space-between;
        box-sizing: border-box;
        position: relative;
    }

    .header-title {
        width: 100%;
        /*margin: 60px auto 0px auto;*/
        position: absolute;
        z-index: 332;
        /*top: 30px;*/
    }

    .header-title .container {
        width: 94%;
        max-width: 950px;
        margin: 60px auto 0px auto;
    }

    .header-title .container h1 {
        font-size: 50px;
        color: white;
        margin-bottom: 30px;
        font-weight: bold;
    }

    .header-title .container h2 {
        font-size: 30px;
        color: white;
    }

    .header-title .container .free {
        width: 170px;
        height: 55px;
        background: #fcc718;
        color: white;
        text-align: center;
        border-radius: 30px;
        line-height: 55px;
        margin-top: 60px;
        display: block;
    }

    .head-logo {
        width: 15%;
    }

    .head-logo h1 a {
        background: url("../images/logo.svg") no-repeat;
        display: block;
        width: 233px;
        height: 48px;
    }

    .nav {
        width: 44%;
        margin-right: auto;
        /*padding-left: 92px;*/
        text-align: center;
    }

    .head-nav .nav-list .nav-item {
        /*margin-right: 35px;*/
        display: flex;
        align-items: center;
        position: relative;
    }

    .head-nav .nav-list .nav-item:hover .subnav {
        opacity: 1;
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
    }

    .head-nav .nav-list .nav-item .subnav {
        position: absolute;
        width: 660px;
        height: 264px;
        top: 72px;
        left: -300px;
        z-index: 99;
        line-height: 46px;
        background-color: #fff;
        text-align: center;
        opacity: 0;
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        transform-origin: 0 0;
        border-radius: 10px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 50px;
        box-sizing: border-box;
        display: none;
    }

    .head-nav .nav-list .nav-item .subnav::after {
        content: "";
        position: absolute;
        width: 0px;
        border-width: 10px;
        border-style: solid;
        border-color: transparent transparent #ffffff transparent;
        top: -18px;
        left: 50%;
        margin-left: -10px;
        transition: all 0.2s ease 0s;
    }

    .head-nav .nav-list .nav-item .subnav li {
        position: relative;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item {
        width: 30%;
        position: relative;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item:hover .overlay {
        opacity: 1;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 0;
        transition: .5s ease;
        background-color: #300f60;
        border-radius: 10px;
        width: 90%;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay .icon a {
        display: block;
        width: 50px;
        height: 50px;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay .text-icon {
        display: flex;
        align-items: center;
        width: 150px;
        height: 50px;
        line-height: 50px;
        margin: 0 auto;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay .text-icon .icon-title a {
        display: block;
        color: white;
        width: 80px;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item a {
        color: #8b8e8d;
        /*border-bottom: 1px #ededed solid;*/
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        width: 90%;
        margin: auto;
        display: flex;
        align-items: center;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item a .icon-title {
        margin-left: 15px;
    }

    .head-nav .nav-list .nav-item1 {
        display: flex;
        align-items: center;
        margin-right: 35px;
    }

    .head-nav .nav-list .nav-item1 h1 {
        background-image: url("../images/icon._cj.png");
        width: 30px;
        height: 30px;
    }

    .head-nav .nav-list .nav-item1 a {
        color: white;
    }

    .head-nav .nav-list .nav-item2 {
        width: 156px;
        height: 40px;
        line-height: 40px;
        border-radius: 30px;
        background: #fcc718;
        display: block;
        text-align: center;
        margin-right: 35px;
    }

    .head-nav .nav-list .nav-item3 {
        width: 90px;
        height: 40px;
        line-height: 40px;
        border-radius: 30px;
        display: block;
        text-align: center;
        margin-right: 35px;
        border: 1px solid #ffffff;
    }

    .head-nav .nav-list .nav-item3 a {
        color: white;
    }

    .head-nav .nav-list .nav-item2 a {
        color: white;
    }

    .head-nav .nav-list .nav-item2 a {
        text-align: center;
    }

    .head-nav .nav-list .nav-item img {
        width: 30px;
        height: 30px;
    }

    .head-nav .nav-list {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-top: 12px;
        align-items: center;
    }

    .head-nav .nav-list .nav-item a {
        display: block;
        color: #ffffff;
        position: relative;
        font-size: 16px;
    }

    .head-nav .nav-list .nav-item.active a {
        /*color: #ffffff;*/
        /*border-bottom: 1px solid #450d94;*/
    }

    .head-nav .nav-list .nav-item:hover > a::after, .head-nav .nav-list .nav-item.active:hover > a::after {
        width: 90%;

    }

    .head-nav .nav-list .nav-item > a::after {
        content: "";
        height: 2px;
        background: #450d94;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        width: 0;
    }

    /* 头部导航结束 */
    /* 首页轮播图开始 */
    .index-banner {
        /* margin-top: 12px; */
        display: none;
    }

    .index-banner .swiper-container .swiper-wrapper {
        /*height: 800px;*/
    }

    /* 首页轮播图结束 */
    /* 业务领域开始 */
    .page-business {
        width: 100%;
        margin-top: 100px;
    }

    .page-business .container {
        width: 96%;
        max-width: 1600px;
        margin: 0 auto;
        overflow: hidden;
    }

    .business {
        margin-top: 60px;
        display: flex;
        justify-content: space-between;
    }

    .business .business-item {
        width: 23%;
    }

    .business .business-item .img {
        overflow: hidden;
    }

    .business .business-item .img img {
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
    }

    .business .business-item .img img:hover {
        transition: all 0.6s;
        transform: scale(1.1);
        width: 100%;
        height: 100%;
    }

    .business .business-item .business-text {
        margin-top: 12px;
    }

    .business .business-item .business-text h2 {
        font-size: 20px;
        font-weight: bold;
        color: rgb(25 24 24);
    }

    .business .business-item .business-text p {
        margin-top: 12px;
        font-size: 16px;
        font-weight: 500;
        color: #666;
    }

    /* 人员管理系统开始 */
    .page-personnel {
        width: 100%;
        /*margin-top: 100px;*/
    }

    .page-personnel .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .personnel {
        width: 100%;
        max-width: 1000px;
        margin-top: 30px;
        display: flex;
        justify-content: space-between;
        box-shadow: 1px 4px 20px rgba(145, 145, 145, 0.28);
        border: 2px solid #ffffff;
        padding: 22px;
        box-sizing: border-box;
    }

    .personnel .personnel-item {
        width: 30%;
    }

    .personnel .personnel-item a {
        /*display: flex;*/
        /*align-items: center;*/
    }

    .personnel .personnel-item .img {
        overflow: hidden;
        width: 105px;
        height: 89px;
    }

    .personnel .personnel-item .img img {
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        width: 100%;
        height: 100%;
    }

    .personnel .personnel-item .img img:hover {
        transition: all 0.6s;
        transform: scale(1.1);
        width: 100%;
        height: 100%;
    }

    .personnel .personnel-item .personnel-text {
        margin-top: 12px;
        /*margin-left: 12px;*/
    }

    .personnel .personnel-item .personnel-text h2 {
        font-size: 14px;
        font-weight: bold;
        color: #694e8e;
    }

    .personnel .personnel-item .personnel-text p {
        margin-top: 12px;
        font-size: 16px;
        font-weight: 500;
        color: #666;
    }

    /* 公用标题 */
    .page-title {
        text-align: center;
    }

    .page-title span {
        color: #341067;
        font-size: 20px;
        font-weight: bold;
    }

    /*.page-title h3{*/
    /*    color: #ebeaee;*/
    /*    text-transform: uppercase;*/
    /*    margin-top: -16px;*/
    /*    display: block;*/
    /*    z-index: 1;*/
    /*    position: relative;*/
    /*    font-size: 18px;*/
    /*}*/
    .page-title h3 {
        color: #ebeaee;
        text-transform: uppercase;
        margin-top: -14px;
        display: block;
        z-index: 1;
        position: relative;
        font-size: 16px;
    }

    .page-title p {
        font-size: 22px;
        color: #341067;
        display: block;
        position: relative;
        z-index: 3;
    }

    .page-title p span {
        font-size: 25px;
        font-weight: bold;
        color: #341067;
    }

    .page-title text {
        line-height: 25px;
        margin-top: 30px;
        font-size: 16px;
        display: none;
    }

    .page-Company-title {
        text-align: center;
    }

    .page-Company-title h3 {
        font-size: 16px;
        color: #999;
        text-transform: uppercase;
    }

    .page-Company-title p {
        /* margin-top: -20px; */
        font-size: 30px;
        color: #007aff;
        font-weight: bold;
    }

    .page-Company-title p span {
        font-size: 30px;
        font-weight: bold;
        color: #0a0a0a;
    }

    /* 公用标题结束 */
    /* 人才管理系统结束 */
    /* 数据化人才成长系统开始 */
    .page-datamation {
        width: 100%;
        position: relative;
    }

    .page-datamation .IMG {
        position: absolute;
        top: 0;
    }

    .page-datamation .IMG img {
        animation: jumpBox 1.8s infinite; /* 1.8s 事件完成时间周期 infinite无限循环 */
    }

    @keyframes jumpBox { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(0px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .page-datamation .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
        padding: 60px 0;
        box-sizing: border-box;
    }

    .container .datamation {
        margin-top: -22px;
        display: flex;
        justify-content: space-between;
    }

    .container .datamation .service-text h2 {
        font-size: 26px;
        font-weight: bold;
        line-height: 40px;
        display: none;
    }

    .container .datamation .service-text p {
        line-height: 30px;
        color: #666;
        overflow: auto;
        padding-right: 10px;
        margin-top: 12px;
        font-size: 15px;
    }

    .container .datamation .service-text .buttom {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 25px;
        text-align: center;
        width: 100%;
    }

    .container .datamation .service-text .buttom .buttom-item {
        width: 30%;
        margin-top: 24px;
        position: relative;
    }

    .container .datamation .service-text .buttom .buttom-item .overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        transition: .5s ease;
        background-color: #3e1479;
    }

    .container .datamation .service-text .buttom .buttom-item:hover .overlay {
        opacity: 1;
    }

    .container .datamation .service-text .buttom .buttom-item .text {
        color: white;
        font-size: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .container .datamation .service-text .buttom .buttom-item .text a h1 {
        font-size: 16px;
        line-height: 30px;
    }

    .container .datamation .service-text .buttom .buttom-item .text a {
        color: white;
    }

    .container .datamation .service-text .buttom .buttom-item .icon {
        margin: 0 auto;
        display: block;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        margin-bottom: 10px;
        padding: 10px;
    }

    .container .datamation .service-text .buttom .buttom-item .cost {
        font-size: 17px;
        font-weight: 700;
    }

    /* 数据化人才成长系统结束 */
    /* 视频介绍开始 */
    .page-video {
        width: 100%;
        margin-top: 100px;
        position: relative;
    }

    .page-video .IMG {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .page-video .IMG img {
        animation: jumpBox 1.8s infinite; /* 1.8s 事件完成时间周期 infinite无限循环 */
    }

    @keyframes jumpBox { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(0px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .page-video .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .video-introduce-top {
        position: relative;
    }

    .video-introduce-top .IMG {
        position: absolute;
        right: -60px;
        top: -80px;
        z-index: 1;
    }

    .video-introduce-top .IMG img {
        animation: jumpBoxHandler 1.8s infinite;
    }

    @keyframes jumpBoxHandler { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(30px, 0px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .video-introduce {
        margin-top: 60px;
        /*display: flex;*/
        justify-content: space-between;
        position: relative;
        z-index: 3;
    }

    .video-introduce .video-introduce-item {
        width: 100%;
        margin-bottom: 40px;
        background: #ffffff;
        border-radius: 12px 12px 50px 12px;
        box-shadow: 16px 11px 20px #eeecf6;
    }

    .video-introduce .video-introduce-item .img {
        height: 209px;
        overflow: hidden;
        border-radius: 12px;
    }

    .video-introduce .video-introduce-item .img img {
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
    }

    .video-introduce .video-introduce-item .img img:hover {
        width: 100%;
        height: 100%;
        transition: all 0.6s;
        transform: scale(1.1);
    }

    .video-introduce .video-introduce-item .engineering-text {
        margin-top: 12px;
        padding: 22px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .video-introduce .video-introduce-item .engineering-text h2 {
        font-size: 20px;
        color: #080808;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .video-introduce .video-introduce-item .engineering-text p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .video-buttom a {
        background: #edebf5;
        width: 200px;
        height: 60px;
        line-height: 60px;
        border-radius: 50px;
        text-align: center;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        padding: 0 35px;
        box-sizing: border-box;
    }

    .video-buttom a .arrows-title {
        font-size: 15px;
        color: #341067;
        margin-top: 3px;
    }

    .video-buttom a .arrows {
        width: 20px;
        height: 19px;
    }

    .video-buttom a .arrows img {
        width: 100%;
        height: 100%;
    }

    /* 视频介绍结束 */
    /* 更多企业信赖之选开始 */
    .page-Company {
        margin-top: 100px;
        background-image: linear-gradient(to right, rgb(233, 230, 244), rgb(252, 252, 254));
    }

    .page-Company .container {
        width: 100%;
        padding-top: 30px;
        box-sizing: border-box;
        max-width: 1800px;
        overflow: hidden;
        margin-left: auto;
    }

    .page-Company .container .Company {
        text-align: center;
        margin-top: 45px;
    }

    .page-advantage {
        display: flex;
        margin-bottom: 21px;
        margin-top: 21px;
        margin-left: 25px;
        justify-content: space-between;
        position: relative;
    }

    .page-advantage .advantage {
        display: flex;
        align-items: center;
        height: 120px;
        overflow: hidden;
        width: 30% !important;
        text-align: center;
    }

    .page-advantage .advantage .img {
        width: 120px !important;
        height: 120px;
        line-height: 120px;
        background: white;
    }

    .page-advantage .advantage .img img {
        width: 60px;
    }

    .page-advantage .advantage .text {
        width: 228px;
        background: #fafafa;
        padding: 40px 20px;
        box-sizing: border-box;
        display: none;
    }

    .page-advantage .advantage .text h2 {
        color: #494949;
        font-size: 16px;
    }

    .page-advantage .advantage .text h2 span {
        color: #a1a1a1;
        font-size: 16px;
    }

    .page-advantage .advantage .text p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin-top: 10px;
        color: #a1a1a1;
        font-size: 16px;
    }

    .across {
        margin-top: 48px;
        margin-right: -139px;
        display: none;
    }

    .across img {
        margin-left: auto;
        display: block;
    }

    .advantage-bottom {
        width: 100%;
        position: relative;
        padding-bottom: 100px;
        box-sizing: border-box;
    }

    .advantage-bottom .IMG {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 600px;
        height: 500px;
        overflow: hidden;
        z-index: 1;
    }

    .advantage-bottom .IMG img {
        animation: jumpBox 1.8s infinite;
    }

    @keyframes jumpBoxr { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(0px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .advantage-bottom .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        z-index: 3;
        display: none;
    }

    .advantage-bottom .container .advantage-bottom-list {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .advantage-bottom .container .advantage-bottom-list li {
        width: 30%;
        margin-top: 55px;
        margin-bottom: 55px;
    }

    .advantage-bottom .container .advantage-bottom-list li h1 {
        color: #341067;
        font-size: 24px;
        letter-spacing: 5px;
    }

    .advantage-bottom .container .advantage-bottom-list li h1 span {
        font-size: 45px;
        color: #341067;
        font-weight: bold;
        letter-spacing: 2px;
    }

    .advantage-bottom .container .advantage-bottom-list p {
        font-size: 18px;
        color: #341067;
        margin-top: 15px;
    }

    .advantage-bottom .superhro {
        position: absolute;
        bottom: -30px;
        left: 15%;
        z-index: 3;
        display: none;
    }

    .advantage-bottom .superhro .title {
        width: 1200px;
        font-size: 168px;
        color: white;
        font-weight: bold;
        letter-spacing: 5px;
        text-align: center;
        margin-top: 20px;
    }

    /* 更多企业信赖之选结束 */
    /*行业资讯开始*/
    .page-industry {
        width: 100%;
        background: #fafafa;
    }

    .page-industry .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
        padding-top: 55px;
        box-sizing: border-box;
    }

    .page-industry .container .industry {
        display: none;
    }

    .page-industry .container .Mobile-industry .list {
        margin-top: 40px;
    }

    .page-industry .container .Mobile-industry .list .item {
        display: flex;
        margin-top: 12px;
    }

    .page-industry .container .Mobile-industry .list .item .img {
        width: 222px;
    }

    .page-industry .container .Mobile-industry .list .item .img img {
        width: 100%;
        height: 100%;
        border-radius: 12px;
    }

    .page-industry .container .Mobile-industry .list .item .title {
        padding-left: 12px;
        box-sizing: border-box;
    }

    .page-industry .container .Mobile-industry .list .item .title h1 {
        color: #333333;
        overflow: hidden;
        -webkit-line-clamp: 2;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        word-break: break-all;
        line-height: 21px;
    }

    .page-industry .container .Mobile-industry .list .item .title .time {
        margin-top: 12px;
        font-size: 15px;
        color: #341067;
    }

    .page-industry .container .industry-list {
        display: flex;
        justify-content: space-between;
        width: 94%;
        max-width: 1000px;
        margin: 60px auto 0px auto;
        overflow: hidden;
    }

    .page-industry .container .industry-list li {
        width: 30%;
    }

    .page-industry .container .industry-list li .img {
        width: 306px;
        height: 216px;
    }

    .page-industry .container .industry-list li .img img {
        width: 100%;
        height: 100%;
        border-radius: 15px;
    }

    .page-industry .container .industry .industry-button-prev {
        position: absolute;
        top: 39%;
        right: auto;
        left: -1%;
        background: #341067;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--swiper-navigation-color, var(--swiper-theme-color));
    }


    .page-industry .container .industry .industry-button-prev::after {
        content: 'prev';
        font-family: swiper-icons;
        font-size: 15px;
        color: #ffffff;
        text-transform: none !important;
        letter-spacing: 0;
        text-transform: none;
        font-variant: initial;
        line-height: 1;
    }

    .page-industry .container .industry .industry-button-next {
        position: absolute;
        right: -2%;
        left: auto;
        top: 39%;
        background: #341067;
        /*border: 1px solid #341067;*/
        border-radius: 50%;
        width: 25px;
        height: 25px;
        margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--swiper-navigation-color, var(--swiper-theme-color));
    }

    .page-industry .container .industry .industry-button-next::after {
        content: 'next';
        font-family: swiper-icons;
        font-size: 15px;
        color: #ffffff;
        text-transform: none !important;
        letter-spacing: 0;
        text-transform: none;
        font-variant: initial;
        line-height: 1;
    }

    .page-industry .container .industry-list li .content h1 {
        margin-top: 15px;
        line-height: 25px;
    }

    .page-industry .container .industry-list li .content h1 a {
        color: #5c3f84;
        font-size: 16px;
        font-weight: bold;

    }

    .page-industry .container .industry-list li .content a {
        display: flex;
        margin: 12px 0px;
    }

    .page-industry .container .industry-list li .content a .check {
        color: #5c3f84;
        font-weight: bold;
        margin-right: 5px;
    }

    .page-industry .container .industry-list li .content a .icon {
        width: 13px;
        height: 16px;
    }

    .page-industry .container .industry-list li .content a .icon img {
        width: 100%;
        height: 100%;
    }

    .page-industry .container .industry-list li .content text {
        color: #999999;
    }

    .page-industry .container .industry .industry-bottom {
        display: flex;
        background: #edebf5;
        width: 200px;
        height: 60px;
        line-height: 60px;
        border-radius: 50px;
        text-align: center;
        margin: 0 auto;
        justify-content: space-between;
        padding: 0 35px;
        box-sizing: border-box;
    }

    .page-industry .container .industry a .icon {
        width: 13px;
        height: 16px;
    }

    .page-industry .container .industry a .icon img {
        width: 100%;
        height: 100%;
    }

    .page-industry .container .industry a .more {
        font-size: 15px;
        color: #341067;
        margin-top: 3px;
    }

    .page-industry .container .Mobile-industry .industry-bottom {
        display: flex;
        background: #edebf5;
        width: 150px;
        height: 50px;
        line-height: 50px;
        border-radius: 50px;
        text-align: center;
        margin: 20px auto 0px auto;
        justify-content: space-between;
        padding: 0 35px;
        box-sizing: border-box;
    }

    .page-industry .container .Mobile-industry a .icon {
        width: 13px;
        height: 16px;
    }

    .page-industry .container .Mobile-industry a .icon img {
        width: 100%;
        height: 100%;
    }

    .page-industry .container .Mobile-industry a .more {
        font-size: 15px;
        color: #341067;
        margin-top: 3px;
        font-weight: bold;
    }

    /*行业资讯结束*/
    /*预约产品演示开始*/
    .page-product {
        background: #fafafa;
        padding-top: 23px;
        box-sizing: border-box;
    }

    .page-product .bg {
        background-image: url("../images/banner2.png");
    }

    .page-product .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
        padding-top: 57px;
        box-sizing: border-box;
        position: relative;
    }

    .page-product .container .product {
        /*display: flex;*/
        /*justify-content: center;*/
        padding: 60px 0px;
        box-sizing: border-box;
    }

    .page-product .container .IMG {
        position: absolute;
        right: 0;
        top: 0;
    }

    .page-product .container .IMG img {
        animation: jump 1.8s infinite;
    }

    @keyframes jump { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(30px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .page-product .container .product .product-left .input {
        width: 384px;
        height: 64px;
        line-height: 64px;
        background: #ffffff;
        border-radius: 30px;
        padding-left: 32px;
        box-sizing: border-box;
        margin-bottom: 20px;
        box-shadow: 16px 11px 20px #eeecf6;
    }

    .page-product .container .product .product-left .submit {
        width: 384px;
        height: 64px;
        line-height: 64px;
        border-radius: 30px;
        background: #edebf5;
        text-align: center;
        color: #341067;
        font-size: 16px;
        font-weight: bold;
    }

    .page-product .container .product .product-left .input input {
        border: 0;
        background: 0;
    }

    .page-product .container .product .product-right {
        width: 310px;
        height: 256px;
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 16px 11px 20px #eeecf6;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 12px auto 0px auto;
    }

    /*预约产品演示结束*/
    /*底部开始*/
    .footer {
        width: 100%;
        padding-bottom: 60px;
        box-sizing: border-box;
    }

    .footer .footer-top {
        border-top: 1px solid #ebebeb;
        background: #fafafa;
    }

    .footer .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .footer .container .footer-top {
        background: #fafafa;
        justify-content: space-between;
        height: 60px;
        display: none;
    }

    .footer .container .footer-top li {
        width: 20%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer .footer-bottom {
        background: #f6f6f6;
    }

    .footer .footer-bottom .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .footer .footer-bottom .container .top {
        padding: 40px 0px 0px 0px;
        box-sizing: border-box;
    }

    .footer .footer-bottom .container .top .svg {
        text-align: center;
        width: 196px;
        height: 48px;
    }

    .footer .footer-bottom .container .top .svg img {
        height: 100%;
    }

    .footer .footer-bottom .container .top .img {
        /*width: 498px;*/
        /*height: 41px;*/
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .footer .footer-bottom .container .top .img img {
        width: 100%;
        height: 100%;
    }

    .footer .footer-bottom .container .content {
        /*display: flex;*/
    }

    .footer .footer-bottom .container .content li {
        margin-right: 30px;
    }

    .footer .footer-bottom .container .content li:nth-child(2) {
        display: none;
    }

    .footer .footer-bottom .container .content li:nth-child(3) {
        margin-right: 0px;
    }

    .footer .footer-bottom .container .content li .WeChat {
        display: flex;
        justify-content: center;
        margin-top: 16px;
    }

    .footer .footer-bottom .container .content h1 {
        color: #404040;
        font-size: 16px;
        font-weight: bold;
        display: none;
    }

    .footer .footer-bottom .container .content .iphone {
        color: #666666;
        font-size: 14px;
        margin-top: 30px;
    }

    .footer .footer-bottom .container .content .email {
        color: #666666;
        font-size: 14px;
        margin-top: 12px;
    }

    .footer .footer-bottom .container .content .address {
        color: #666666;
        font-size: 14px;
        margin-top: 12px;
    }

    .footer .footer-bottom .container .content .img1 {
        margin-top: 22px;
        display: none;
    }

    .footer .footer-bottom .container .content .item {
        display: flex;
        width: 307px;
    }

    .footer .footer-bottom .container .content .item .about {
        font-size: 16px;
        color: #404040;
        font-weight: bold;
    }

    .footer .footer-bottom .container .content .item .about1 {
        font-size: 16px;
        color: #404040;
        font-weight: bold;
        margin-right: 38px;
    }

    .footer .footer-bottom .container .content .item {
        margin-bottom: 30px;
        width: 307px;
    }

    .footer .footer-bottom .container .content .item .introduce {
        display: flex;
    }

    .footer .footer-bottom .container .content .item .introduce .company {
        color: #666666;
        font-size: 16px;
        margin-left: 30px;
    }

    .footer .footer-bottom .container .content .item .product {
        font-size: 16px;
        color: #404040;
        font-weight: bold;
        width: 22%;;
    }

    .footer .footer-bottom .container .content .item .product1 {
        width: 76%;
        display: flex;
        flex-wrap: wrap;
    }

    .footer .footer-bottom .container .content .item .product1 span {
        display: block;
        color: #666666;
        font-size: 16px;
        margin-left: 12px;
        margin-bottom: 12px;
    }

    .footer .footer-bottom .container .content .WeChat {
        text-align: center;
    }

    .footer .footer-bottom .container .bottom {
        display: flex;
        justify-content: space-between;
    }

    .footer .footer-bottom .container .bottom .ul {
        display: none;
    }

    .footer .footer-bottom .container .bottom .txt {
        text-align: center;
        margin-top: 12px;
        padding-bottom: 30px;
        box-sizing: border-box;
    }

    .fixed {
        position: fixed;
        bottom: 0;
        z-index: 666;
    }

    .fixed .fixed-content {
        display: flex;
        padding-top: 60px;
        box-sizing: border-box;
    }

    .fixed .fixed-content a {
        width: 207px;
        background-image: linear-gradient(to right, #501ca3, #7456e2);
        height: 60px;
        line-height: 60px;
        color: #ffffff;
        text-align: center;
    }

    /*底部开始*/
}

@media screen and (min-width: 320px) and (max-width: 374px) {
    /* 头部导航开始 */
    .header {
        width: 100%;
        /*background: #ffffff;*/
        height: 90px;
        line-height: 72px;
        width: 100%;
        top: 0;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        position: absolute;
        z-index: 333;
    }

    .header-fixed {
        position: fixed;
        z-index: 999;
        height: 90px;
        line-height: 70px;
        transition: .4s;
        border-bottom: 1px solid #cecece;
        background: #fff;
    }

    .header-fixed .head-nav .nav-list .nav-item a {
        display: block;
        color: #000000;
        position: relative;
        font-size: 16px;
    }

    .header-fixed .head-nav .nav-list .nav-item .active a {
        color: #000000;
    }

    .header-fixed .head-logo h1 a {
        background: url("../images/logo1.svg") no-repeat;
        display: block;
        width: 233px;
        height: 48px;
    }

    .header-fixed .head-nav .nav-list .nav-item1 a {
        display: flex;
        align-items: center;
        margin-right: 35px;
        color: #300f60;
        font-weight: bold;
    }

    .header-fixed .head-nav .nav-list .nav-item1 h1 {
        background-image: url("../images/icon._cj1.png");
        width: 30px;
        height: 30px;
    }

    .header-fixed .head-nav .nav-list .nav-item3 {
        width: 90px;
        height: 40px;
        line-height: 40px;
        border-radius: 30px;
        display: block;
        text-align: center;
        margin-right: 35px;
        border: 1px solid #300f60;
    }

    .header-fixed .head-nav .nav-list .nav-item3 a {
        color: #300f60;
        font-weight: bold;
    }

    .header .container {
        width: 94%;
        max-width: 1600px;
        margin: 0 auto;
        justify-content: space-between;
        box-sizing: border-box;
        position: relative;
    }

    .header-title {
        width: 100%;
        /*margin: 60px auto 0px auto;*/
        position: absolute;
        z-index: 332;
        /*top: 30px;*/
    }

    .header-title .container {
        width: 94%;
        max-width: 950px;
        margin: 60px auto 0px auto;
    }

    .header-title .container h1 {
        font-size: 50px;
        color: white;
        margin-bottom: 30px;
        font-weight: bold;
    }

    .header-title .container h2 {
        font-size: 30px;
        color: white;
    }

    .header-title .container .free {
        width: 170px;
        height: 55px;
        background: #fcc718;
        color: white;
        text-align: center;
        border-radius: 30px;
        line-height: 55px;
        margin-top: 60px;
        display: block;
    }

    .head-logo {
        width: 15%;
    }

    .head-logo h1 a {
        background: url("../images/logo.svg") no-repeat;
        display: block;
        width: 233px;
        height: 48px;
    }

    .nav {
        width: 44%;
        margin-right: auto;
        /*padding-left: 92px;*/
        text-align: center;
    }

    .head-nav .nav-list .nav-item {
        /*margin-right: 35px;*/
        display: flex;
        align-items: center;
        position: relative;
    }

    .head-nav .nav-list .nav-item:hover .subnav {
        opacity: 1;
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
    }

    .head-nav .nav-list .nav-item .subnav {
        position: absolute;
        width: 660px;
        height: 264px;
        top: 72px;
        left: -300px;
        z-index: 99;
        line-height: 46px;
        background-color: #fff;
        text-align: center;
        opacity: 0;
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        transform-origin: 0 0;
        border-radius: 10px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 50px;
        box-sizing: border-box;
        display: none;
    }

    .head-nav .nav-list .nav-item .subnav::after {
        content: "";
        position: absolute;
        width: 0px;
        border-width: 10px;
        border-style: solid;
        border-color: transparent transparent #ffffff transparent;
        top: -18px;
        left: 50%;
        margin-left: -10px;
        transition: all 0.2s ease 0s;
    }

    .head-nav .nav-list .nav-item .subnav li {
        position: relative;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item {
        width: 30%;
        position: relative;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item:hover .overlay {
        opacity: 1;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 0;
        transition: .5s ease;
        background-color: #300f60;
        border-radius: 10px;
        width: 90%;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay .icon a {
        display: block;
        width: 50px;
        height: 50px;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay .text-icon {
        display: flex;
        align-items: center;
        width: 150px;
        height: 50px;
        line-height: 50px;
        margin: 0 auto;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item .overlay .text-icon .icon-title a {
        display: block;
        color: white;
        width: 80px;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item a {
        color: #8b8e8d;
        /*border-bottom: 1px #ededed solid;*/
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        width: 90%;
        margin: auto;
        display: flex;
        align-items: center;
    }

    .head-nav .nav-list .nav-item .subnav .subnav-item a .icon-title {
        margin-left: 15px;
    }

    .head-nav .nav-list .nav-item1 {
        display: flex;
        align-items: center;
        margin-right: 35px;
    }

    .head-nav .nav-list .nav-item1 h1 {
        background-image: url("../images/icon._cj.png");
        width: 30px;
        height: 30px;
    }

    .head-nav .nav-list .nav-item1 a {
        color: white;
    }

    .head-nav .nav-list .nav-item2 {
        width: 156px;
        height: 40px;
        line-height: 40px;
        border-radius: 30px;
        background: #fcc718;
        display: block;
        text-align: center;
        margin-right: 35px;
    }

    .head-nav .nav-list .nav-item3 {
        width: 90px;
        height: 40px;
        line-height: 40px;
        border-radius: 30px;
        display: block;
        text-align: center;
        margin-right: 35px;
        border: 1px solid #ffffff;
    }

    .head-nav .nav-list .nav-item3 a {
        color: white;
    }

    .head-nav .nav-list .nav-item2 a {
        color: white;
    }

    .head-nav .nav-list .nav-item2 a {
        text-align: center;
    }

    .head-nav .nav-list .nav-item img {
        width: 30px;
        height: 30px;
    }

    .head-nav .nav-list {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-top: 12px;
        align-items: center;
    }

    .head-nav .nav-list .nav-item a {
        display: block;
        color: #ffffff;
        position: relative;
        font-size: 16px;
    }

    .head-nav .nav-list .nav-item.active a {
        /*color: #ffffff;*/
        /*border-bottom: 1px solid #450d94;*/
    }

    .head-nav .nav-list .nav-item:hover > a::after, .head-nav .nav-list .nav-item.active:hover > a::after {
        width: 90%;

    }

    .head-nav .nav-list .nav-item > a::after {
        content: "";
        height: 2px;
        background: #450d94;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        width: 0;
    }

    /* 头部导航结束 */
    /* 首页轮播图开始 */
    .index-banner {
        /* margin-top: 12px; */
        display: none;
    }

    .index-banner .swiper-container .swiper-wrapper {
        /*height: 800px;*/
    }

    /* 首页轮播图结束 */
    /* 业务领域开始 */
    .page-business {
        width: 100%;
        margin-top: 100px;
    }

    .page-business .container {
        width: 96%;
        max-width: 1600px;
        margin: 0 auto;
        overflow: hidden;
    }

    .business {
        margin-top: 60px;
        display: flex;
        justify-content: space-between;
    }

    .business .business-item {
        width: 23%;
    }

    .business .business-item .img {
        overflow: hidden;
    }

    .business .business-item .img img {
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
    }

    .business .business-item .img img:hover {
        transition: all 0.6s;
        transform: scale(1.1);
        width: 100%;
        height: 100%;
    }

    .business .business-item .business-text {
        margin-top: 12px;
    }

    .business .business-item .business-text h2 {
        font-size: 20px;
        font-weight: bold;
        color: rgb(25 24 24);
    }

    .business .business-item .business-text p {
        margin-top: 12px;
        font-size: 16px;
        font-weight: 500;
        color: #666;
    }

    /* 人员管理系统开始 */
    .page-personnel {
        width: 100%;
        /*margin-top: 100px;*/
    }

    .page-personnel .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .personnel {
        width: 100%;
        max-width: 1000px;
        margin-top: 30px;
        display: flex;
        justify-content: space-between;
        box-shadow: 1px 4px 20px rgba(145, 145, 145, 0.28);
        border: 2px solid #ffffff;
        padding: 22px;
        box-sizing: border-box;
    }

    .personnel .personnel-item {
        width: 30%;
    }

    .personnel .personnel-item a {
        /*display: flex;*/
        /*align-items: center;*/
    }

    .personnel .personnel-item .img {
        overflow: hidden;
        width: 105px;
        height: 89px;
    }

    .personnel .personnel-item .img img {
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        width: 100%;
        height: 100%;
    }

    .personnel .personnel-item .img img:hover {
        transition: all 0.6s;
        transform: scale(1.1);
        width: 100%;
        height: 100%;
    }

    .personnel .personnel-item .personnel-text {
        margin-top: 12px;
        /*margin-left: 12px;*/
    }

    .personnel .personnel-item .personnel-text h2 {
        font-size: 14px;
        font-weight: bold;
        color: #694e8e;
    }

    .personnel .personnel-item .personnel-text p {
        margin-top: 12px;
        font-size: 16px;
        font-weight: 500;
        color: #666;
    }

    /* 公用标题 */
    .page-title {
        text-align: center;
    }

    .page-title span {
        color: #341067;
        font-size: 20px;
        font-weight: bold;
    }

    /*.page-title h3{*/
    /*    color: #ebeaee;*/
    /*    text-transform: uppercase;*/
    /*    margin-top: -16px;*/
    /*    display: block;*/
    /*    z-index: 1;*/
    /*    position: relative;*/
    /*    font-size: 18px;*/
    /*}*/
    .page-title h3 {
        color: #ebeaee;
        text-transform: uppercase;
        margin-top: -14px;
        display: block;
        z-index: 1;
        position: relative;
        font-size: 16px;
    }

    .page-title p {
        font-size: 22px;
        color: #341067;
        display: block;
        position: relative;
        z-index: 3;
    }

    .page-title p span {
        font-size: 25px;
        font-weight: bold;
        color: #341067;
    }

    .page-title text {
        line-height: 25px;
        margin-top: 30px;
        font-size: 16px;
        display: none;
    }

    .page-Company-title {
        text-align: center;
    }

    .page-Company-title h3 {
        font-size: 16px;
        color: #999;
        text-transform: uppercase;
    }

    .page-Company-title p {
        /* margin-top: -20px; */
        font-size: 30px;
        color: #007aff;
        font-weight: bold;
    }

    .page-Company-title p span {
        font-size: 30px;
        font-weight: bold;
        color: #0a0a0a;
    }

    /* 公用标题结束 */
    /* 人才管理系统结束 */
    /* 数据化人才成长系统开始 */
    .page-datamation {
        width: 100%;
        position: relative;
    }

    .page-datamation .IMG {
        position: absolute;
        top: 0;
    }

    .page-datamation .IMG img {
        animation: jumpBox 1.8s infinite; /* 1.8s 事件完成时间周期 infinite无限循环 */
    }

    @keyframes jumpBox { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(0px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .page-datamation .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
        padding: 60px 0;
        box-sizing: border-box;
    }

    .container .datamation {
        margin-top: -22px;
        display: flex;
        justify-content: space-between;
    }

    .container .datamation .service-text h2 {
        font-size: 26px;
        font-weight: bold;
        line-height: 40px;
        display: none;
    }

    .container .datamation .service-text p {
        line-height: 30px;
        color: #666;
        overflow: auto;
        padding-right: 10px;
        margin-top: 12px;
        font-size: 15px;
    }

    .container .datamation .service-text .buttom {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 25px;
        text-align: center;
        width: 100%;
    }

    .container .datamation .service-text .buttom .buttom-item {
        width: 30%;
        margin-top: 24px;
        position: relative;
    }

    .container .datamation .service-text .buttom .buttom-item .overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        transition: .5s ease;
        background-color: #3e1479;
    }

    .container .datamation .service-text .buttom .buttom-item:hover .overlay {
        opacity: 1;
    }

    .container .datamation .service-text .buttom .buttom-item .text {
        color: white;
        font-size: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .container .datamation .service-text .buttom .buttom-item .text a h1 {
        font-size: 16px;
        line-height: 30px;
    }

    .container .datamation .service-text .buttom .buttom-item .text a {
        color: white;
    }

    .container .datamation .service-text .buttom .buttom-item .icon {
        margin: 0 auto;
        display: block;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        margin-bottom: 10px;
        padding: 10px;
    }

    .container .datamation .service-text .buttom .buttom-item .cost {
        font-size: 17px;
        font-weight: 700;
    }

    /* 数据化人才成长系统结束 */
    /* 视频介绍开始 */
    .page-video {
        width: 100%;
        margin-top: 100px;
        position: relative;
    }

    .page-video .IMG {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .page-video .IMG img {
        animation: jumpBox 1.8s infinite; /* 1.8s 事件完成时间周期 infinite无限循环 */
    }

    @keyframes jumpBox { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(0px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .page-video .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .video-introduce-top {
        position: relative;
    }

    .video-introduce-top .IMG {
        position: absolute;
        right: -60px;
        top: -80px;
        z-index: 1;
    }

    .video-introduce-top .IMG img {
        animation: jumpBoxHandler 1.8s infinite;
    }

    @keyframes jumpBoxHandler { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(30px, 0px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .video-introduce {
        margin-top: 60px;
        /*display: flex;*/
        justify-content: space-between;
        position: relative;
        z-index: 3;
    }

    .video-introduce .video-introduce-item {
        width: 100%;
        margin-bottom: 40px;
        background: #ffffff;
        border-radius: 12px 12px 50px 12px;
        box-shadow: 16px 11px 20px #eeecf6;
    }

    .video-introduce .video-introduce-item .img {
        height: 209px;
        overflow: hidden;
        border-radius: 12px;
    }

    .video-introduce .video-introduce-item .img img {
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
    }

    .video-introduce .video-introduce-item .img img:hover {
        width: 100%;
        height: 100%;
        transition: all 0.6s;
        transform: scale(1.1);
    }

    .video-introduce .video-introduce-item .engineering-text {
        margin-top: 12px;
        padding: 22px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .video-introduce .video-introduce-item .engineering-text h2 {
        font-size: 20px;
        color: #080808;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .video-introduce .video-introduce-item .engineering-text p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .video-buttom a {
        background: #edebf5;
        width: 200px;
        height: 60px;
        line-height: 60px;
        border-radius: 50px;
        text-align: center;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        padding: 0 35px;
        box-sizing: border-box;
    }

    .video-buttom a .arrows-title {
        font-size: 15px;
        color: #341067;
        margin-top: 3px;
    }

    .video-buttom a .arrows {
        width: 20px;
        height: 19px;
    }

    .video-buttom a .arrows img {
        width: 100%;
        height: 100%;
    }

    /* 视频介绍结束 */
    /* 更多企业信赖之选开始 */
    .page-Company {
        margin-top: 100px;
        background-image: linear-gradient(to right, rgb(233, 230, 244), rgb(252, 252, 254));
    }

    .page-Company .container {
        width: 100%;
        padding-top: 30px;
        box-sizing: border-box;

        overflow: hidden;
        margin-left: auto;
    }

    .page-Company .container .Company {
        text-align: center;
        margin-top: 45px;
    }

    .page-advantage {
        display: flex;
        margin-bottom: 21px;
        margin-top: 21px;
        margin-left: 25px;
        justify-content: space-between;
        position: relative;
    }

    .page-advantage .advantage {
        display: flex;
        align-items: center;
        height: 120px;
        overflow: hidden;
        width: 30% !important;
        text-align: center;
    }

    .page-advantage .advantage .img {
        width: 120px !important;
        height: 120px;
        line-height: 120px;
        background: white;
    }

    .page-advantage .advantage .img img {
        width: 60px;
    }

    .page-advantage .advantage .text {
        width: 228px;
        background: #fafafa;
        padding: 40px 20px;
        box-sizing: border-box;
        display: none;
    }

    .page-advantage .advantage .text h2 {
        color: #494949;
        font-size: 16px;
    }

    .page-advantage .advantage .text h2 span {
        color: #a1a1a1;
        font-size: 16px;
    }

    .page-advantage .advantage .text p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin-top: 10px;
        color: #a1a1a1;
        font-size: 16px;
    }

    .across {
        margin-top: 48px;
        margin-right: -139px;
        display: none;
    }

    .across img {
        margin-left: auto;
        display: block;
    }

    .advantage-bottom {
        width: 100%;
        position: relative;
        padding-bottom: 100px;
        box-sizing: border-box;
    }

    .advantage-bottom .IMG {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 600px;
        height: 500px;
        overflow: hidden;
        z-index: 1;
    }

    .advantage-bottom .IMG img {
        animation: jumpBox 1.8s infinite;
    }

    @keyframes jumpBoxr { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(0px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .advantage-bottom .container {
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        z-index: 3;
        display: none;
    }

    .advantage-bottom .container .advantage-bottom-list {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .advantage-bottom .container .advantage-bottom-list li {
        width: 30%;
        margin-top: 55px;
        margin-bottom: 55px;
    }

    .advantage-bottom .container .advantage-bottom-list li h1 {
        color: #341067;
        font-size: 24px;
        letter-spacing: 5px;
    }

    .advantage-bottom .container .advantage-bottom-list li h1 span {
        font-size: 45px;
        color: #341067;
        font-weight: bold;
        letter-spacing: 2px;
    }

    .advantage-bottom .container .advantage-bottom-list p {
        font-size: 18px;
        color: #341067;
        margin-top: 15px;
    }

    .advantage-bottom .superhro {
        position: absolute;
        bottom: -30px;
        left: 15%;
        z-index: 3;
        display: none;
    }

    .advantage-bottom .superhro .title {
        width: 1200px;
        font-size: 168px;
        color: white;
        font-weight: bold;
        letter-spacing: 5px;
        text-align: center;
        margin-top: 20px;
    }

    /* 更多企业信赖之选结束 */
    /*行业资讯开始*/
    .page-industry {
        width: 100%;
        background: #fafafa;
    }

    .page-industry .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
        padding-top: 55px;
        box-sizing: border-box;
    }

    .page-industry .container .industry {
        display: none;
    }

    .page-industry .container .Mobile-industry .list {
        margin-top: 40px;
    }

    .page-industry .container .Mobile-industry .list .item {
        display: flex;
        margin-top: 12px;
    }

    .page-industry .container .Mobile-industry .list .item .img {
        width: 222px;
    }

    .page-industry .container .Mobile-industry .list .item .img img {
        width: 100%;
        height: 100%;
        border-radius: 12px;
    }

    .page-industry .container .Mobile-industry .list .item .title {
        padding-left: 12px;
        box-sizing: border-box;
    }

    .page-industry .container .Mobile-industry .list .item .title h1 {
        color: #333333;
        overflow: hidden;
        -webkit-line-clamp: 2;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        word-break: break-all;
        line-height: 21px;
    }

    .page-industry .container .Mobile-industry .list .item .title .time {
        margin-top: 12px;
        font-size: 15px;
        color: #341067;
    }

    .page-industry .container .industry-list {
        display: flex;
        justify-content: space-between;
        width: 94%;
        max-width: 1000px;
        margin: 60px auto 0px auto;
        overflow: hidden;
    }

    .page-industry .container .industry-list li {
        width: 30%;
    }

    .page-industry .container .industry-list li .img {
        width: 306px;
        height: 216px;
    }

    .page-industry .container .industry-list li .img img {
        width: 100%;
        height: 100%;
        border-radius: 15px;
    }

    .page-industry .container .industry .industry-button-prev {
        position: absolute;
        top: 39%;
        right: auto;
        left: -1%;
        background: #341067;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--swiper-navigation-color, var(--swiper-theme-color));
    }


    .page-industry .container .industry .industry-button-prev::after {
        content: 'prev';
        font-family: swiper-icons;
        font-size: 15px;
        color: #ffffff;
        text-transform: none !important;
        letter-spacing: 0;
        text-transform: none;
        font-variant: initial;
        line-height: 1;
    }

    .page-industry .container .industry .industry-button-next {
        position: absolute;
        right: -2%;
        left: auto;
        top: 39%;
        background: #341067;
        /*border: 1px solid #341067;*/
        border-radius: 50%;
        width: 25px;
        height: 25px;
        margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--swiper-navigation-color, var(--swiper-theme-color));
    }

    .page-industry .container .industry .industry-button-next::after {
        content: 'next';
        font-family: swiper-icons;
        font-size: 15px;
        color: #ffffff;
        text-transform: none !important;
        letter-spacing: 0;
        text-transform: none;
        font-variant: initial;
        line-height: 1;
    }

    .page-industry .container .industry-list li .content h1 {
        margin-top: 15px;
        line-height: 25px;
    }

    .page-industry .container .industry-list li .content h1 a {
        color: #5c3f84;
        font-size: 16px;
        font-weight: bold;

    }

    .page-industry .container .industry-list li .content a {
        display: flex;
        margin: 12px 0px;
    }

    .page-industry .container .industry-list li .content a .check {
        color: #5c3f84;
        font-weight: bold;
        margin-right: 5px;
    }

    .page-industry .container .industry-list li .content a .icon {
        width: 13px;
        height: 16px;
    }

    .page-industry .container .industry-list li .content a .icon img {
        width: 100%;
        height: 100%;
    }

    .page-industry .container .industry-list li .content text {
        color: #999999;
    }

    .page-industry .container .industry .industry-bottom {
        display: flex;
        background: #edebf5;
        width: 200px;
        height: 60px;
        line-height: 60px;
        border-radius: 50px;
        text-align: center;
        margin: 0 auto;
        justify-content: space-between;
        padding: 0 35px;
        box-sizing: border-box;
    }

    .page-industry .container .industry a .icon {
        width: 13px;
        height: 16px;
    }

    .page-industry .container .industry a .icon img {
        width: 100%;
        height: 100%;
    }

    .page-industry .container .industry a .more {
        font-size: 15px;
        color: #341067;
        margin-top: 3px;
    }

    .page-industry .container .Mobile-industry .industry-bottom {
        display: flex;
        background: #edebf5;
        width: 150px;
        height: 50px;
        line-height: 50px;
        border-radius: 50px;
        text-align: center;
        margin: 20px auto 0px auto;
        justify-content: space-between;
        padding: 0 35px;
        box-sizing: border-box;
    }

    .page-industry .container .Mobile-industry a .icon {
        width: 13px;
        height: 16px;
    }

    .page-industry .container .Mobile-industry a .icon img {
        width: 100%;
        height: 100%;
    }

    .page-industry .container .Mobile-industry a .more {
        font-size: 15px;
        color: #341067;
        margin-top: 3px;
        font-weight: bold;
    }

    /*行业资讯结束*/
    /*预约产品演示开始*/
    .page-product {
        background: #fafafa;
        padding-top: 23px;
        box-sizing: border-box;
    }

    .page-product .bg {
        background-image: url("../images/banner2.png");
    }

    .page-product .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
        padding-top: 57px;
        box-sizing: border-box;
        position: relative;
    }

    .page-product .container .product {
        /*display: flex;*/
        /*justify-content: center;*/
        padding: 60px 0px;
        box-sizing: border-box;
    }

    .page-product .container .IMG {
        position: absolute;
        right: 0;
        top: 0;
    }

    .page-product .container .IMG img {
        animation: jump 1.8s infinite;
    }

    @keyframes jump { /* css事件 */
        0% {
            transform: translate(0px, 0px);
        }
        50% {
            transform: translate(30px, 30px); /* 可配置跳动方向 */
        }
        100% {
            transform: translate(0px, 0px);
        }
    }
    .page-product .container .product .product-left .input {
        width: 384px;
        height: 64px;
        line-height: 64px;
        background: #ffffff;
        border-radius: 30px;
        padding-left: 32px;
        box-sizing: border-box;
        margin-bottom: 20px;
        box-shadow: 16px 11px 20px #eeecf6;
    }

    .page-product .container .product .product-left .submit {
        width: 384px;
        height: 64px;
        line-height: 64px;
        border-radius: 30px;
        background: #edebf5;
        text-align: center;
        color: #341067;
        font-size: 16px;
        font-weight: bold;
    }

    .page-product .container .product .product-left .input input {
        border: 0;
        background: 0;
    }

    .page-product .container .product .product-right {
        width: 310px;
        height: 256px;
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 16px 11px 20px #eeecf6;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 12px auto 0px auto;
    }

    /*预约产品演示结束*/
    /*底部开始*/
    .footer {
        width: 100%;
        padding-bottom: 60px;
        box-sizing: border-box;
    }

    .footer .footer-top {
        border-top: 1px solid #ebebeb;
        background: #fafafa;
    }

    .footer .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .footer .container .footer-top {
        background: #fafafa;
        justify-content: space-between;
        height: 60px;
        display: none;
    }

    .footer .container .footer-top li {
        width: 20%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer .footer-bottom {
        background: #f6f6f6;
    }

    .footer .footer-bottom .container {
        width: 94%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .footer .footer-bottom .container .top {
        padding: 40px 0px 0px 0px;
        box-sizing: border-box;
    }

    .footer .footer-bottom .container .top .svg {
        text-align: center;
        width: 196px;
        height: 48px;
    }

    .footer .footer-bottom .container .top .svg img {
        height: 100%;
    }

    .footer .footer-bottom .container .top .img {
        /*width: 498px;*/
        /*height: 41px;*/
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .footer .footer-bottom .container .top .img img {
        width: 100%;
        height: 100%;
    }

    .footer .footer-bottom .container .content {
        /*display: flex;*/
    }

    .footer .footer-bottom .container .content li {
        margin-right: 30px;
    }

    .footer .footer-bottom .container .content li:nth-child(2) {
        display: none;
    }

    .footer .footer-bottom .container .content li:nth-child(3) {
        margin-right: 0px;
    }

    .footer .footer-bottom .container .content li .WeChat {
        display: flex;
        justify-content: center;
        margin-top: 16px;
    }

    .footer .footer-bottom .container .content h1 {
        color: #404040;
        font-size: 16px;
        font-weight: bold;
        display: none;
    }

    .footer .footer-bottom .container .content .iphone {
        color: #666666;
        font-size: 14px;
        margin-top: 30px;
    }

    .footer .footer-bottom .container .content .email {
        color: #666666;
        font-size: 14px;
        margin-top: 12px;
    }

    .footer .footer-bottom .container .content .address {
        color: #666666;
        font-size: 14px;
        margin-top: 12px;
    }

    .footer .footer-bottom .container .content .img1 {
        margin-top: 22px;
        display: none;
    }

    .footer .footer-bottom .container .content .item {
        display: flex;
        width: 307px;
    }

    .footer .footer-bottom .container .content .item .about {
        font-size: 16px;
        color: #404040;
        font-weight: bold;
    }

    .footer .footer-bottom .container .content .item .about1 {
        font-size: 16px;
        color: #404040;
        font-weight: bold;
        margin-right: 38px;
    }

    .footer .footer-bottom .container .content .item {
        margin-bottom: 30px;
        width: 307px;
    }

    .footer .footer-bottom .container .content .item .introduce {
        display: flex;
    }

    .footer .footer-bottom .container .content .item .introduce .company {
        color: #666666;
        font-size: 16px;
        margin-left: 30px;
    }

    .footer .footer-bottom .container .content .item .product {
        font-size: 16px;
        color: #404040;
        font-weight: bold;
        width: 22%;;
    }

    .footer .footer-bottom .container .content .item .product1 {
        width: 76%;
        display: flex;
        flex-wrap: wrap;
    }

    .footer .footer-bottom .container .content .item .product1 span {
        display: block;
        color: #666666;
        font-size: 16px;
        margin-left: 12px;
        margin-bottom: 12px;
    }

    .footer .footer-bottom .container .content .WeChat {
        text-align: center;
    }

    .footer .footer-bottom .container .bottom {
        display: flex;
        justify-content: space-between;
    }

    .footer .footer-bottom .container .bottom .ul {
        display: none;
    }

    .footer .footer-bottom .container .bottom .txt {
        text-align: center;
        margin-top: 12px;
        padding-bottom: 30px;
        box-sizing: border-box;
    }

    .fixed {
        position: fixed;
        bottom: 0;
        z-index: 666;
    }

    .fixed .fixed-content {
        display: flex;
        padding-top: 60px;
        box-sizing: border-box;
    }

    .fixed .fixed-content a {
        width: 207px;
        background-image: linear-gradient(to right, #501ca3, #7456e2);
        height: 60px;
        line-height: 60px;
        color: #ffffff;
        text-align: center;
    }

    /*底部开始*/
}
