﻿body {
}

.nav {
    background-color: #fff;
    height: 72px;
    z-index: 300;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    box-shadow: 0 4px 16px rgba(0,60,179,.12);
}

.index-banner {
    overflow: hidden;
    position: relative;
    height: 522px;
}

.drop a.mobile, .nav .mobile {
    display: none !important;
}

.nav .ns-content {
    position: relative;
    height: 72px;
}

@media screen and (max-width: 1200px) .ns-content {
    padding-left: 20px;
    padding-right: 20px;
}

.ml-auto {
    margin-left: auto;
    margin-right: auto;
}

.ns-content {
    max-width: 1200px;
}

@media screen and (min-width: 1001px) and (max-width: 1200px) .nav .ns-content .l {
    left: 20px;
}

.nav .ns-content .l {
    position: absolute;
    left: -120px;
    top: 14px;
}

.l .img {
    background-image: url('../img/logo.png');
}

.l .img {
    display: block;
    background-image: url('../img/logo.png');
    width: 193px;
    height: 44px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: 0;
}

@media screen and (min-width: 1001px) and (max-width: 1200px) .main .c {
    margin-left: 230px;
}

.main .c {
    display: flex;
    margin-left: 120px;
    height: 72px;
    align-items: center;
}

.c .cn {
    flex: 1;
    white-space: nowrap;
}

@media screen and (min-width: 1001px) and (max-width: 1200px) .c .cn>.a {
    margin-right: 6px;
}

a {
    -webkit-transition: all .2s !important;
    -o-transition: all .2s !important;
    transition: all .2s !important;
    color: #7f8fa4;
    text-decoration: none;
}

.c .cn > .a {
    color: #6b7799;
    display: inline-block;
    margin-right: 5px;
    font-size: 16px;
    cursor: pointer;
    position: relative;
}

    .c .cn > .a.current > span, .nav .ns-content .c .cn > .a:hover > span {
        /*color: #02c !important;*/
        font-size:30px;
    }

    .c .cn > .a span {
        position: relative;
        display: inline-block;
        margin-left: 20px;
        margin-right: 20px;
        line-height: 72px;
        -webkit-transition-duration: .2s;
        transition-duration: .2s;
    }

    .c .cn > .a .sd {
        overflow: hidden;
        position: absolute;
        left: 0;
        top: 72px;
        background-color: #fff;
        width: 100%;
        display: none;
        box-shadow: -8px 8px 16px -8px rgba(0,60,179,.12), 8px 8px 16px -8px rgba(0,60,179,.12);
        border-radius: 0 0 10px 10px;
        padding-bottom: 8px;
    }

.c .cb .search-btn a {
    display: block;
    color: #3c3c3c;
    padding-right: 24px;
    margin-right: 15px;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: 100%;
    background-image: url('../img/icon-r-search.svg');
    background-size: 20px 20px;
}

.c .cn > .a span {
    position: relative;
    display: inline-block;
    margin-left: 20px;
    margin-right: 20px;
    line-height: 72px;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}

.c .cb .search-btn {
    font-weight: 600;
    height: 36px;
    background-repeat: no-repeat;
    background-position: 100%;
    background-image: url('../img/icon-line.png');
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.c .cb {
    width: 210px;
    font-size: 14px;
    line-height: 36px;
    height: 36px;
    display: flex;
    justify-content: flex-end;
}

.nav .ns-content .c .cb .login-btn {
    width: 60px;
    height: 36px;
    color: #fff;
    border-radius: 18px;
    background-color: #02c;
    text-align: center;
}

/*.c .cn > .a.current > span:after {
    position: absolute;
    content: " ";
    height: 6px;
    background-color: #02c;
    width: 100%;
    left: 0;
    bottom: 0;
    border-radius: 3px;
}*/

.main-top {
    overflow: hidden;
    position: relative;
    height: 752px;
}

.ns-content {
    max-width: 1200px;
}





/*------------------*/
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}
/*添加一个简单的背景颜色*/
body {
    /*background-image: linear-gradient(to right,rgb(251, 211, 255),rgb(188, 242, 255));*/
}

.banner-swiper {
    overflow: hidden;
    z-index: 90;
    position: absolute;
    left: 0;
    /*top: 73px;*/
    width: 100%;
}

.swiper-contanier {
    position: relative; /*父级容器为相对定位*/
    /*width: 1540px;*/
}

    /*图片列表的总体宽高为3200*400*/
    .swiper-contanier #swiper-list {
        width: 6160px;
        height: 450px;
    }
        /*每张图片格式也设为800*400大小*/
        .swiper-contanier #swiper-list img {
            width: 1540px;
            height: 450px
        }
/*向左浮动，让图片全部拼接成一排*/
#swiper-list li {
    float: left;
}
/*左右箭头按钮共用样式*/
.prev, .next {
    width: 30px;
    height: 40px;
    /*border: 1px solid blue;*/
    background-color: #666;
    font-size: 20px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    opacity: 0.6;
    cursor: pointer;
}

.prev {
    position: absolute;
    top: 40%;
    left: 5px;
    background-color: rgb(150 149 149 / 65%);
}

.next {
    position: absolute;
    top: 40%;
    right: 25px;
    background-color: rgb(150 149 149 / 65%);
}
/*下方小圆点的样式*/
#icon {
    position: absolute;
    bottom: 10px;
    left: 45%;
}

    #icon li {
        width: 10px;
        height: 10px;
        background-color: #666;
        border-radius: 50%;
        float: left;
        text-align: center;
        line-height: 30px;
        opacity: 0.6;
        margin-right: 5px;
        cursor: pointer;
    }
        /*鼠标放在小圆点上面的样式*/
        #icon li:hover {
            background-color: rgb(250, 126, 115);
        }

.home {
    /*padding-top: 28px;*/
    /*padding-bottom: 48px;*/
}

.ml-auto {
    margin-left: auto;
    margin-right: auto;
}

.home > .item .it {
    line-height: 1;
    display: flex;
    margin-bottom: 24px;
    justify-content: space-between;
    align-items: center;
}

    .home > .item .it .l {
        color: #0b1531;
        font-weight: 600;
        font-size: 26px;
    }

.tirer {
    margin-right: 550px;
}

    .tirer span {
        /*margin-right: 50px;*/
        width: 120px;
    }
/*
-----------------------------------------------------------------------
*/ .trade_tag {
    display: flex;
    position: relative;
    height: 44px;
    border-radius: 4px;
    /* background-color: #1c1d23;*/
    cursor: pointer;
}

    .trade_tag .active {
        color: #0c43ed;
        content: "";
        z-index: 0;
        top: 4px;
        left: 4px;
        border-bottom: 3px solid #02c;
        /*background-color: green;*/
        border-radius: 2px;
        -webkit-transition: background-color 0.2s ease-in-out,-webkit-transform 0.2s ease-in-out;
        transition: background-color 0.2s ease-in-out,-webkit-transform 0.2s ease-in-out;
        transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
        transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out,-webkit-transform 0.2s ease-in-out;
    }

.trade_btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 14px;
    /*color: #fff;*/
    z-index: 1;
}


.gc {
    margin-bottom: 0;
    padding-bottom: 0;
}

.course-group .gc {
    display: flex;
    width: calc(100% + 16px);
    -webkit-transform: translate(-8px);
    -ms-transform: translate(-8px);
    -o-transform: translate(-8px);
    transform: translate(-8px);
    flex-wrap: wrap;
    padding-bottom: 36px;
}

.products .main {
    float: left;
    display: none;
    width: 100%;
}

.gc .main {
    /*display: flex;*/
}

.products .main.selected {
    display: block;
}

.trade_tag .active {
    /* background: #2468f2; */
    background: #f3f5f8;
    box-shadow: inset 8px 8px 20px 0 rgba(55,99,170,.11), inset -8px -8px 20px 0 #fff;
    transition: box-shadow .3s ease-in-out,background .3s ease-in-out;
    border: 1px solid #2468f2;
}
.trade_tag span p {
    transform: skew(16deg,0deg);
}
.trade_tag span {
    float: left;
    font-size: 18px;
    text-align: center;
    margin-left: 20px;
    transform: skew(345deg,0deg);
    border: 1px solid #2468f225;
    background-image: linear-gradient(0deg,#fff,#f3f5f8);
    box-shadow: 8px 8px 20px 0 rgba(55,99,170,.1), -8px -8px 20px 0 #fff;
    border-radius: 5px;
    transition: .2s linear;
}

.new-course-center .item {
    float: left;
    width: 25%;
    padding-left: 8px;
    padding-right: 8px;
    box-sizing: border-box;
    margin-bottom: 16px;
}
.tab-item a{
    color:blue;
}
.new-course-center .item-c {
    overflow: hidden;
    border-radius: 8px;
    display: block;
    background-color: #fff;
    box-shadow: 1px 4px 12px rgba(0,0,0,.04);
}

        .new-course-center  .item-c .img {
            position: relative;
            padding-top: 53.37%;
            overflow: hidden;
            display: block;
        }

            .new-course-center  .item-c .img img {
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
            }
.tals {
    text-align: center;
}
.new-course-center .item-c .desc .dc .t {
  
    padding-top: 10px;
    font-size: 23px;
    line-height: 22px;
    color: #000;
    height: 44px;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.wrap .management {
    box-sizing: border-box;
   /* min-width: 1371px;*/
    /*padding-top: 50px;*/
    text-align: center;
}
.wrap .title-wrap span {
    position: relative;
    padding: 0 36px;
    font-size: 28px;
    font-weight: 500;
    color: #2A2A2A;
    background: linear-gradient(to right, #ff0000, #0000ff, #00ff00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
    .wrap .title-wrap span:before {
        position: absolute;
        top: 60%;
        left: -25px;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        /*background-image: url('../img/icon_title_left.png');*/
        background-image: url('../content/img/jsxyico.png');
        background-size: cover;
        content: '';
    }

    .wrap .title-wrap span:after {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 22px;
        height: 13px;
        background-image: url('../img/icon_title_right.png');
        background-size: cover;
        content: '';
    }
.wrap .title-wrap span {
    position: relative;
    padding: 0 36px;
    font-size: 28px;
    font-weight: 500;
    color: #2A2A2A;
}
.wrap .title-wrap p {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #93999F;
    line-height: 20px;
}

.wrap  .erp-content {
   /* width: 1200px;*/
    margin: 0 auto;
    height: auto;
}
    .wrap .erp-content li:nth-child(1) {
        /*background: url('../img/erp_1.png') no-repeat 0 100% / 590px 120px;*/
    }
    .wrap .erp-content li:nth-child(2) {
        /*background: url('../img/erp_2.png') no-repeat 0 100% / 590px 120px;*/
    }
    .wrap .erp-content li {
        /*  width: 580px;*/
        /*height: 120px;*/
        margin: 0 18px 10px 0;
        float: left;
        text-align: left;
        text-align: center
        /* text-indent: 160px;*/
    }
.wrap  .erp-content li h6 {
    font-size: 20px;
    font-weight: 600;
    color: rgba(42,42,42,1);
    line-height: 28px;
    margin: 24px 0 14px 0;
}
.wrap  .erp-content li p {
    font-size: 16px;
    color: rgba(102,102,102,1);
}
._2CohNhLDxbu8Bo3IpH1_T1 {
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;

}
._33BGoobZq-VKuoEAf0Y7cj {
    width: 1200px;
    height: 100%;
    position: relative;
}
    ._33BGoobZq-VKuoEAf0Y7cj .BTX5pbl849l_bLxW-o7hI {
        background-color: hsla(0,0%,100%,.95);
        width: 482px;
        height: 100%;
        position: absolute;
        right: 0px;
        padding: 51px 52px 44px 32px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
        ._33BGoobZq-VKuoEAf0Y7cj .BTX5pbl849l_bLxW-o7hI ._22iFhZqWqg2i-LO91ASdgt {
            display: flex;
            flex-direction: column;
        }
        ._33BGoobZq-VKuoEAf0Y7cj .BTX5pbl849l_bLxW-o7hI ._3E4v_WJm6FLSDJ_e4-ElNf {
            font-family: PingFangSC-Medium;
            font-size: 24px;
            color: #262626;
            width: 100%;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
        }
        ._33BGoobZq-VKuoEAf0Y7cj .BTX5pbl849l_bLxW-o7hI ._1HFLPPOQtv2vmG3JSWkoH3 {
            width: 100%;
            display: flex;
            margin-bottom: 8px;
        }
        ._33BGoobZq-VKuoEAf0Y7cj .BTX5pbl849l_bLxW-o7hI ._2FzAP9M1U_10DDJ3zRbn6M {
            width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            color: var(--text--color-3);
            font-family: PingFangSC-Regular;
            font-size: 14px;
            line-height: 22px;
            height: 66px;
            margin-bottom: 8px;
        }
._2J9JppEs_jkWQQGZIzQr2f {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
._33BGoobZq-VKuoEAf0Y7cj .BTX5pbl849l_bLxW-o7hI .b53MU0uVux2R9lqtJT8Yt {
    display: flex;
    justify-content: space-between;
}
.ant-btn-primary {
    color: #fff;
    background-color: #8891ff;
    border-color: #8891ff;
    text-shadow: 0 -1px 0 rgba(0,0,0,.12);
    -webkit-box-shadow: 0 2px 0 rgba(0,0,0,.045);
    box-shadow: 0 2px 0 rgba(0,0,0,.045);
}
._33BGoobZq-VKuoEAf0Y7cj .BTX5pbl849l_bLxW-o7hI .b53MU0uVux2R9lqtJT8Yt .ant-btn {
    width: 190px;
    height: 40px;
    border-radius: 8px;
}
.ant-btn {
    line-height: 2.5;
    position: relative;
    display: inline-block;
    font-weight: 400;
    white-space: nowrap;
    text-align: center;
    background-image: none;
    -webkit-box-shadow: 0 2px 0 rgba(0,0,0,.015);
    box-shadow: 0 2px 0 rgba(0,0,0,.015);
    cursor: pointer;
    -webkit-transition: all .3s cubic-bezier(.645,.045,.355,1);
    transition: all .3s cubic-bezier(.645,.045,.355,1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    height: 32px;
    padding: 0 15px;
    font-size: 14px;
    border-radius: var(--border-base-radius);
    /*color: rgba(0,0,0,.65);*/
    color: #fff;
    border: 1px solid #d9d9d9;
}

.yuanxiao_tag .active {
    color: #0c43ed;
    content: "";
    z-index: 0;
    top: 4px;
    left: 4px;
    border-bottom: 3px solid #02c;
    /*background-color: green;*/
    border-radius: 2px;
    -webkit-transition: background-color 0.2s ease-in-out,-webkit-transform 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out,-webkit-transform 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out,-webkit-transform 0.2s ease-in-out;
}
.yuanxiao_tag {
    display: flex;
    position: relative;
    height: 44px;
    border-radius: 4px;
    /* background-color: #1c1d23;*/
    cursor: pointer;
}
.xueyuan .xy {
    float: left;
    width: 33%;
    padding-left: 8px;
    padding-right: 8px;
    box-sizing: border-box;
    margin-bottom: 16px;
}
.xueyuan .main {
    float: left;
     display: none; 
    width: 100%;
}
    .xueyuan .main.selected {
        display: block;
    }
.item-c:hover {
    box-shadow: 0 16px 32px 0 rgba(48, 55, 66, 0.15); /* 鼠标悬浮时盒子出现的阴影 */
    transform: translate(0, -10px); /* 鼠标悬浮时盒子上移10px */
}
._3_cfmIAlMi6y8-sMGzQ8Zv {
    animation: fadeIn 4s;
}


.trade_tag span:nth-child(1) {
    animation: example1 1s ease-out 1s backwards;
}

.trade_tag span:nth-child(2) {
    animation: example1 1s ease-out 2s backwards;
}

.trade_tag span:nth-child(3) {
    animation: example1 1s ease-in-out 3s backwards;
}

.trade_tag span:nth-child(4) {
    animation: example1 5s ease-in-out 11s backwards;
}

@keyframes example1 {
    0% {
        transform: translate(-60px);
        opacity: 0;
    }

    50% {
        transform: translate(-30px);
        opacity: .5;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}

.shows {
    /*position: absolute;*/ /* 或 fixed */
    bottom: -100px; /* 底部定位为负数 */
    animation: slide-up 1s ease-in-out forwards;
    transform: translateY(100px); /* 向上移动元素 */
}

@keyframes slide-up {
    from {
        transform: translateY(100px);
    }

    to {
        transform: translateY(0);
    }
}

.erp-content img{
    cursor:pointer;
}
.erp-content img:hover {
    transform: scale(1.05);
}
/*======================jjfan.css==================================*/
.zt-content {
    width: 1200px;
    margin: 0 auto;
    /*padding-top: 48px;*/
    padding-bottom: 48px;
    display: block;
}

.zt-industry-college {
    margin-bottom: 26px;
}


 .zt-industry-college dt {
        background-image: url('../img/bg-cyxy.png');
    }
.zt-dt-fl dt {
    width: 360px;
    padding: 40px;
    color: #fff;
    line-height: 24px;
    margin-right: -10px;
}

.zt-dt-fl dt, .zt-dt-fl .zt-item {
    float: left;
    display: block;
    height: 250px;
}
    .zt-dt-fl dt h3 {
        font-size: 30px;
        font-weight: bold;
        display: inline-block;
        margin-bottom: 16px;
        border-bottom: 2px solid #fff;
        padding: 8px 0 16px;
    }
article {
    display: block;
}
.ztui-clear:after, .ztui-lr:after {
    display: block;
    content: ' ';
    clear: both;
}
html, body, div, span, b, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td, span, header, footer, nav {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.zt-dt-fl .zt-item {
    width: 256px;
    border: 1px solid #e2e2e2;
    margin-left: 22px;
    text-align: center;
    /*padding-top: 40px;*/
    display: block;
    float: left;
}

.zt-dt-fl dt, .zt-dt-fl .zt-item {
    float: left;
    display: block;
    height: 250px;
}

    .zt-dt-fl .zt-item p {
        font-size: 22px;
        color: #333;
        margin-top: 16px;
    }

dd {
    display: block;
    margin-inline-start: 40px;
}

.zt-dt-fl .zt-item .svg-icon {
    width: 100px;
    height: 100px;
    stroke: #4b5563;
    fill: #4b5563;
}
.svg-icon {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    overflow: hidden;
}
.zt-laboratory dt {
    background-image: url('../img/bg-lab.png');
}
.jfanimg img {
    margin-left:21px;
}