@keyframes righTOP {

    from {
        opacity: 0;
        transform: translateY(20px);
        /* transform: translateY(20px);
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px); */
    }

    to {
        opacity: 1;
        transform: translateY(0px);
        /* transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0); */
    }
}

@keyframes scaleIn {

    from {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

}

@-webkit-keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(60, 114, 252, .99)
    }

    to {
        box-shadow: 0 0 0 25px rgb(53, 0, 252, .01)
    }
}

@keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(60, 114, 252, .99)
    }

    to {
        box-shadow: 0 0 0 25px rgb(53, 0, 252, .01)
    }
}

@keyframes MOVE-Bg {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(80px);
    }
}

@-webkit-keyframes MOVE-Bg {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(80px);
    }
}

@keyframes MOV-BG {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-58px);
    }
}

@-webkit-keyframes MOV-BG {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-58px);
    }
}




.section05 {
    padding: 80px 0 100px;
    /* background:#fff; */
    background: linear-gradient(180deg, #fff, #edf4fa);
    overflow: hidden;
    position: relative;
}

.about {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 100;
}

.about-info {
    width: 50%;
    padding-right: 40px;
    box-sizing: border-box;
}

.about-info .about-title .english {
    font-weight: 600;
    font-size: 58px;
    color: #ccc;
    text-transform: uppercase;
}

.about-info .about-title .english span {
    color: #2660e8;
}

.about-info .about-title .h1 {
    font-size: 30px;
    color: #212121;
}

.about-info .about-title .smtit {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.about-info .about-des {
    font-size: 15px;
    line-height: 30px;
    color: #666;
    overflow: hidden;
    text-align: justify;
}

.about-info .about-more>a {
    display: block;
    width: 200px;
    background-color: #2660e8;
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-size: 16px;
    margin-top: 20px;
}

.about-img {
    width: 50%;
}

#industry canvas {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.section06 {
    padding: 80px 0 100px;
    overflow: hidden;
    background: #f8f8f8;
}



/* 行业应用 */
.industry {
    position: relative;
}

.industry,
.industry .applist,
.industry .imglist {
    height: 730px;
}

.industry .applist {
    margin-top: 30px;
}

.industry .imglist {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 10;
}

.industry .imglist li {
    background-size: cover;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .36s;
    animation: scaleIn 2s forwards cubic-bezier(0.4, 0, 0.49, 0.93);
    -webkit-animation: scaleIn 2s forwards cubic-bezier(0.4, 0, 0.49, 0.93);
    display: none;
}

.industry .imglist li.active {
    display: block;
}

.industry .applist {
    position: relative;
    z-index: 100;
}

.industry .applist>ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.industry .applist>ul>li {
    color: #fff;
    width: 25%;
    padding: 0 1%;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.industry .applist>ul>li::after {
    width: 100%;
    z-index: 5;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: '';
    background-color: rgba(0, 0, 0, 0.3);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    z-index: -1;
}

.industry .applist>ul>li .num {
    font-size: 40px;
}

.industry .applist>ul>li .tit {
    font-size: 20px;
    margin: 25px 0;
}

.industry .applist>ul>li:hover .tit {
    font-size: 32px;
}

.industry .applist>ul>li .entit {
    font-size: 18px;
}

.industry .applist>ul>li .m {
    text-align: center;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 50px;
    font-size: 16px;
}

.industry .applist>ul>li .line {
    width: 20%;
    height: 3px;
    background: #fff;
    margin: 25px 0;
}

.industry .applist>ul>li .des {
    margin-bottom: 32px;
    line-height: 2.4;
}

.noe {
    display: none;
    animation: righTOP .3s;
    -webkit-animation: righTOP .3s;
}

.industry .applist>ul>li:hover {
    width: 45%;
}

.industry .applist>ul>li:hover .noe {
    display: block;
}

.industry .applist>ul>li:hover::after {
    height: 100%;
}


.secContactBox {
    width: 100%;
    padding: 110px 0;
    background-image: url(../images/contactbg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.secContact {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.secContact .form {
    width: 62%;
}

.secContact .form .h2 {
    font-size: 14px;
    color: #f8f8f8;
    text-transform: uppercase;
}

.secContact .form .h3 {
    font-size: 34px;
    color: #ffffff;
    padding-bottom: 50px;
    line-height: 1
}

.secContact .form .write {
    padding-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.secContact .form .write input {
    background-color: #f4f4f4;
    color: #6e6e6e;
    font-size: 14px;
    padding: 20px 0;
    margin-right: 1%;
    padding-left: 1%;

}

.secContact .form .write .submit:hover {
    background: #fff;
    color: #040404
}

.secContact .form .write .text1 {
    width: calc(100%/3 - 1%);
    border: 0;
    font-family: microsoft yahei;
    margin:0 0.5% 20px 0.5%;
    box-sizing: border-box;
}

.secContact .form .write .text2 {
    width: calc(100%/2 - 1%);
    border: 0;
    font-family: microsoft yahei;
    margin:0 0.5% 20px 0.5%;
    box-sizing: border-box;
}

.secContact .form .write .text3 {
    width: 100%;
    border: 0;
    font-family: microsoft yahei;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.secContact .form .write .submit {
    font-size: 18px;
    background-color: #0079f0;
    color: #fff;
    width: 30%;
    font-family: microsoft yahei;
    text-align: center;
    padding-left: 0;
    cursor: pointer;
    margin-right: 1%;
    *padding: 17px 0 !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    height: 60px;
    line-height: 56px;
    border: 2px solid #0079f0;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.secInfo {
    background-color: #0079f0;
    padding: 20px;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 30%;
}

.secInfo .title {
    margin-bottom: 30px;
}

.secInfo .title span {
    font-size: 30px;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
}
.secInfo .info{
    padding-left:10px;
}
.secInfo .info ul>li {
    display: flex;
    margin-bottom: 15px;
}

.secInfo .info ul>li i.iconfont {
    margin-right: 10px;
    font-size: 20px;
    line-height: 25px;
}

.secInfo .info ul>li>div .t {
    font-size: 14px;
    line-height: 25px;
}

.secInfo .info ul>li>div p {
    margin-top: 5px;
    font-size: 22px;
}

/* 产品中心 */
.product-list {
    display: flex;
    flex-wrap: wrap;
}

.product-item {
    width: calc(100%/3 - 30px);
    margin: 0 15px 20px;
}

.product-item .info {
    background: #fff;
    padding: 10px 0;
}

.product-item .imgbox {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.product-item .imgbox .img {
    width: 100%;
}

.product-item .imgbox .img img {
    display: block;
    width: 100%;
    border: 0;
}

.product-item .imgbox .item_mask {
    position: absolute;
    display: block;
    background-color: rgba(99, 136, 207, 0.85);
    width: 100%;
    height: 0%;
    position: absolute;
    top: 99%;
    border-radius: 4px;
    transition: all .4s ease;
}

.product-item a {
    display: block;
    width: 100%;
    border: 1px solid #ddd;
}

.product-item .info .title {
    color: #181818;
    font-size: 18px;
    text-align: center;
}

.product-item .info .xh {
    color: #9a9a9a;
    text-align: center;
    transition: all .3s ease;
    position: relative;
    top: 0;
    font-size: 14px;
    line-height: 22px;
}

.product-item a:hover .imgBox .item_mask {
    height: 100%;
}

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, 0.90);
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000)
}

.sidenav-bar-visible .search-popup {
    width: 80%
}

.search-popup:before {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 560px;
    background-image: url(../images/waves-shape.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 0;
    content: ""
}

.search-popup.search-active {
    transform: translateY(0%);
    margin-top: 0
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color: #ff7a9f;
    width: 70px;
    height: 70px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid #fff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-popup .close-search img {
    width:45px;
}
.search-popup .close-search.style-two img {
    width:25px;
}
.search-popup.search-active .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
    
}
.search-popup.search-active .close-search .iconfont{
    color:#fff;
    font-size:30px;
}
.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease
}

.search-popup.search-active form {
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms
}

.search-popup .form-group {
    position: relative;
    margin: 0;
    overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 50px;
    color: #000;
    height: 70px;
    width: 100%;
    padding: 10px 100px 10px 30px;
    background-color: #fff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
    border: 4px solid #ff7a9f;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    right: 0;
    top: 0;
    height: 70px;
    line-height: 70px;
    width: 70px;
    text-align: center;
    background: #ff7a9f;
    text-align: center;
    font-size: 24px;
    color: #fff;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    color: #000
}

.search-popup .form-group i.iconfont {
    font-size: 30px;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #000
}

.search-popup .close-search.style-two {
    width: 70px;
    height: 70px;
    position: absolute;
    right: 25px;
    left: auto;
    color: #fff;
    width: auto;
    height: auto;
    top: 25px;
    margin: 0;
    border: 0;
    background: none !important;
    box-shadow: none !important;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;

}

.search-popup .close-search.style-two i.iconfont {
    font-size: 20px;
    color: #fff;
    font-size: 30px;
}

.gotop {
    display: block;
    background-color: #0079f0;
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 57px;
    right: 20px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
    cursor: pointer;
}

.gotop.show {
    opacity: 1;
    visibility: visible;
}

.gotop i.iconfont {
    font-size: 22px;
    line-height: 50px;
    color: #fff;
    font-weight: 600
}

/* 关于我们 */
.sub-banner {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    margin-top: 100px;
    /* background-size: cover;
    background-position: center bottom; */
    background-attachment: fixed;
    background-repeat: no-repeat;
}
/* .sub-banner::before{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(20, 33, 43, .6);
} */
.sub-banner .img {
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-attachment: fixed;
    top: 0;
    left: 0;
}
.sub-banner .info {
    position: absolute;
    left: 0;
    padding: 0 4%;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 1500px;
    z-index: 1;
    color: #fff;

}

.sub-banner .info h1 {
    color: #fff;
    font-size: 72px;
    letter-spacing: -2.16px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
}
.sub-banner .info h2{
    font-size:40px;
}
.sub-banner .canvas {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.sub-banner .canvas canvas {
    display: block;
    width: 100%;
    height: 500px;
}

.sub-banner .info .crumbs {
    position: relative;
    font-size: 15px;
    padding-left: 15px;
    line-height: 24px;
}

.sub-banner .info .crumbs::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 4px;
    height: 18px;
    background: #fff;
    display: block;
    border-radius: 2px;
    overflow: hidden;
}

.sub-banner .info .crumbs a {
    color: #fff;
}

.navBar {
    position: absolute;
    left: 4%;
    bottom: 0;
    width: 92%;
    z-index: 10;
}

.navBar>ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #eee;
}

.navBar>ul>li {
    /* width: calc(100%/3 - 4px); */
    flex:1;
    background: #fff;
    border-right: 1px solid #eee;
}

.navBar>ul>li:last-child {
    border-right: 0;
}
.navBar>ul>li a,
.navBar>ul>li span {
    display: block;
    width: 100%;
    text-align: center;
    line-height: 80px;
    font-size: 20px;
    color: #333333;
    cursor: pointer;
}
.navBar>ul>li.active {
    background: #2660e8;
    color: #fff;
}
.navBar>ul>li.active span,
.navBar>ul>li.active a{
    color:#fff;
}
.aboutBox1 {
    padding: 60px 0;
}

.about1-img1 {
    margin-bottom: 20px;
}

.about1-img1 img {
    display: block;
    opacity: 0.5;
}

.about1-img1 .title {
    font-size: 40px;
    color: #212121;
    font-weight: 600;
}

.about-box1 {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.about-box1 .img1 {
    width: 66%;
}

.about-box1 .info {
    width: 34%;
    padding: 0 20px 0 40px;
    position: relative;
}

.about-box1 .info .title {
    font-size: 28px;
    color: #222;
}

.about-box1 .info .des {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about1-list {
    width: 110%;
    background: #0079f0;
    right: 0;
    bottom: 0;
}

.about1-list ul {
    display: flex;
    flex-wrap: wrap;
    height: auto;
}

.about1-list ul li {
    width: calc(100%/3);
    text-align: center;
    padding: 20px 0;
    position: relative;
}

.about1-list ul li,
.about1-list ul li .nub {
    color: #fff;
}

.about1-list ul li .pd {
    color: #eee;
}


.about-box2 .layout {
    width: 100%;
    height: 100%;
}

.subabout-title {
    font-size: 40px;
    color: #fff;
    font-weight: 600;
}

.about-main2 .licheng-bg {
    background-color: rgba(255, 255, 255, .8);
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0px 4%;
    box-sizing: border-box;
}

.about-main2 .licheng-bg .warper {
    height: 100%;
    position: relative;
}

.about-main2 .licheng-bg img {
    /* height: 518px; */
    position: absolute;
    bottom: 0px;
    left: 0;
    width:100%;
}

.about-main2 .about2-title {
    padding-top: 80px;
}

.about2-title .title-en {
    font-size: 36px;
    color: #b4b4b4;
    font-family: arial;
    line-height: 36px;
    font-weight: normal;
}

.about2-title .title-ch {
    font-size: 26px;
    color: #333333;
    margin: 15px 0;
    font-weight: normal;
}

.about2-title i {
    display: block;
    width: 42px;
    height: 1px;
    background-color: #b5b5b5;
}

.about-main2 .licheng-content {
    position: absolute;
    width: 100%;
    height: 100%;
}

.about-main2 .licheng-content .swiper-wrapper,
.about-main2 .licheng-content .swiper-slide,
.about-main2 .licheng-content ul {
    width: 100%;
    height: 100%;
}

.about-main2 .licheng-content ul li {
    width: 20%;
    float: left;
    height: 100%;
}

.about-main2 .licheng-content ul li a {
    display: block;
    width: 100%;
    position: relative;
    height: 320px
}

.about-main2 .licheng-content ul li .date {
    color: #0a3875;
    font-size: 30px;
}

.about-main2 .licheng-content ul li.item1 .line,
.about-main2 .licheng-content ul li.item3 .line,
.about-main2 .licheng-content ul li.item5 .line {
    margin-bottom: 30px;
}

.about-main2 .licheng-content ul li.item2 .line,
.about-main2 .licheng-content ul li.item4 .line {
    margin-top: 30px;
}

.about-main2 .licheng-content ul li.item1 .line:after,
.about-main2 .licheng-content ul li.item3 .line:after,
.about-main2 .licheng-content ul li.item5 .line:after {
    width: 25px;
    height: 25px;
    background-color: rgba(10, 56, 117, 0.8);
    display: block;
    content: "";
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    position: absolute;
}

.about-main2 .licheng-content ul li.item2 .line:before,
.about-main2 .licheng-content ul li.item4 .line:before {
    width: 25px;
    height: 25px;
    background-color: rgba(10, 56, 117, 0.8);
    display: block;
    content: "";
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    position: absolute;
}

.about-main2 .licheng-content ul li .lc-left {
    position: absolute;
}

.about-main2 .licheng-content ul li .line {
    height: 250px;
    width: 1px;
    display: block;
    background-color: #0A3875;
    position: relative;
    left: 30px;
}

.about-main2 .licheng-content ul li .lc-right {
    position: absolute;
    left: 30px;
    width: 400px;
    height: 100%;
    display: table;
}

.about-main2 .licheng-content ul li.item5 .lc-right {
    width: 200px;
}

.about-main2 .licheng-content ul li.item2 .lc-right,
.about-main2 .licheng-content ul li.item4 .lc-right {
    width: 400px;
}

.about-main2 .licheng-content ul li .lc-right .right-text {
    padding: 20px;
    display: table-cell;
    vertical-align: middle;
}

.about-main2 .licheng-content ul li.item1 a {
    top: 23px;
}

.about-main2 .licheng-content ul li.item1 .lc-left .line:after {
    bottom: -25px;
    left: -11px;
}

.about-main2 .licheng-content ul li.item1 .lc-right {
    bottom: 68px;
}

.about-main2 .licheng-content ul li.item2 a {
    top: 172px;
}

.about-main2 .licheng-content ul li.item2 .lc-left .line:before {
    top: -25px;
    left: -11px;
}

.about-main2 .licheng-content ul li.item2 .lc-right {
    top: 88px;
}

.about-main2 .licheng-content ul li.item3 a {
    top: 87px;
}

.about-main2 .licheng-content ul li.item3 .lc-left .line:after {
    bottom: -25px;
    left: -11px;
}

.about-main2 .licheng-content ul li.item3 .lc-right {
    bottom: 100px;
}

.about-main2 .licheng-content ul li.item4 a {
    top: 255px;
}

.about-main2 .licheng-content ul li.item4 .lc-left .line:before {
    top: -25px;
    left: -11px;
}

.about-main2 .licheng-content ul li.item4 .lc-right {
    top: 70px;
}

.about-main2 .licheng-content ul li.item5 a {
    top: 99px;
}

.about-main2 .licheng-content ul li.item5 .lc-left .line:after {
    bottom: -25px;
    left: -11px;
}

.about-main2 .licheng-content ul li.item5 .lc-right {
    bottom: 100px;
}

.about-main2 .licheng-content .right-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.about-main2 .licheng-content .right-text p {
    font-size: 16px;
}

.lc-swiper-btn {
    width: 100%;
    position: absolute;
    top: 370px;
}

.lc-swiper-btn a {
    display: block;
    position: absolute;
}

.lc-swiper-btn .btn-prev {
    position: absolute;
    left: 15px;
    top: 50px;
}

.lc-swiper-btn .btn-next {
    position: absolute;
    right: 0;
    top: 50px;
}

.lc-swiper-btn .iconfont {
    font-size: 30px;
}



/* history */
.historyBox {
	width:100%;
	/* height:2200px; */
	position:relative;
	background:url("../images/history_bg1.png") center no-repeat
}
.start-history {
	width:1000px;
	/* height:2200px; */
	margin:30px auto;
	background:url("../images/history_start.png") no-repeat top center;
	display:block
}
.cc_history {
	color:#2b2b2b;
	font-size:36px;
	font-weight:400;
	display:block;
	padding-top:43px;
    text-align: center;
}
.next_history {
	color:#bbb;
	font-size:26px;
	width:160px;
	margin:0 auto;
	border-bottom:1px solid #d1d1d1;
    text-align: center;
}



.history{
    position: relative;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    width:990px;
    margin:0px auto;
    overflow: hidden;
}
.history-left,.history-right{
    width:420px;
}
.history-left{
    margin-top: 178px;
}
.history-right{
    margin-top: 90px;
}
.history-left .item,
.history-right .item{
    width:100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 70px;
}
.history-left .item{
    flex-direction: row-reverse;
}
.history-left .item .year,
.history-right .item .year{
    line-height: 100px;
    font-size: 42px;
    color: #d43434;
}
.history-left .item .info{
    padding-right:25px;
}
.history-right .item .info{
    padding-left:25px;
}
.history-right .item .info,
.history-left .item .info{
    width: 290px;
    
    position: relative;
}

.history-left .item .info::before,
.history-right .item .info::before{
    content:'';
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    width:25px;
    height: 8px;
}
.history-left .item .info::before{
    right:0;
    background-image: url(../images/line-left.png);
}
.history-right .item .info::before{
    left:0;
    background-image: url(../images/line-right.png);
}

.history-left .item .info .des,
.history-right .item .info .des{
    background:#d43434;
    height: 80px;
    color:#fff;
    padding:15px;
    box-sizing: border-box;
    font-size:15px;
}
.history-img {
	width:130px;
	overflow:hidden;
	margin-top:24px;
	/* margin-left:8px; */
}
.history-left .item:nth-of-type(8),
.history-left .item:nth-of-type(6){
    margin-top: 52px;
}
.history-left .item:nth-of-type(9),
.history-left .item:nth-of-type(7){
    margin-top: 58px;
}
.history-left .item:nth-of-type(10){
    margin-top: 75px;
}

.history-right .item:nth-of-type(7){
    margin-top: 50px;
}
.history-right .item:nth-of-type(8){
    margin-top: 60px;
}
.history-right .item:nth-of-type(9){
    margin-top: 45px;
}

.history-left .item:nth-of-type(4) .year,
.history-left .item:nth-of-type(5) .year,
.history-left .item:nth-of-type(6) .year,
.history-left .item:nth-of-type(7) .year,
.history-right .item:nth-of-type(5) .year,
.history-right .item:nth-of-type(6) .year,
.history-right .item:nth-of-type(7) .year
{
    color:#37779d;
}
.history-left .item:nth-of-type(8) .year,
.history-left .item:nth-of-type(9) .year,
.history-left .item:nth-of-type(10) .year,
.history-right .item:nth-of-type(8) .year,
.history-right .item:nth-of-type(9) .year,
.history-right .item:nth-of-type(10) .year
{
    color:#f86d02;
}

.history-left .item:nth-of-type(4) .info .des,
.history-left .item:nth-of-type(5) .info .des,
.history-left .item:nth-of-type(6) .info .des,
.history-left .item:nth-of-type(7) .info .des,
.history-right .item:nth-of-type(5) .info .des,
.history-right .item:nth-of-type(6) .info .des,
.history-right .item:nth-of-type(7)  .info .des
{
    background:#37779d;
}
.history-left .item:nth-of-type(8) .info .des,
.history-left .item:nth-of-type(9) .info .des,
.history-left .item:nth-of-type(10) .info .des,
.history-right .item:nth-of-type(8) .info .des,
.history-right .item:nth-of-type(9) .info .des,
.history-right .item:nth-of-type(10) .info .des
{
    background:#f86d02;
}
.about-box3{
    padding:60px 0 80px;
    background-image: url(../images/bg3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.about-box4{
    padding:60px 0;
    
}

.ryzz-list{
    display: flex;
    flex-wrap: wrap;
}
.ryzz-list .ryzz-item{
    width:calc(100%/4 - 20px);
    margin:10px;
    border:1px solid #ddd;
    box-sizing: border-box;
}
.ryzz-list .ryzz-item a{
    display: block;
    width:100%;
}
.ryzz-list .ryzz-item a .imgbox{
    position: relative;
}
.ryzz-list .ryzz-item a .imgbox .img{
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    background:#fff;
    padding:20px;
    box-sizing: border-box;
}
.ryzz-list .ryzz-item a .img img{
    max-height: 300px;
    max-width: 100%;
}
.ryzz-list .ryzz-item a .imgbox .fd{
    position: absolute;
    right:5px;
    bottom:5px;
    width:30px;
    height: 30px;
    transition: all .36s;
    -webkit-transition: all .36s;
}
.ryzz-list .ryzz-item a .imgbox .fd img{
    width:100%;
    color:#bfbfbf;
}
.ryzz-list .ryzz-item a:hover .imgbox:before{
    content:'';
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height: 100%;
    background:rgba(0,0,0,0.5);
    opacity: 0;
    transition: all .36s;
    -webkit-transition: all .36s;
    z-index:1;
}
.ryzz-list .ryzz-item a:hover .imgbox:before{
    opacity: 1;
}
.ryzz-list .ryzz-item a:hover .imgbox .fd{
    right:0;
    bottom:0;
    top:50%;
    left:50%;
    width:64px;
    height: 64px;
    transform: translate(-50%,-50%);
    z-index:10;
}
.ryzz-list .ryzz-item a:hover .imgbox .fd img{
    color:#fff;
}
.ryzz-list .ryzz-item a  .name{
    background:#fff;
    font-size:18px;
    color:#333;
    text-align: center;
    border-top: 1px solid #ddd;
    padding:20px 10px;
    position: relative;
    box-sizing: border-box;
}
.ryzz-list .ryzz-item a  .name span{
    display: block;
    text-align: center;
    position: relative;
    z-index:1;
    /* word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; */
}
.ryzz-list .ryzz-item a  .name::after{
    width: 100%;
    height: 2px;
    z-index: 1;
    background: #0079f0;
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    display: block;
    transition: all .36s;
    -webkit-transition: all .36s;
    z-index:0;
}
.ryzz-list .ryzz-item a:hover  .name{
    color:#fff;
}
.ryzz-list .ryzz-item a:hover  .name::after{
    height: 100%;
}
.applist{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.applist .app-item{
    width:calc(50% - 10px);
    margin-bottom: 30px;
}
.applist .app-item>div{
    display: block;
    width:100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.applist .app-item .img{
    width:100%;
}
.applist .app-item .img img{
    width:100%;
    transition: all .3s;

}
.applist .app-item:hover .img img{
    transform: scale(1.1);
    opacity: 0.95;
}
.applist .app-item .info{
    position: absolute;
    top:15%;
    left:10%;
    color:#fff;
}
.applist .app-item .info .tit{
    font-size:40px;
}
.applist .app-item .info .entit{
    font-size:32px;
    text-transform: capitalize;
}
.applist .app-item .info .amore{
    margin-top: 20px;
    font-size:18px;
    width:200px;
    height: 60px;
    line-height: 40px;
    border:1px solid #fff;
    position: relative;
    padding:10px 15px;
    box-sizing: border-box;
    transition: all .3s ease-out;
    /* -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out; */
}
.applist .app-item .info .amore  i{
    background-image: url(../images/jt01.png);
    display: block;
    width: 32px;
    height: 30px;
    position: absolute;
    top: 50%;
    right:15px;
    transform: translateY(-50%);
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    opacity: 1;
}
.applist .app-item .info .amore span{
    position: relative;
    z-index:1;
}
.applist .app-item .info .amore::before{
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2660e8;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0% 0;
    transform-origin: 0% 0;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    height:100%;
    width: 0px\0;
}
.applist .app-item:hover .info .amore{
    padding:10px 25px;
}
.applist .app-item:hover .info .amore  i{
    right:25px;
}
.applist .app-item:hover .info .amore::before{
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    width: auto\0;
}
.subnews{
    padding:80px 0;
    background:#efefef;
}
.subnews-list{
    display: flex;
    flex-wrap: wrap;
}
.subnews-list .item{
    width:calc(100%/3 - 30px);
    margin:15px;
}
.sub-news-rlist>li{
    margin-bottom:10px;
    width:100%;
    border:1px solid #ddd;
}
.sub-news-rlist>li a,
.subnews-list .item a{
    display: block;
    width:100%;
    background-color: #fff;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    position: relative;
}
.sub-news-rlist>li a .tmain,
.subnews-list .item a .tmain{
    box-sizing: border-box;
    transition: all .3s;
    position: relative;
}
.sub-news-rlist>li a .tmain{
    padding:12px;
}
.subnews-list .item a .tmain{
    padding:30px;
}
.sub-news-rlist>li a .bg,
.subnews-list .item a .bg{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
}
.sub-news-rlist>li a .bg::before,
.sub-news-rlist>li a .bg::after,
.subnews-list .item .bg:before,
.subnews-list .item .bg:after{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s
}
.sub-news-rlist>li a .bg::before,
.subnews-list .item a .bg::before{
    border-top: 2px solid #0079f0;
    border-bottom: 2px solid #0079f0;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}
.sub-news-rlist>li a .bg::after,
.subnews-list .item a .bg::after{
    border-right: 2px solid #0079f0;
    border-left: 2px solid #0079f0;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}
.subnews-list .item a:hover .tmain{
    box-shadow: 0 0 10px #ddd;
    padding-top: 20px;
}
.sub-news-rlist>li a .tmain .time,
.subnews-list .item .tmain .time {
    display: block;
    font-size: 14px;
    color: #999;
    line-height: 25px;
    padding-left: 25px;
    background-image: url(../images/time.png);
    background-position: left center;
    background-repeat: no-repeat
}
.sub-news-rlist>li a .tmain .title,
.subnews-list .item .tmain .title {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
    height: 27px
}
.sub-news-rlist>li a .tmain .h3,
.subnews-list .item .tmain .h3 {
    font-size: 14px;
    color: #999;
    height: 42px;
    overflow: hidden;
}
.sub-news-rlist>li a .tmain .h3{
    margin-bottom: 10px;
}
.subnews-list .item .tmain .h3{
    margin-bottom: 40px;
}
.sub-news-rlist>li a .tmain .more,
.subnews-list .item .tmain .more {
    display: inline-block;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #c6c6c6;
}
.sub-news-rlist .item:hover .bg:before,
.sub-news-rlist .item:hover .bg:after,
.subnews-list .item:hover .bg:before,
.subnews-list .item:hover .bg:after{
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.subnews-detail{
    background:#fff;
    padding:60px 0;
    width:100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}
.subnews-detail .sub-news-left{
    width:calc(100% - 380px);
}
.subnews-detail .sub-news-right{
    width:350px;
}
.subnews-detail .subnews-title{
    text-align: center;
}
.subnews-detail .subnews-title .title{
    font-size:35px;
    color:#333;
}
.subnews-detail .subnews-title .sub-mtit{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.subnews-detail .subnews-title .sub-mtit p{
    padding:0 20px;
    display: flex;
    align-items: center;
}
.subnews-detail .subnews-title .sub-mtit p .img{
    height: 24px;
    color:#666666;
    margin-right: 5px;
}
.subnews-detail .subnews-title .sub-mtit p span{
    color:#666666;
    font-size:14px;
}
.subnews-content{
    margin:20px 0;
    padding:20px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-size:16px;
    line-height: 1.8;
    color:#212121;
    text-align: justify;
}
.sub-link{
    line-height: 30px;
    font-size: 14px;
    color:#999999;
}
.sub-link span{
    color:#999999;
}
.sub-link span.a{
    color:#666666;
    cursor: pointer;
}
.sub-link span.a:hover{
    font-weight: 600;
    color:#2660e8;
    text-decoration: underline;
}

.sub-news-right .sub-news-r-title{
    border-left:3px solid #0079f0;
    padding-left:20px;
    font-size:16px;
    margin-bottom:10px;
}
.appDetailPage,
.productDetailPage{
    width:100vw;
    height: 100vh;
    position: fixed;
    top:0;
    left:0;
    z-index:1001;
}
.appDetailPage .mask,
.productDetailPage .mask{
    display: block;
    width:100%;
    height: 100%;
    background:rgba(0,0,0,0.6);
}
.appDetailPage .detail,
.productDetailPage .detail{
    width:1100px;
    max-width: 92%;
    position: fixed;
    top:10%;
    left:50%;
    transform: translateX(-50%);
    background:#fff;
    height: 85vh;
    z-index:1005;
    padding:50px 40px;
    box-sizing: border-box;
    box-shadow: 0 0 10px #999;
    background-image: url(../images/bg.jpg);
    background-size:cover;
}
.appDetailPage .detail .scroll,
.productDetailPage .detail .scroll{
    width:100%;
    height: calc(100% - 50px);
    overflow-y: scroll;
    padding:20px;
    box-sizing: border-box;
    background:#fff;
}
.productDetailPage .detail .top{
    position: fixed;
    top:-30px;
    right:0;
    z-index:10002;
}
.productDetailPage .detail .scroll .top-product{
    display: flex;

}
.productDetailPage .detail .scroll .top-product .img{
    width:360px;
}
.productDetailPage .detail .scroll .top-product .img img{
    display: block;
    width:100%;
}
.productDetailPage .detail .scroll .top-product .info {
    width:calc(100% - 360px);
    padding-left:50px;
}
.productDetailPage .detail .scroll .top-product .info .target{
    display: flex;
}
.productDetailPage .detail .scroll .top-product .info .target span{
    padding:0px 10px;
    background:#f0f0f0;
    color:#737373;
    border:1px solid #bbbbbb;
    display: block;
    line-height: 25px;
    font-size:16px;
}
.productDetailPage .detail .scroll .top-product .info .titbox{
    padding:10px 0;
    border-bottom:1px solid #eee;
}
.productDetailPage .detail .scroll .top-product .info .title{
    font-size:32px;
    color:#0039c7;
    font-weight: 600;
}
.productDetailPage .detail .scroll .top-product .info .smtit{
    font-size:18px;
    color:#999999;
    font-weight: 400;
    
}
.productDetailPage .detail .scroll .top-product .info .des{
    font-size: 16px;
    color:#333;
    padding-top: 10px;
    line-height: 2;
}
.productDetailPage .detail .scroll .content{
    padding-top:20px;
}
.productDetailPage .detail .scroll .content .title{
    font-size:32px;
    font-weight: 600;
    color:#323232;
    border-bottom:1px solid #eee;
    margin-bottom:10px;
}
.appDetailPage .detail .scroll .content,
.productDetailPage .detail .scroll .content .cont{
    font-size:16px;
    line-height: 2;
    color:#333333;
}

.appDetailPage .detail .scroll::-webkit-scrollbar,
.productDetailPage .detail .scroll::-webkit-scrollbar {
    height: 10px;
    width: 10px;
    border-radius: 10px;
}
  
  /*滚动条的轨道*/
.appDetailPage .detail .scroll::-webkit-scrollbar-track,
.productDetailPage .detail .scroll::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #ffffff;
}
  
  /*滚动条的滑块样式*/
.appDetailPage .detail .scroll::-webkit-scrollbar-thumb,
.productDetailPage .detail .scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: linear-gradient(
        to bottom,
        #2686f3 0%,
        /* #feb47b 25%,
        #86e3ce 50%,
        #d4a5a5 75%, */
        #9ac7fb 100%
    );
}
.appDetailPage .detail .scroll::-webkit-scrollbar-thumb:hover,
.productDetailPage .detail .scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        to bottom,
        #2686f3 0%,
        /* #feb47b 25%,
        #86e3ce 50%,
        #d4a5a5 75%, */
        #9ac7fb 100%
    );
  }

/*滚动条的滑块样式*/
.appDetailPage .detail .scroll:hover::-webkit-scrollbar-thumb,
.productDetailPage .detail .scroll:hover::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background: linear-gradient(
            to bottom,
            #076fe5 0%,
            /* #feb47b 25%,
            #86e3ce 50%,
            #d4a5a5 75%, */
            #9ac7fb 100%
        );
}
.appDetailPage .detail .scroll:hover::-webkit-scrollbar-thumb:hover,  
.productDetailPage .detail .scroll:hover::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(
            to bottom,
            #076fe5 0%,
            /* #feb47b 25%,
            #86e3ce 50%,
            #d4a5a5 75%, */
            #9ac7fb 100%
        );
}

.appDetailPage .detail .guanbi span,
.productDetailPage .detail .guanbi span{
    display: block;
    width:200px;
    line-height: 50px;
    background:#0039c7;
    color:#fff;
    font-size:18px;
    text-align: center;
    margin:20px auto 0;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
}
.productDetailPage .detail .button{
    display: flex;
    align-items: center;
}
.productDetailPage .detail .button .btn{
    width: 135px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    margin-right: 10px;
    margin-top: 20px;
    color:#fff;
    font-size:16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.productDetailPage .detail .button .btn1{
    background: #0039c7;
}
.productDetailPage .detail .button .btn2{
    background: #21252c;
}
.productDetailPage .detail .button .btn img{
    display: block;
    height:20px;
    margin-right:10px;
}

.appDetailPage .detail .scroll .title{
    padding-bottom:10px;
    margin-bottom: 10px;
    border-bottom:1px solid #ddd;
    color:#212121;
}
.appDetailPage .detail .scroll .title .tit{
    font-size:40px;
}
.appDetailPage .detail .scroll .title .entit{
    font-size:20px;
}
.sub-downBox{
    padding:80px 0;
    background-color: #efefef;
}
.sub-down-list{
    width:100%;
}
.sub-down-item a{
    padding: 32px;
    box-sizing: border-box;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e4eaec;
    margin-bottom: 10px;
    position: relative;
}

.sub-down-item .sub-down-info {
    width: calc(100% - 300px);
    display: flex;
    align-items: center;
    position: relative;
    z-index:2;
}

.sub-down-item .sub-down-info .img {
    width:130px;
    display: flex;
    justify-content: center;
    border-right:1px solid #d0d0d0;
}

.sub-down-item .sub-down-info .img .tu{
    display: block;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    border-radius: 20px;
    overflow: hidden;
    /* background-color:#2660e8; */
    background-image: url(../images/icon_pdf_b.png);
    background-repeat: no-repeat;
    background-size: 40px;
    background-position: center center;
}
.sub-down-item a:hover .sub-down-info .img .tu{
    background-image: url(../images/icon_pdf_w.png);
}
.sub-down-item .sub-down-info .word {
    width: calc(100% - 70px);
    padding-left:25px;
    box-sizing: border-box;
}

.sub-down-item .sub-down-info .word .title{
    font-size: 20px;
    color: #111111;
    font-weight: 600;
    letter-spacing: 1px;
}

.sub-down-item .sub-down-info .word .des {
    margin-top: 10px;
    font-size: 16px;
}

.sub-down-item .sub-down-info .word .des .size {
    margin-right: 30px;
}
.sub-down-right{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index:2;
}
.sub-down-right .tag{
    display: flex;
    margin-right:40px;
    font-family: 微软雅黑, Microsoft YaHei;
}
.sub-down-right .tag .time,
.sub-down-right .tag .size{
    font-size:16px;
    color:#2660e8;
    font-weight: 600;
}
.sub-down-right .tag .size{
    margin-right:15px;
    padding-right:15px;
    border-right:2px solid #ddd;
}
.sub-down-right .sub-down-btn{
    width:30px;
    height:30px;
    background-size:26px;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/icon_down_b.png);
}
.sub-down-item a:hover .sub-down-right .sub-down-btn{
    background-image: url(../images/icon_down_w.png);
}
.sub-down-item a::before{
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    right:0;
    top:0;
    bottom: 0;
    background-color: #2660e8;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    height: 0px \0;
}
.sub-down-item a:hover::before{
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    height: auto\0;
}
.sub-down-item a:hover .sub-down-info .word .title{
    color:#fff;
}
.sub-down-item a:hover .sub-down-right .tag .size,
.sub-down-item a:hover .sub-down-right .tag .time{
    color:#fff;
}
.pages {
    text-align: center;
    margin-top: 30px;
}

.pages .page {
    display: inline-block;
}

.pages .page a,
.pages .page span {
    display: block;
    float: left;
    min-width: 30px;
    line-height: 30px;
    text-align: center;
    padding: 0px 5px;
    border: 1px solid #ddd;
    margin: 5px;
}

.pages .page span {
    background: #2e3594;
    color: #fff;
}

.pages .page a:hover {
    background: #f8f8f8;
    color: #2e3594;
    border-color: #2e3594;
}
.recruit-fluid{
    padding:80px 0;
}
.container{
    width:1500px;
    margin:0 auto;
    max-width: 92%;
}
.recruit{
    border:1px solid #e5e5e5;
}
.recruit-item .list{
    display: flex;
    justify-content: space-between;
    border-bottom:1px solid #e5e5e5;
}
.recruit-item .list .t{
    width:19%;
    padding:24px 0;
    text-align: center;
    font-size:16px;
    line-height: 30px;
    color:#333333;
}
.recruit-item .list .t:first-of-type{
    width:24%;
}
.recruit-item{
    cursor: pointer;
    border-bottom:0;
    background:#ffffff;
    transition: all .36s;
    -webkit-transition: all .36s;
    -moz-transition: all .36s;
    -ms-transition: all .36s;
    -o-transition: all .36s;
}
.recruit-item.top{
    background:#f5f5f5;
}
.recruit-item:hover{
    box-shadow: 0 0 10px rgba(0, 0, 0, .15);
    transform: scale(1.1);
}
.recruit-item.top:hover{
    box-shadow: 0 0 0px rgba(255, 255,255, .15);
    transform: scale(1);
}
.recruit-item .list .t .iconimg{
    width:30px;
    height: 30px;
    background-image: url(../images/icon_arrow_down.png);
    background-size: 20px;
    background-position: center center;
    background-repeat: no-repeat;
    border:1px solid #aaa;
    border-radius: 50%;
    overflow: hidden;
    margin:0 auto;
}
.recruit-item:hover .list .t .iconimg{
    background-image: url(../images/icon_arrow_top.png);
    border-color:#0079f0;
}
.recruit-item .info{
    display: flex;
    justify-content: space-between;
    padding:8px 0 24px;
    color:#333333;
    display: none;
    border-bottom:1px solid #e5e5e5;
}
.recruit-item:hover .info{
    display: flex;
}
.recruit-item .info .left{
    width:calc(100% - 260px);
    
}
.recruit-item .info .left .desbox{
    line-height: 2;
    display: flex;
    width:100%;
    margin-top:20px;
}
.recruit-item .info .t1{
    width: 200px;
    white-space: nowrap;
    font-weight: 800;
    text-align: center;
    font-size:20px;
}
.recruit-item .info .des{
    width: calc(100% - 200px);
    font-size:15px;
}
.recruit-item .info .more{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    font-size:16px;
    margin-right: 40px;
    background:#0079f0;
    color:#fff;
    width:160px;
    margin-top: 20px;
}
.recruit-item .info .more img{
    width:26px;
    margin-right: 6px;
}


.form-demandBox{
    width:100vw;
    height: 100vh;
    position: fixed;
    top:0;
    left:0;
    z-index:1001;
}
.form-demandBox .mask{
    position: fixed;
    top:0;
    left:0;
    width:100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6);
}
.form-demand{
    padding:40px 50px 40px;
    box-sizing: border-box;
    width:50%;
    background:#fff;
    position: fixed;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width:600px;
}
.form-demand .close{
    width:30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    background:#8f8f8f;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top:10px;
    right:10px;
    cursor: pointer;
}
.form-demand .close img{
    display: block;
    width:15px;
}
.form-demand  h2{
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
}
.form-demand  h3{
    font-size: 34px;
    color: #333;
    padding-bottom: 10px;
    margin-bottom: 10px;
    line-height: 1;
    border-bottom:1px solid #e5e5e5;
}
.form-demand .title{
    font-size:18px;
    color: #333;
}
.form-demand .write{
    width:100%;
}
.form-demand .write .item{
    width:100%;
    margin-top:15px;
}
.form-demand .write .item input[type=text]{
    width:100%;
    background:#f8f8f8;
    border:0;
    outline: 0;
    box-sizing: border-box;
    font-size:16px;
    position: relative;
    z-index: 2;
}
.form-demand .write .item .inputbox{
    position: relative;
    cursor: text;
    width: 100%;
    height: 50px;
    padding: 10px;
    line-height: 30px;
    font-size: 16px;
    background: #f9f9f9;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}
.form-demand .write .item .inputbox input[type=text]{
    width:100%;
    height: 30px;
}
.form-demand .write .item .inputbox select{
    border: none;
    background: none;
    display: block;
    width: 100%;
    height: 30px;
    font-size: 16px;
    padding: 0;
}
.form-demand .write .item .inputitem .tit{
    font-size:16px;
    color:#333;
}
.form-demand .write .item .inputitem .file{
    margin-top: 10px;
}
.form-demand .write .item .inputitem .file input[type=file]{
    font-size:15px;
}
.form-demand .write input[type=submit]{
    background-color: #040404;
    color: #fff;
    width: 100%;
    font-family: microsoft yahei;
    text-align: center;
    padding-left: 0;
    cursor: pointer;
    margin-right: 0;
    margin-top: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    line-height: 46px;
    font-size:16px;
    border: 2px solid #040404;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.form-demand .write input[type=submit]:hover{
    background: #fff;
    color: #040404
}
.serviceIdea{
    background:#fff;
}
.idea-list{
    display: flex;
    justify-content: space-between;
}
.service-item{
    margin-bottom:30px;
    width:49%;
    position: relative;
}

.service-item .img{
    /* width:45%; */
    width:100%;
}
.service-item .img img{
    display: block;
    width:100%;
}
.service-item .cont{
    /* width:55%; */
    width:100%;
    box-sizing: border-box;
    padding:40px 30px;
    box-sizing: border-box;
    border:1px solid #f0f0f0;
    box-shadow: 0 0 10px #9a9a9a;
}
.service-item .cont .icon{
    width:40px;
    margin-bottom: 10px;
}
.service-item .cont .icon img{
    width:100%;
}
.recruit-title{
    margin-top: 30px;
    margin-bottom: 15px;
}
.recruit-title,
.service-list .title,
.service-item .title{
    font-size:22px;
    color:#040404;
    position: relative;
    padding-left:20px;
    font-weight: 600;
}
.recruit-title::before,
.service-list .title::before,
.service-item .title::before{
    content:'';
    position: absolute;
    left:0;
    top:50%;
    width:3px;
    height: 24px;
    background:#000;
    transform: translateY(-50%);
}

.service-item .info{
    color:#444444;
    font-size:17px;
    margin-top: 15px;
    text-align: justify;
}
.service-list .list{
    display: flex;
    justify-content: space-between;
}
.service-list .list .item{
    width:calc(25% - 20px);
    margin:10px;
    background:#fff;
    box-sizing: border-box;
    border:1px solid #e3e3e3;
    padding:20px;
    margin-top: 30px;
    transition: all ease-in-out 0.3s;
}
.service-list .list .item:hover{
    box-shadow: 0 0 10px #ddd;
    margin-top: 20px;
}
.service-list .list .item .tit{
    font-size:18px;
    color:#000;
    text-align: center;
    font-weight: 600;
    padding-top: 10px;
}
.service-list .list .item .des{
    font-size:15px;
    margin-top: 10px;
}


.searchBox{
    padding:50px 0;
}
.sub-search{
    height: 150px;
}
.sub-search-title{
    color:#222222;
    padding-bottom: 40px;
}
.sub-search-title .h1{
    font-size:40px;
}
.sub-search-title .h2{
    font-size:25px;
    color:#353535;
}
.sub-form{
    /* width:800px;
    background:#fff; */
    position: absolute;
    left:50%;
    transform: translateX(-50%);
    bottom:40px;
    /* height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box; */
}

.sub-form .form-group{
    /* width:800px;
    height: 110px;
    padding:20px; */
    height: 70px;
    width:760px;
    max-width: 92%;
    box-sizing: border-box;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    /* background:#fff; */
}
.sub-form .form-group input[type=search]
{
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 50px;
    color: #000;
    height: 70px;
    width: 100%;
    padding: 10px 100px 10px 30px;
    background-color: #fff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
    border: 4px solid #ff7a9f;
}
.sub-form .form-group button{
    position: absolute;
    right: 0;
    top: 0;
    height: 70px;
    line-height: 70px;
    width: 70px;
    text-align: center;
    background: #ff7a9f;
    text-align: center;
    font-size: 24px;
    color: #fff;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.pages {
    text-align: center;
    margin-top: 50px;
}

.pages .page {
    display: inline-block;
}

.pages .page a,
.pages .page span {
    display: block;
    float: left;
    min-width: 30px;
    line-height: 30px;
    text-align: center;
    padding: 0px 5px;
    border: 1px solid #ddd;
    margin: 5px;
    box-sizing: border-box;
    background:#fff;
}

.pages .page span {
    background: #0079f0;
    color: #fff;
}

.pages .page a:hover {
    background: #f8f8f8;
    color: #0079f0;
    border-color: #0079f0;
}