@import url("../css/bootstrap.min.css");
@import url("../css/common.css");
@import url("../css/iconfont.css");
@import url("../css/animate.css");
@import url("../css/slick.css");
/*@import url("../css/select.css");*/

/* 顶部logo及搜索框 */

/* .fixedhead {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9999;
	animation: sticky 1.2s;

} */
.headbox {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    animation: sticky ease-out 0.8s;
}

@-webkit-keyframes sticky {
    0% {
        top: -200px;
    }

    100% {
        top: 0;
    }
}

@keyframes sticky {
    0% {
        top: -200px;
    }

    100% {
        top: 0;
    }
}

.topheaderbox {
    height: 112px;
}

.defult_nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.index_nav {
    background: rgba(0, 0, 0, 0.35);
}

.index_nav .logobox {
    width: 194px;
    height: 58px;
    margin-top: 26px;
    background: url(../images/LFlogo_white.png) no-repeat left center;
}

.defult_nav .logobox {
    width: 202px;
    height: 64px;
    margin-top: 26px;
    background: url(../images/LFlogo_black.png) no-repeat left center;
}

.none_search {
    text-align: center;
    width: 100%;
}

.none_search h4 {
    font-size: 20px
}

/* 菜单 */
.index_nav .topheaderright {
    width: calc(100% - 194px);
    height: 112px;
}

.defult_nav .topheaderright {
    width: calc(100% - 202px);
    height: 112px;
}

.phonenumber {
    text-align: right;
    color: #84a2e2;
    font-size: 14px;
    /* margin-bottom: 16px; */
    height: 60px;
    padding-top: 10px;
}

.defult_nav .phonenumber {
    color: #1366df
}

.phonenumber b {
    font-size: 24px;
    padding-left: 10px;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif
}

.phonenumber i {
    font-size: 26px;
    padding-right: 6px;
    vertical-align: middle;
}

.nav_menu {
    height: 52px;
    text-align: right;
    /* text-transform: capitalize;
	display: inline-block;
	display: flex;
	display: -webkit-flex;
	display: -ms-flexbox;
	flex-wrap: wrap;
	justify-content: center; */
}

.nav_menu-item {
    display: inline-block;
    height: 52px;
    /* position: relative;
	-webkit-box-flex: 1; */
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* -moz-box-flex: 1; */
    /* OLD - Firefox 19- */
    /* -webkit-flex: 1; */
    /* Chrome */
    /* -ms-flex: 1; */
    /* IE 10 */
    padding-left: 50px;
}

.nav_menu-item .one {
    display: block;
    width: 100%;
    height: 100%;
    text-align: right;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    position: relative;
}

.index_nav .nav_menu-item .one {
    color: #fff
}



.index_nav .nav_menu-item .one:after {
    position: absolute;
    content: " ";
    left: 0;
    right: 0;
    bottom: 0px;
    width: 0;
    height: 3px;
    background: #2c66da;
    background: var(--primairy-color);
    margin: 0 auto;
    -moz-transition: all 400ms ease-out 0s;
    -webkit-transition: all 400ms ease-out 0s;
    -ms-transition: all 400ms ease-out 0s;
    -o-transition: all 400ms ease-out 0s;
    transition: all 400ms ease-out 0s;
    z-index: 10000;
}

.index_nav .nav_menu-item .active:after {
    width:80%;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    animation-delay: 0.3s
}

.index_nav .nav_menu-item .one:hover:after {
    width: 100%;
}



.defult_nav .nav_menu-item .one {
    color: #303133;
    color: var(--primary-text);
    position: relative;
}

.defult_nav .nav_menu-item .one:after {
    position: absolute;
    content: " ";
    left: 0;
    right: 0;
    bottom: 0px;
    width: 0;
    height: 3px;
    background: #2c66da;
    background: var(--primairy-color);
    margin: 0 auto;
    -moz-transition: all 400ms ease-out 0s;
    -webkit-transition: all 400ms ease-out 0s;
    -ms-transition: all 400ms ease-out 0s;
    -o-transition: all 400ms ease-out 0s;
    transition: all 400ms ease-out 0s;
    z-index: 10000;
}

.defult_nav .nav_menu-item .active:after {
    width: 80%;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    animation-delay: 0.3s
}

.defult_nav .nav_menu-item .one:hover:after {
    width: 80%;
}

.defult_nav .currentli .one {
    background: #2c66da;
    background: var(--primairy-color);
    color: #fff;
}

/* 二级菜单 */
.posnav {
    position: fixed;
    top: 148px;
    left: 0;
    width: 100%;
    height: 328px;
    visibility: hidden;
    overflow: hidden;
    box-sizing: border-box;
    background: #fff;
    transform-origin: 50% 0%;
    /* transform: perspective(1920px) rotateX(-80deg); */
    /* transform: perspective(1920px) rotateX(-0deg); */
    opacity: 0;
    display: none;
    transition: all 0.6s;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.06);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.headbox .nav_menu-item:hover .posnav {
    z-index: 11;
    visibility: visible;
    transform: perspective(1920px) rotateX(-0deg);
    height: 328px;
    opacity: 1;
    display: block;

}

.posnav .nextbox {
    position: relative;
    width: 960px;
}

.posnav .sub_menu {
    margin-top: 32px;
    width: 360px;
    overflow: hidden;
    max-width: 50%;
}

.posnav .sub_menu li {
    float: left;
    width: 50%;
}

.posnav .sub_menu li a {
    position: relative;
    display: block;
    padding-left: 10px;
    line-height: 44px;
    font-size: 15px;
    color: #333;
    text-align: left;
    font-weight: 600
}

.posnav .sub_menu a::after {
    transition: all 0.5s;
    position: absolute;
    left: 0;
    top: 15px;
    width: 2px;
    height: 0px;
    background: #2c66da;
    background: var(--primairy-color);
    content: "";
}

.posnav .sub_menu a:hover {
    color: #2c66da;
    color: var(--primairy-color);
    background: none
}

.posnav .sub_menu a:hover::after {
    transition: all 0.5s;
    height: 15px;
}

.posnav .nextbox .img_box {
    transition: all 0.5s;
    position: relative;
    z-index: 3;
    margin-top: 40px;
    width: 46%;
    height: 217px;
}

.posnav .nextbox .img_box span {
    display: block;
    width: 100%;
    height: 100%;
}

/*banner*/

#full-screen-slider {
    width: 100%;
    height: 758px;
    /* margin-top: 148px; */
    /*float: left;*/
    position: relative
}

#slides {
    display: block;
    width: 100%;
    height: 758px;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

#slides li {
    display: block;
    cursor: pointer;
    width: 100%;
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-size: cover;
}

#slides li .slide_text {
    display: block;
    margin: 0 auto;
    padding-top: 18%;
    text-align: left;
}

#slides li .slide_text h2 {
    color: #fff;
    font-size: 60px;
    line-height: 62px;
    font-weight: 900;
    margin-bottom: 30px;
    animation: banTxt_fadeInLeft 1.2s;



}

#slides li .slide2_text h2 {
    font-size: 72px;
    -webkit-text-shadow: 0px 8px 15px #0323f7;
    -moz-text-shadow: 0px 8px 15px #0323f7;
    -o-text-shadow: 0px 8px 15px #0323f7;
    text-shadow: 0px 8px 15px #0323f7;
}

#slides li .slide_text p {

    color: #fff;
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 36px;
    animation: banTxt_fadeInLeft 1.2s;


}

#slides li .slide2_text p {
    font-size: 22px;
    -webkit-text-shadow: 0px 8px 15px #0323f7;
    -moz-text-shadow: 0px 8px 15px #0323f7;
    -o-text-shadow: 0px 8px 15px #0323f7;
    text-shadow: 0px 8px 15px #0323f7;
}

#slides .slide1 .slide_text a {
    padding: 2px 40px;
    background: #2c66da;
    background: var(--primairy-color);
    display: inline-block;
    color: #fff;
    animation: banTxt_fadeInLeft 1.2s;
    margin-bottom: 30px;
    font-size: 18px;
}

#slides .slide1 .slide_text p {
    font-size: 24px;
    letter-spacing: 2px;
}


#slides li .slide_text .toptitle{
    font-size: 36px;
    animation: banTxt_fadeInLeft 1.2s;
    margin-bottom: 50px;
}
#slides li .slide_text .toptitle span{
    display: inline-block;
    padding: 3px 10px;
    background: #fff;
    color: #5317dd;
    border-radius: 4px;
    margin-left: 10px;
    font-size: 30px;
    font-weight: 600
}
#slides li .slide4_text h2{
    color: #f7f410;
    font-size: 88px;
    line-height: 1;
    font-style: italic;
    margin-bottom: 36px;
    font-weight: bolder
}




#bannerpagination {
    display: block;
    list-style: none;
    position: absolute;
    left: 48%;
    top: 214px;
    z-index: 9900;
    padding: 5px 15px 5px 0;
    margin: 0
}

#bannerpagination li {
    display: block;
    list-style: none;
    width: 10px;
    height: 10px;
    float: left;
    margin-left: 15px;
    border-radius: 5px;
    background: #FFF
}

#bannerpagination li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    text-indent: -9999px;
}

#bannerpagination li.current {
    background: #2c66da;
    background: var(--primairy-color)
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.banner-section {
    position: relative;
}

.home-carousel {
    position: relative;
}

.home-carousel .slide-item {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 200px 0px 200px 0px;
}



@keyframes banTxt_fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(200px, 0, 0);
        transform: translate3d(200px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes banTxt_fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(200px, 0, 0);
        transform: translate3d(200px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* 首页主要模块 */
.commonbox {
    padding: 60px 0;
}

.whatwedo {
    background: #fff;
}

.index_mktitle {
    text-align: center;
    margin-bottom: 30px;
}

.index_mktitle h1 {
    font-weight: 600;
    font-size: 30px;
    color: #313131;
    color: var(--primairy-text);
    margin-bottom: 24px;
}

.index_mktitle p {
    width: 80%;
    margin: 0 auto;
    line-height: 30px;
}

.whatwedo .ro3,
.whatwedo .ro2 {
    height: 208px;
    position: relative;
}

.whatwedo .ro1 {
    height: 446px;
    position: relative;

}

.whatwedo .item {
    overflow: hidden;
    cursor: pointer;
}

.whatwedo .item img {
    display: block;
    /* width: 100%; */
    height: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.whatwedo .item:hover img {
    transform: scale(1.1);
}

.whatwedo .zhezhao {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 0 20px;
}

.whatwedo .iconbox span {
    display: block;
    background: linear-gradient(135deg, #3b8ff0, #2757e8);
    border-radius: 50%;

}

.whatwedo .iconbox span i {
    color: #c2d6fa;
}

.whatwedo .ro1 .iconbox {
    height: 50%;
    margin-bottom: 30px;
}

.whatwedo .ro1 .iconbox span {
    line-height: 100%;
    width: 120px;
    height: 120px;

    text-align: center;
    vertical-align: middle;
    transform: translateY(60%);

}

.whatwedo .ro1 .iconbox span i {

    font-size: 74px;
    line-height: 120px;

}

.whatwedo .textbox h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.whatwedo .textbox p {
    color: #fff;
    font-size: 14px;
    line-height: 26px;
}

.whatwedo .ro2 .iconbox {
    height: 100%;
    margin-right: 30px;
    float: left;
    position: relative;
    width: 90px;

}

.whatwedo .ro2 .iconbox span {

    width: 82px;
    width: 82px;

    text-align: center;
    position: absolute;
    top: 50%;
    /*偏移*/
    transform: translateY(-50%);

}

.whatwedo .ro2 .iconbox span i {

    font-size: 56px;
    line-height: 82px;

}

.whatwedo .ro2 .textbox {
    float: left;
    width: calc(100% - 120px);
    margin-top: 50px;
}

.whatwedo .ro3 .iconbox {
    height: 50%;
    margin-bottom: 14px;
}

.whatwedo .ro3 .iconbox span {
    line-height: 100%;
    width: 82px;
    width: 82px;

    text-align: center;
    vertical-align: middle;
    transform: translateY(20%);

}

.whatwedo .ro3 .iconbox span i {

    font-size: 56px;
    line-height: 82px;

}

.whatwedo .ro3 .textbox h3 {
    margin-bottom: 10px;
    font-size: 20px;
    margin-top: 12px;
}

.whatwedo .ro3 .textbox p {
    line-height: 22px;
}

/* 小屏幕小展示 */
.whatwedoxsbox .iconbox {
    margin-bottom: 16px;
    text-align: center;
}

.whatwedoxsbox .iconbox span {
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    text-align: center;
}

.whatwedoxsbox .iconbox span i {
    color: #c2d6fa;
    font-size: 44px;
    line-height: 80px;
}

.whatwedoxsbox .textbox h3 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #313133;
    text-align: center
}

.whatwedoxsbox .textbox p {
    font-size: 12px;
    line-height: 22px;
    text-align: center;
    color: #313133;
}

/* 首页产品列表 */
.productbox {

    background: #f8fafc url(../images/section2-bg.png) no-repeat center;
    background-size: 100% 50%
}

.productbox .item {
    overflow: hidden;
    margin-bottom: 30px;
    background: #fff;
    background-image: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    height: 210px;

    cursor: pointer;
    -moz-transition: all 300ms ease-out 0s;
    -webkit-transition: all 300ms ease-out 0s;
    -ms-transition: all 300ms ease-out 0s;
    -o-transition: all 300ms ease-out 0s;
    transition: all 300ms ease-out 0s;

}

.productbox .item .item-icon {
    display: block;
    margin: 16px auto;
    margin-top: 26px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    -ms-transition: all 0.6s ease-out 0s;
    -o-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
}

.productbox .item .item-icon i {
    font-size: 56px;

    color: #1147f6;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;

}

.productbox .item h2 {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;

}

.productbox .item a {
    display: block;
    margin: 0 auto;
    width: 40%;
    border: 1px solid #fff;
    text-align: center;
    height: 30px;
    color: #fff;
    font-size: 14px;
    visibility: hidden;
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    -ms-transition: all 0.6s ease-out 0s;
    -o-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
}

.productbox .item:hover {
    background: url(../images/productbg.jpg) no-repeat center;
    background-size: cover;
    -moz-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);

}

.productbox .item:hover .item-icon {
    background: rgba(255, 255, 255, .9);
    /* animation: pulse 0.3s ease-in-out 0.3s; */
}

.productbox .item:hover .item-icon i {
    font-size: 46px;
}

.productbox .item:hover h2 {
    color: #fff;
}

.productbox .item:hover a {
    visibility: visible;
    width: 60%;
}


.productbox .productmore {
    display: block;
    margin: 0px auto;
    margin-top: 20px;
    width: 260px;
    height: 50px;
    border: 1px solid #ccc;
    color: #303133;
    text-align: center;
    line-height: 50px;
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    -ms-transition: all 0.6s ease-out 0s;
    -o-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
    font-size: 14px;
}

.productbox .productmore:hover {
    width: 280px;
    color: #2c66da;
    color: var(--primairy-color);
    border: 1px solid #2c66da;
    border: 1px solid var(--primairy-color);
}

/* 滚动案例 */
.casebox {
    background: url(../images/mkbg_02.jpg) no-repeat center;
    background-size: cover;

}

.casebox .index_mktitle h1,
.casebox .index_mktitle p {
    color: #fff;
}

.explore-project-active .slick-dots {
    position: absolute;
    left: 50%;
    bottom: -43px;
    transform: translateX(-50%);
}

.explore-project-active .slick-dots li {
    display: inline-block;
}

.explore-project-active .slick-dots li button {
    height: 11px;
    width: 11px;
    border: 0;
    background: #e9e9ee;
    border-radius: 50%;
    font-size: 0;
    margin: 0 3px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.explore-project-active .slick-dots li.slick-active button {
    height: 15px;
    width: 15px;
    background: #2c66da;
    background: var(--primairy-color);
}

.explore-projects-item {
    margin-bottom: 30px;
    background: #fff
}

.explore-projects-item .explore-projects-content {
    padding: 20px;
}

.explore-projects-item .explore-projects-thumb {
    position: relative;
    overflow: hidden;
}

.explore-projects-item .explore-projects-thumb a {
    display: block;
    position: absolute;
    right: 0px;
    left: 0;
    bottom: 0px;
    height: 64px;
    width: 100%;
    padding-left: 10px;
    line-height: 64px;

    background: rgba(0, 0, 0, 0.5)
}

.explore-projects-item .explore-projects-thumb a img {
    width: auto;
    display: inline-block;
}

.explore-projects-item .explore-projects-thumb img {
    width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.explore-projects-item:hover .explore-projects-thumb img {
    transform: scale(1.1);
}

.explore-projects-item:hover .explore-projects-thumb a img {
    transform: scale(1);
}

.explore-projects-item .explore-projects-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

}

.explore-projects-item .explore-projects-content p {
    font-size: 14px;
    line-height: 26px;
    height:78px;
    color: #666666;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* 我们的客户 */
.customerbox {
    background: #fff;
}

.customerbox .item {
    margin-bottom: 30px;
    text-align: center
}

.customerbox .item img {
    display: inline-block;
    width: 80%;
    max-width: 100%;
}

/* 首页公司简介 */
.index_gsjj {

    background: #f8fafc;
}

.index_gsjj .gsjj_info {
    padding-left: 30px;
}

.index_gsjj .gsjj_info .textbox h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.index_gsjj .gsjj_info .textbox h2 span {
    color: #2c66da;
    color: var(--primairy-color);
}

.index_gsjj .gsjj_info .textbox h2::after {
    position: absolute;
    content: " ";
    width: 120px;
    height: 1px;
    background: var(--primairy-color);
    left: 0;
    bottom: 0px;
}

.index_gsjj .gsjj_info .textbox p {
    margin-bottom: 20px;
    line-height: 30px;
    font-size: 15px;
}

.index_gsjj .gsjj_info .textbox a {
    width: 180px;
    border: 1px solid #2c66da;
    border: 1px solid var(--primairy-color);
    color: #2c66da;
    color: var(--primairy-color);
    margin-bottom: 40px;
    border-radius: 2px;
    font-size: 14px;
}

.index_gsjj .databox {
    background: #fff;

    height: 140px;
    margin-bottom: 30px;
    margin-left: -120px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06)
}

.index_gsjj .databox .fl {
    position: relative;
    width: 33.3%
}

/* .index_gsjj .databox .fl::after {
	position: absolute;
	content: " ";
	right: 0px;
	top: 26px;
	height: 80px;
	width: 1px;
	background: #ddd;
}

.index_gsjj .databox .fl:last-child::after {
	display: none
} */

.index_gsjj .databox .fl .number {
    margin: 0 auto;

    overflow: hidden;
    color: #282828;
    text-align: center;
    margin-top: 26px;
    position: relative;
}

.index_gsjj .databox .fl .number i {

    font-size: 40px;
    font-weight: 900;
    font-family: "Arial";
    font-style: normal;
}

.index_gsjj .databox .fl .number span {
    display: inline-block;
    margin: 12px 0 0 3px;
    width: 18px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    position: absolute;
    right: 20px;
    top: 0px;
}

.index_gsjj .databox .fl p {
    font-size: 16px;
    color: #666;
    text-align: center;
}

.index_gsjj .gsjj_vidio {
    overflow: hidden;
    height: 520px;
    position: relative;
    cursor: pointer;
    margin-right: 30px;

}

.index_gsjj .gsjj_vidio img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;

}


/* 首页公司新闻 */

/*-------------- [_Footer] ---------------*/
/*========================================*/
.footer {
    clear: both;
    margin-top: -520px;
    position: relative;

}

.footer-main-area {
    background: #29292c;
    padding: 60px 0 60px;
    font-size: 14px
}

.footer-bottom-area {
    background: #29292c;
    padding: 20px 0;
    border-top: 1px solid #505050;
}

.footer-widget {
    /* margin-bottom: 40px; */
    /*display: inline-block;*/
    font-size: 15px;
}

.footer-widget .erwm {
    float: left;
    text-align: center;
}

.footer-widget .erwm img {
    display: block;
    width: 152px;
    margin-top: 20px;
    padding-bottom: 10px;
}

.widget-title {
    font-size: 18px;
    position: relative;
}

.widget-title:after {
    position: absolute;
    content: "";
    height: 3px;
    width: 38px;
    left: 2px;
    bottom: -15px;
    background: #2c66da !important;
    border-radius: 6px;
}

.widget-title:before {
    position: absolute;
    content: "";
    height: 1px;
    width: 80%;
    left: 2px;
    bottom: -15px;
    background: #434348 !important;
    border-radius: 6px;
}

.footer-widget-list li {
    display: inherit;
    margin-bottom: 14px;
}

.footer-widget-list li a {
    color: #c0c4cc;
    position: relative;
    /*padding-left: 20px;*/
    font-size: 15px;
}

/*.footer-widget-list li a:before {
	position: absolute;
	content: "\e745";
	left: 0px;
	top: 0px;
	font-family: "iconfont";
	font-weight: 900;
}*/

.footer-widget-list li a:hover {
    color: #74a2ff;

}

/* 滚动加载动效延迟效果 先隐藏，滚动时加载出来*/

/* .index_product,
.hot_product .container,
.index_technology,
.index_news,
.index_gsjj .left,
.index_gsjj .right,
.index_news,

.map_market .left,
.map_market .right {
	visibility: hidden;
} */

.active_animate .index_mktitle {
    /* transition: all 0.7s 0.3s; */
    visibility: visible;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}


.index_product.active_animate .product_box {
    visibility: visible;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.hot_product.active_animate .explore-project-active {
    visibility: visible;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.map_market.active_animate .left {
    visibility: visible;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0.3s;
    -webkit-animation-duration: 1.1s;
    animation-duration: 1.1s;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

.map_market.active_animate .right {
    visibility: visible;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0.5s;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

.index_technology.active_animate .explore-technology-active {
    visibility: visible;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.index_gsjj.active_animate .left {
    visibility: visible;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0.3s;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

.index_gsjj.active_animate .right {
    visibility: visible;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0.5s;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

.index_news.active_animate .explore-news-active {
    visibility: visible;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.index_news.active_animate .morebtn {
    visibility: visible;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.footer.active_animate .footer-main-area {
    visibility: visible;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

/* 二级导航 */

.wrapper03 {
    position: relative;
    height: 90px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    animation-delay: 0.2s
}

.wrapper03 .scroller {
    position: absolute;

}


.wrapper03 .scroller li {
    height: 90px;
    color: #333;
    float: left;
    line-height: 90px;
    transition: all 0.5s;
    font-size: 18px;
    text-align: center;

}

.wrapper03 .scroller li a {
    color: #333;
    display: block;
    margin: 0 .3rem;
    padding: 0 .1rem;
    font-weight: 600
}

.wrapper03 .scroller li.cur {
    background: url(../images/cur_solution.jpg) no-repeat center;
    background-size: cover;
}

.wrapper03 .scroller li.cur a {
    font-weight: 600;
    color: #fff;

}

.dingwei a {
    color: #666;
    font-size: 15px;
    line-height: 50px;
}

.dingwei a:hover {
    color: #2c66da;
    color: var(--primairy-color)
}

.dingwei i {
    color: #666;
    font-size: 16px;
}

/* 解决方案——基建管控页面 */
.subbanner {
    height: 620px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 112px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.subbanner .zhezhao {
    background: rgba(0, 0, 0, 0.37);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.jjgk_bg {
    background: url(../images/jjgl_bg.jpg)
}

.subbanner .zhezhao .sloganbox {
    color: #fff;

    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;

}

.subbanner .zhezhao .sloganbox h1 {
    font-size: 60px;
    letter-spacing: 2px;
    margin-top: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;

}

.subbanner .zhezhao .sloganbox p {
    font-size: 18px;
    margin-top: 20px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    animation-delay: 0.2s
}

.subbanner .sloganbox {
    margin-top: 20%;
}

.subbanner .zhezhao .sloganbox {
    color: #e4eeff;
}


.Solutionbox {
    border-top: 1px solid #ddd;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    animation-delay: 0.2s
}

.Solutionbox .Solutioncontent {
    padding: 40px 0;
    border-bottom: 1px solid #ddd;
}

.Solutionbox .Solutioncontent .title {
    margin-bottom: 20px;
    font-size: 24px;
    position: relative;
    padding-bottom: 20px;
    font-weight: 600
}

.Solutionbox .Solutioncontent .title::after {
    position: absolute;
    content: " ";
    width: 120px;
    height: 1px;
    background: var(--primairy-color);
    left: 0;
    bottom: 0px;
}

.Solutionbox .Solutioncontent .detail p {
    font-size: 15px;
    line-height: 26px;
}

.Solutionbox .jjgkts {
    margin-top: 30px;

}

.Solutionbox .jjgkts .item {
    background: #f1f5ff;
    overflow: hidden;
    height: 210px;
    padding: 30px 20px;
}

.Solutionbox .jjgkts .item .iconbox {
    float: left;
    margin-right: 30px;
}

.Solutionbox .jjgkts .item .iconbox i {
    color: #1762ec;
    font-size: 66px;
    width: 66px;
}

.Solutionbox .jjgkts .item .textbox {
    float: left;
    width: calc(100% - 106px)
}

.Solutionbox .jjgkts .item .textbox h3 {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 16px;
}

.Solutionbox .jjgkts .item .textbox p {
    font-size: 16px;
    line-height: 30px;
    color: #666;
}

.productlist {
    padding: 30px 0px;
}

.productlist .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.productlist .jj_product a {
    display: block;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    animation: fadeInUp ease-in 0.6s;
    -webkit-animation: fadeInUp ease-in 0.6s;
    -ms-animation: fadeInUp ease-in 0.6s;
    -moz-animation: fadeInUp ease-in 0.6s;
    -o-animation: fadeInUp ease-in 0.6s;
    animation-delay: 0.2s;
    margin-bottom: 20px;
    padding-bottom: 26px;
    position: relative;
}

.productlist .jj_product a .imgbox {
    height: 200px;
    overflow: hidden;
    transition: all 0.5s;
}

.productlist .jj_product a .imgbox img {
    height: 100%;
    width: 100%;
    max-width: 100%;
    transition: all 0.5s;
}

.productlist .jj_product a .imgbox:hover img {
    transform: scale(1.1)
}

.productlist .jj_product h3 {
    font-size: 16px;
    font-weight: 600;
    color: #313131;
    margin: 0 20px;
    margin-top: 20px;
}

.productlist .jj_product h3 i {
    color: #175ddb;
    color: var(--primairy-color);
    display: block;
    visibility: hidden;

}

.productlist .jj_product a::after {
    transition: all 0.5s;
    position: absolute;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #175ddb;
    background: var(--primairy-color);
    content: " ";
}

.productlist .jj_product a:hover::after {
    width: 100%
}

.productlist .jj_product a:hover h3 i {
    visibility: visible
}

/* 解决方案——智慧工厂 */
.factory_bg {
    background: url(../images/factory_bg.jpg) no-repeat center;
    background-size: cover;
}

.factory_bg .zhezhao {
    background: none;
}

.factory_bg .zhezhao .sloganbox h1 {
    -webkit-text-shadow: 0px 8px 15px #0323f7;
    -moz-text-shadow: 0px 8px 15px #0323f7;
    -o-text-shadow: 0px 8px 15px #0323f7;
    text-shadow: 0px 8px 15px #0323f7;
    margin-bottom: 30px;

}

.Solutioncontent .factory_xq img {
    width: 100%
}

.factory_productbox {
    margin-bottom: 50px;
}

.factory_productbox .factory_product .item {
    display: block;
    height: 320px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin-bottom: 20px;
}

.factory_productbox .factory_product .item img {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;

}

.factory_productbox .factory_product .item:hover {
    transform: translateY(-10px);
}

.factory_productbox .factory_product .item:hover img {
    transform: scale(1.1);
}

.factory_productbox .factory_product .item .zhezhao {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    padding: 0 20px;
}

.factory_productbox .factory_product .item .textbox {
    margin-top: 56px;
    color: #fff;
}

.factory_productbox .factory_product .item .textbox h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600
}

.factory_productbox .factory_product .item .textbox p {
    font-size: 14px;
    line-height: 26px;
}

.factory_productbox .factory_product .item ul {
    overflow: hidden;
    margin-top: 36px;
}

.factory_productbox .factory_product .item ul li {
    float: left;
    width: 50%;
    font-size: 14px;
    padding: 14px 0px;
    color: #fff;
    padding-left: 16px;
    position: relative;
}

.factory_productbox .factory_product .item ul li::before {
    display: block;
    content: "";

    position: absolute;
    left: 0;
    top: 21px;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%
}



/* 解决方案——电商平台 */
.emall_bg {
    background: url(../images/emall_bg.jpg) no-repeat center;
    background-size: cover;
}

.emall_bg .zhezhao {
    background: none;
}

.emall_bg .zhezhao .sloganbox h1 {
    font-size: 40px;
}

.Solutioncontent .emall_xq .item {
    height: 200px;
    position: relative;

    overflow: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin-bottom: 20px;
}

.Solutioncontent .emall_xq .item img {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;

}

.Solutioncontent .emall_xq .item .zhezhao {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    padding: 0 20px;
}

.Solutioncontent .emall_xq .item .textbox {
    margin-top: 56px;
    color: #fff;
}

.Solutioncontent .emall_xq .item .textbox h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600
}

.Solutioncontent .emall_xq .item .textbox p {
    font-size: 14px;
    line-height: 26px;
}

.emall_productbox .emall_product {
    border: 1px solid #ddd;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.emall_productbox .emall_product .imgbox {
    height: 300px;
    width: 420px;
}

.emall_productbox .emall_product .imgbox img {
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.emall_productbox .emall_product .textbox {
    width: calc(100% - 420px);
    padding: 30px;

}

.emall_productbox .emall_product .textbox h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 26px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.emall_productbox .emall_product .textbox p {
    line-height: 26px;
    font-size: 14px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.emall_productbox .emall_product .textbox a {
    display: block;
    color: #313131;
}

.emall_productbox .emall_product .textbox .morebtn {

    width: 142px;
    height: 46px;
    text-align: center;
    margin-top: 26px;
    line-height: 46px;
    color: #fff;
    font-size: 14px;
    background: linear-gradient(45deg, #3c90f0, #2654e7);
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    -ms-transition: all 0.6s ease-out 0s;
    -o-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
}

.emall_productbox .emall_product .textbox .morebtn:hover {
    width: 176px;
}

/* 在线培训平台 */
.zxpx_bg {
    background: url(../images/zxpx_bg_03.jpg) no-repeat center;
    background-size: cover;
}

.zxpx_bg .zhezhao {
    background: none
}

.zxpx_xq .item {
    background: #fff;
    box-shadow: 0 2px 14px rgba(16, 76, 204, 0.1);
    height: 240px;
    padding: 20px;
    margin-bottom: 26px;
}

.zxpx_xq .item .item-icon {
    display: block;
    margin: 16px auto;

    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    background: url(../images/zxpx_item-icon.png) no-repeat center;
}

.zxpx_xq .item .item-icon i {
    font-size: 48px;
    color: #1147f6;
}

.zxpx_xq .item h2 {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;

}

.zxpx_xq .item p {
    color: #666666;
    font-size: 14px;
    text-align: center;
    line-height: 22px;
}

/* 解决方案——软件定制 */
.customized_bg {
    background: url(../images/customized_bg_02.jpg) no-repeat center;
    background-size: cover;
}

.customized_bg .sloganbox h2 {
    color: #09fcff;
    font-size: 50px;
    font-weight: 600;
}

.customized_bg .sloganbox h2 span {
    font-size: 18px;
    color: #fff;
    padding-left: 20px;
    font-weight: normal
}

.customized_bg .sloganbox h3 {
    font-size: 68px;
    font-weight: 600;
    margin-top: 30px;
}


/* 解决方案——软件定制 */
.customized_xq {
    background: #f8fafc url(../images/section2-bg.png) no-repeat center;
    background-size: 100% 50%
}

.customized_xq .index_mktitle h1 {
    font-size: 24px;
    margin-bottom: 16px;
}

.customized_xq .index_mktitle p {
    font-size: 16px;
    color: #747474;
}

.customized_xq .item {
    overflow: hidden;
    padding: 0 20px;
    background: #fff;
    background-image: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);

}

.customized_xq .textbox h3 {
    color: #313131;
    font-size: 18px;
}

.customized_xq .textbox p {
    color: #666;
}

.customized_xq .iconbox span {
    background: url(../images/zxpx_item-icon.png) no-repeat center;
    background-size: cover;
    border-radius: 0;
}

.customized_xq .iconbox span i {
    color: #1366df;
    padding-right: 6px;
}

.customized_xq .ro1 .iconbox span i {
    font-size: 62px;
}

.customized_xq .ro1 {
    height: 332px;
}

.customized_xq .ro2 {
    height: 130px;
}

.customized_xq .ro2 .textbox h3 {
    margin-bottom: 10px;
}

.customized_xq .ro3 {
    height: 170px;
}

.customized_xq .ro2 .textbox {
    margin-top: 20px;
}

.customized_xq .ro1 .iconbox span {
    transform: translateY(50%);
}

.customized_xq .ro2 .iconbox span i,
.customized_xq .ro3 .iconbox span i {
    font-size: 38px;
}

.customized_xq .ro2 .iconbox span,
.customized_xq .ro3 .iconbox span {
    width: 72px;
    height: 72px;
}

.customized_ys {
    background: url(../images/customized_ys_bg.jpg) no-repeat center;
    background-size: cover;
}

.customized_ys .index_mktitle {
    color: #fff;
}

.customized_ys .index_mktitle h1 {
    font-size: 24px;
    margin-bottom: 16px
}

.customized_ys .index_mktitle p {
    font-size: 16px;
}

.customized_ys_xq ul li {
    width: 20%;
    display: block;
    float: left;
    padding: 20px 30px;
    color: #fff;
    position: relative;
}

.customized_ys_xq ul li i {
    display: block;
    text-align: center;
    font-size: 58px;
    margin-bottom: 20px;
    background-image: -webkit-linear-gradient(top, #00c6f8, #1f5ae5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.customized_ys_xq ul li h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.customized_ys_xq ul li p {
    font-size: 13px;
    line-height: 26px;
    /* opacity: 0.85; */
}

.customized_ys_xq ul li::after {
    position: absolute;
    content: " ";
    right: 0px;
    top: 20px;
    bottom: 0px;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    width: 2px;
}

.customized_ys_xq ul li:last-child::after {
    display: none
}

.customized_lc .index_mktitle h1 {
    font-size: 24px;
    margin-bottom: 16px
}

.customized_lc .index_mktitle p {
    font-size: 16px;
}


.customized_lc .development {
    position: relative;
    height: 260px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.customized_lc .development .scroller {
    position: absolute;
}

.customized_lc .development .scroller li {
    height: 260px;
    color: #333;
    float: left;
    width: 200px !important;
    transition: all 0.5s;
    font-size: 18px;
    text-align: center;
}

.customized_lc .development .scroller li a {
    display: block;
    padding: 20px;
    width: 100%;
    height: 100%;
    position: relative;
    color: #333;
    margin: 0px;
}

.customized_lc .development .scroller li a i {
    display: block;
    width: 50px;
    height: 50px;
    font-size: 22px;
    font-style: normal;
    color: #2d6cdf;
    color: var(--primairy-color);
    border: 1px solid #2d6cdf;
    border: 1px solid var(--primairy-color);
    background: #f1f6ff;
    border-radius: 50%;
    text-align: center;
    margin: 0 auto;
    line-height: 50px;
    margin-bottom: 16px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;

}

.customized_lc .development .scroller li a h2 {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    animation-delay: 0.2s;
}

.customized_lc .development .scroller li a p {
    font-size: 15px;
    line-height: 28px;
    color: #666;
    font-weight: normal;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
}

.customized_lc .development .scroller li.cur a {
    background: #fff;
}

/* .customized_lc .development .scroller li a::after{
	height: 5px;
	background: url(../images/icon_33.png);
}
.customized_lc .development .scroller li a:hover::after{
	transition: all 0.5s;
    width: 54px;
}
.customized_lc .development .scroller li.cur a::after{
	transition: all 0.5s;
    width: 54px;
} */

/* 解决方案——信息化咨询 */
.itconsulting_xq {
    margin-top: 40px;
}

.itconsulting_xq h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px
}

.itconsulting_xq ul li {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 28px;
    padding-left: 26px;
    position: relative;
}

.itconsulting_xq ul li::before {
    width: 10px;
    height: 10px;
    content: "";
    position: absolute;
    top: 10px;
    left: 0px;
    background: url(../images/li_icon_07.jpg) no-repeat center;
}

/* 解决方案——AI */
.AI_bg {
    background: url(../images/AI_bg.jpg) no-repeat center;
}

.AI_xq .item {
    height: 200px;
    background: #f1f5ff;
    box-shadow: none;

}

.AI_xq .item .item-icon {
    width: 82px;
    height: 82px;
    line-height: 82px;
    /* margin: 0 auto; */
    /* background: #2d6cdf;
    color: #fff; */
    background: #dee7ff;
    color: #fff;
    border-radius: 52%;
}

.AI_xq .item .item-icon i {
    font-size: 40px;
}


/* 客户案例展示列表 */

.case_mainbox {
    background: url(../images/news_pagebg.jpg) no-repeat top center;
    background-size: cover;
    padding: 40px 0px;
    margin-top: 112px;
}

.page_mian .page_title {
    text-align: center;
    font-size: 30px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    animation-delay: 0.2s;
}

.page_nav {
    width: 100%;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin: 30px 0px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    animation-delay: 0.2s;
}

.page_nav .wrapper04 {
    position: relative;
    height: 98px;
    width: 72%;
    overflow: hidden;
    margin: 0 auto;

}

.page_nav .wrapper04 .scroller {
    position: absolute;
    top: 30px;
}

.page_nav .wrapper04 .scroller li {
    height: 40px;
    color: #333;
    float: left;
    line-height: 40px;
    font-size: 18px;
    text-align: center
}

.page_nav .wrapper04 .scroller li a {
    color: #333;
    display: block;
    margin: 0 .3rem;
    padding: 0 .1rem;
    font-size: 18px;
}

.page_nav .wrapper04 .scroller li.cur {
    background: #2d6cdf;
    background: var(--primairy-color);
    border-radius: 20px
}

.page_nav .wrapper04 .scroller li.cur a {
    color: #fff;
}

.case_list .explore-projects-item .explore-projects-content h3 {
    margin: 0px;
    text-align: center
}

.case_list .explore-projects-item {
    background: none
}

/* 关于我们 */
.aboutus_bg {
    height: 524px;
    background: url(../images/about_us_bg.jpg) no-repeat center;
    background-size: cover;
}

.aboutus_bg .sloganbox h1 {
    -webkit-text-shadow: 0px 2px 0px #1f8887;
    -moz-text-shadow: 0px 2px 0px #1f8887;
    -o-text-shadow: 0px 2px 0px #1f8887;
    text-shadow: 0px 2px 0px #1f8887;
}

.aboutus_bg .sloganbox {
    margin-top: 16%;
}

.aboutus_bg .sloganbox p {
    display: inline-block;
    padding: 4px 40px;
    background: rgba(0, 95, 218, 0.58);
    border-radius: 50px;
    font-size: 24px;
}

.aboutus_zz {
    background: #f8fafc url(../images/section2-bg.png) no-repeat center;
    background-size: 100% 50%
}

.aboutus_zz .index_mktitle h1 {
    color: #313131;
}

.aboutus_zz .explore-projects-item {
    background: url(../images/zz_xkbg_03.jpg) no-repeat center;
    height: 398px;
    padding: 18px;
    text-align: center
}

.aboutus_zz .explore-projects-item .explore-projects-thumb {
    overflow: hidden;
}

.aboutus_zz .explore-projects-item img {
    margin: 0 auto;
    width: auto;
}

.aboutus_zz .explore-projects-item:hover img {
    transform: scale(1)
}

.aboutus_zz .slick-dots {
    display: none !important;
}



.advantage .advantagebox .item {
    padding: 0 30px;
    text-align: center;
    margin-bottom: 30px;
    height: 200px;
}

.advantage .advantagebox .item .item-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;

    color: #fff;
    border-radius: 50%;
}

.advantage .advantagebox .item .item-icon i {
    font-size: 42px;
}

.advantage .advantagebox .item h2 {
    font-size: 18px;
    font-weight: 600
}

.advantage .advantagebox .item p {
    font-size: 14px;
    line-height: 24px;
    color: #666;
}

.contactusbox {
    background: #f8f9fc;

}

.contactusbox .map {
    overflow: hidden;
    text-align: center;
    background: url(../images/map.png) no-repeat center;
    height: 406px;
    cursor: pointer;
}

.contactusbox .map img {
    display: inline-block;
    height: 100%
}

.contactusbox .addressbox {
    padding: 20px 0px;
    overflow: hidden;
}

.contactusbox .addressbox .item {
    height: 100px;
}

.contactusbox .addressbox .item p {
    font-weight: 600;
    font-size: 14px;
    line-height: 26px;
}

/* 新闻中心 */
.news_mainbox .page_nav .wrapper04 {
    width: 400px;
}

.newslist {
    padding: 0px;
}

.newslist .emall_product .textbox a span {
    font-size: 16px;
}

.newslist .emall_product .textbox p {

    -webkit-line-clamp: 3;
    line-clamp: 3;
    margin-bottom: 30px;

}

.newslist .emall_product .textbox {
    position: relative;
}

.newslist .emall_product .textbox .morebtn {
    position: absolute;
    right: 30px;
    bottom: 20px;
    height: 40px;
    line-height: 40px;
}

.newslist .emall_product {
    height: 260px;
}

.newslist .emall_product .imgbox {
    width: 360px;
    height: 260px;
}

.newslist .emall_product .textbox {
    width: calc(100% - 360px)
}

.newslist .emall_productbox {
    margin-bottom: 30px;
}

/* 服务支持 */
.support_bg {
    height: 440px;
    background: url(../images/support_bg_02.jpg) no-repeat center
}

.support_bg .sloganbox {
    margin-top: 14%;
}

.support_bg .zhezhao .sloganbox p {
    margin-top: 0px;
}

.support_bg .sloganbox p {
    background: none;
}

.support_bg .sloganbox h1 {
    -webkit-text-shadow: 0px 2px 0px #1447bb;
    -moz-text-shadow: 0px 2px 0px #1447bb;
    -o-text-shadow: 0px 2px 0px #1447bb;
    text-shadow: 0px 2px 0px #1447bb;
}

.support_lc .wrapper05 {
    position: relative;
    height: 98px;
    width: 48%;
    overflow: hidden;
    margin: 0 auto;

}

.support_lc .wrapper05 .scroller {
    position: absolute;
    top: 30px;
}

.support_lc .wrapper05 .scroller li {
    height: 40px;
    color: #333;
    float: left;
    line-height: 40px;
    font-size: 18px;
    text-align: center
}

.support_lc .wrapper05 .scroller li a {
    color: #333;
    display: block;
    margin: 0 .3rem;
    padding: 0 .1rem;
    font-size: 18px;
}

.support_lc .wrapper05 .scroller li.cur {
    background: #2d6cdf;
    background: var(--primairy-color);
    border-radius: 20px
}

.support_lc .wrapper05 .scroller li.cur a {
    color: #fff;
}


.support_content {
    overflow: hidden;
}

.support_content .ul .supportbox {
    display: none;
}

.support_content .ul .supportbox:first-child {
    display: block
}

.support_content .support_one {
    padding: 30px 0px;
    background: #f7f8fb;
}

.support_content .support_one .leftbox {
    margin-top: 30px;
    padding-left: 50px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0.3s;
    -webkit-animation-duration: 1.1s;
    animation-duration: 1.1s;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

.support_content .support_one .leftbox dl {
    padding-bottom: 30px;
    margin-bottom: 0px;
    position: relative;
}

.support_content .support_one .leftbox dl::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #ccc;
    left: 13px;
    top: 0px;
    bottom: 0px;
}

.support_content .support_one .leftbox dl:last-child::before {
    display: none
}

.support_content .support_one .leftbox dl dt {
    font-size: 18px;
    padding-left: 40px;
    position: relative;
    margin-bottom: 14px
}

.support_content .support_one .leftbox dl dt i {
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #eb6c62;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    text-align: center;
    line-height: 26px;
    left: 0;
    top: 0
}

.support_content .support_one .leftbox dl dd {
    padding-left: 40px;
    font-size: 15px;
}

.support_content .support_one .rightimg {
    text-align: right;
    line-height: 600px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0.5s;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

.support_content .support_one .rightimg img {
    display: inline-block;
    max-width: 100%;

}

.support_two_xq dl {
    overflow: hidden;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;

    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.support_two_xq p {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0.5s;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.support_two_xq dl dd {
    width: 20%;
    display: block;
    float: left;
    padding: 20px 0;
    padding-right: 20px;
    position: relative;

}

.support_two_xq dl dd div {
    padding: 16px;
    border: 1px solid #ddd
}

.support_two_xq dl dd i {
    display: block;
    text-align: center;
    font-size: 58px;
    margin-bottom: 20px;
    background-image: -webkit-linear-gradient(top, #00c6f8, #1f5ae5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.support_two_xq dl dd h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.support_two_xq dl dd p {
    font-size: 13px;
    line-height: 26px;
    opacity: 0.85;
}

.support_three,
.emall_productbox,
.case_box {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.support_three h2 {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 28px;

}

.support_three .support_three_xq {
    margin-bottom: 30px;
}

.support_three .support_three_xq h3 {
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #cee2ff;
    /* padding-bottom: 20px; */
    margin-bottom: 20px;
    color: #1366df;
    background: #f0f6ff;
    line-height: 48px;
    padding-left: 20px;
}

.support_three .support_three_xq p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 28px;
    padding-left: 26px;
    position: relative;
}

.support_three .support_three_xq p::before {
    width: 20px;
    height: 10px;
    content: "";
    position: absolute;
    top: 10px;
    left: 0px;
    background: url(../images/li_icon_07.jpg) no-repeat left 5px center;
}



/* 产品列表 */
.product_mainbox {
    background: url(../images/product_bg.jpg) no-repeat top center;
    background-size: cover;
}

.product_mainbox .page_title {
    color: #fff;
}

.product_mainbox .page_nav {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.product_mainbox .page_nav .wrapper04 .scroller li.cur {
    background: #1563ff;
}


.product_mainbox .page_nav .wrapper04 .scroller li a {
    color: #fff;
}

.product_list {
    background: none;
}

.product_list .item {
    height: 280px;
    padding: 20px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.product_list .item:hover {
    background: linear-gradient(135deg, #4f95ff, #255cfa);
}

.product_list .item .item-icon {
    margin-top: 16px;
    width: 60px;
    height: 60px;
    line-height: 60px;

}

.product_list .item h2 {
    margin-bottom: 20px;
    height: 44px;
}

.product_list .item a {
    margin-left: 0px;
}

.product_list .item .item-icon i {
    font-size: 46px;
}

.product_list .item p {
    font-size: 14px;
    line-height: 24px;
    height: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product_list .item:hover h2 {
    text-align: left
}

.product_list .item:hover p {
    display: none
}

.product_list .item:hover .item-icon {
    display: none;
}

.product_list .item .product_function {
    display: none;
    margin-bottom: 20px;
}

.product_list .item:hover .product_function {
    display: block
}

.product_list .item .product_function span {
    display: inline-block;
    position: relative;
    /* padding: 4px 10px; */
    /* border:1px solid #fff; */
    color: #fff;
    /* border-radius: 2px; */
    margin: 0 6px;
    line-height: 24px;
    padding-left: 8px;

}

.product_list .item .product_function span::before {
    position: absolute;
    content: "";
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #fff;
    top: 10px;
    left: 0;
}

/* 产品页 */
.product_web_content .index_mktitle h1 {
    font-size: 26px;
}

.product_bg {
    height: 400px;
}

.product_bg .sloganbox {
    margin-top: 12%;
}

.product_bg .zhezhao .sloganbox p {
    margin-top: 0px;
}

.product_bg .zhezhao .sloganbox h1 {
    font-size: 50px;
}

.product_bg .sloganbox p {
    background: none;
}

.product_bg .zhezhao {
    background: none;
}

.product_gs {
    width: 80%;
    margin: 0 auto;
    line-height: 30px;
    font-size: 16px;
    text-align: left;
}

.product_gs span {
    display: block;
    text-indent: 2em
}

.product_jz {
    background: url(../images/productcontent_bg2.jpg) no-repeat center;
    background-size: cover;
}

.product_jz .index_mktitle {
    color: #fff;
    margin-bottom: 40px;
}

.product_jzbox .item {
    background: #fff;
    padding: 20px;
    height: 280px;
    -moz-transition: all 300ms ease-out 0s;
    -webkit-transition: all 300ms ease-out 0s;
    -ms-transition: all 300ms ease-out 0s;
    -o-transition: all 300ms ease-out 0s;
    transition: all 300ms ease-out 0s;
    cursor: pointer;
}

.product_jzbox .item .item-icon {
    display: block;
    color: #a4a8b9;
    margin-bottom: 26px;
}

.product_jzbox .item .item-icon i {
    font-size: 40px;
}

.product_jzbox .product_jz_details dt {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
}

.product_jzbox .product_jz_details dd {
    font-size: 14px;
    margin-bottom: 0px;
    line-height: 26px;
}

.product_jzbox .item:hover {
    -moz-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);

}

.product_jzbox .item:hover .item-icon {
    color: #1366df
}

.support_content {
    overflow: hidden;
}

.support_content .ul .function_content {
    display: none;
}

.support_content .ul .function_content:first-child {
    display: block
}

/* 产品功能子菜单 */
.product_gn {
    background: #f3f6f8;
}

.fun_subnav,
.fun_menu {
    overflow: hidden;
}

.fun_subnav ul .fun_subbox {
    display: none;
}

.fun_subnav ul .fun_subbox:first-child {
    display: block
}

.function_content01 {
    margin-bottom: 100px;

}

.fun_tabbox {
    width: 100%;
    height: auto;
    padding-bottom: 45px;
    position: relative;
}

.function_content01 .fun_menu {
    width: 240px;
    min-height: 660px;
    padding: 13px 0px;
    background: #fff;
    /* position: absolute;
    top: 0;
    left: 0px;
    bottom: 10px; */
    float: left;
}

.fun_details {
    background: #fff;
    min-height: 468px;
    margin-left: 260px;
    padding-bottom: 50px;
}

.fun_menu .fun_nav {
    width: 40px;
    margin-left: 10px;
}

.fun_menu .fun_nav li {
    cursor: pointer;
    width: 38px;
    /* height: 50px; */
    background: #4e4e4e;
    margin-bottom: 5px;
    padding-bottom: 5px;
    text-align: center;
    color: #fff;
    position: relative;
    /* writing-mode: tb-rl; */
}

.fun_menu .fun_nav li span {
    display: block;
    height: 100%;
    width: 68%;
    margin: 0 auto;
    line-height: 15px;
    font-size: 13px;
    padding-top: 6px;
}

.fun_menu .fun_nav .curli {
    background: #1366df;
    background: var(--primairy-color);

}

.fun_menu .fun_nav .curli::after {
    content: "";
    position: absolute;
    top: 18px;
    right: -18px;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-left: 11px solid #1366df;
}

.fun_subnav {
    margin-left: 20px;
    /* width: calc(100% - 80px) */
}

.fun_subnav .fun_subbox dt {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #1366df;
    width: 100%;
    height: 40px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 14px;
}

.fun_subnav .fun_subbox dd {
    overflow: hidden;
    height: 30px;
    line-height: 30px;
    margin-bottom: 0px;
    font-size: 14px;
    padding-left: 18px;
    position: relative;
    cursor: pointer;
}

.fun_subnav .fun_subbox dd:hover {
    color: #1366df;
}

.fun_subnav .fun_subbox dd::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #333;
    top: 14px;
    left: 5px;
}

.fun_subnav .fun_subbox dd:hover::before {
    background: #1366df;
}

.fun_details {
    padding: 20px;
}

.fun_details .fun_detailsbox {
    display: none;
}

.fun_details .fun_detailsbox:first-child {
    display: block
}

.fun_detailsbox .menu_title {
    font-size: 18px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 16px;
    font-weight: 600;
    margin: 0;
    margin-top: 20px;
}

.fun_detailsbox .fun_details_menu {
    margin: 30px 0px;
}

.fun_detailsbox .fun_details_menu dt {
    font-size: 14px;
    margin-bottom: 16px;

}

.fun_detailsbox .fun_details_menu dl {
    width: 100%;
}

.fun_detailsbox .fun_details_menu dt span {
    display: inline-block;
    padding: 3px 20px;

    background: #d8e2f7;
    border-radius: 20px;
    color: #2c66da;
}

.fun_detailsbox .fun_details_menu dd {
    display: inline-block;
    width: 19%;
    margin-bottom: 10px;
    font-size: 14px;
    padding-left: 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow:ellipsis;

}


.fun_details .three_nav_box {
    display: none
}
.fun_detailsbox .fun_details_menu .pre_menubox .pre_menu{color: #2c66da;display: block;font-weight: 600;position: relative;margin-bottom: 16px;padding-left: 20px;}
.fun_detailsbox .fun_details_menu .pre_menubox .pre_menu::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #2c66da;
    top: 8px;
    left:4px;
}

/* 文章内容 */
.article_area .articlebox {
    padding: 30px;
    background: #fff;
    border: 1px solid rgb(231, 231, 231);
    border-radius: 2px;

    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;

}

.article_area .articlebox .title_box {
    border-bottom: 1px solid rgb(231, 231, 231);
    position: relative;

}

.article_area .articlebox .title_box h2 {
    line-height: 38px;
    font-size: 24px;
    font-weight: 900;
    color: #333;
    position: relative;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    animation-delay: 0.2s;
    margin-bottom: 16px;
}

.article_area .articlebox .title_box h2::after {
    content: " ";
    position: absolute;
    left: -30px;
    top: 2px;
    width: 5px;
    height: 34px;
    background: #2c66da;
    background: var(--primairy-color);

}

.article_area .articlebox .title_box p {
    color: #666;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    animation-delay: 0.4s;
    margin-bottom: 16px;
    font-size: 14px;
}

.article_area .articlebox .backbtn {
    position: absolute;
    width: 50px;
    height: 50px;
    display: block;
    right: 0;
    top: 0;

}

.article_area .articlebox .backbtn i {
    font-size: 40px;
    color: #999;
}

.article_area .articlebox .backbtn i:hover {
    color: #2e68da;
}


.article_area .article_content {
    padding: 20px 0;
    border-bottom: 1px solid rgb(231, 231, 231);
}

.article_area .article_content h5 {
    color: #2c66da;
    color: var(--primairy-color);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 18px;
}

.article_area .article_content p {
    line-height: 26px;
    font-size: 16px;
    margin-bottom: 20px;
}

.article_area .article_content img {
    /* width: 100%; */
    max-width: 100%;
}

.article_area .article_footer {
    margin-top: 30px
}

.article_area .article_footer a {
    color: #333;
    font-size: 16px;
}

.article_area .article_footer a:hover {
    color: #2c66da;
    color: var(--primairy-color)
}

.article_bg {
    background-image: url(../images/articlebf_02.jpg)
}



/*案例页面*/
.caselist {
    background: #f8f8f8;
}

.caselist .news_box {
    background: #fff;
}

.caselist .news_box .textbox {
    padding: 16px 0;

}

.caselist .news_box .textbox .time {
    height: 100%;
    /*width: 140px;*/
    font-size: 20px;
    line-height: 100%;
    padding-left: 16px;
    text-align: center;
    line-height: 30px;
    margin-top: 30px;
}

.caselist .news_box .textbox .time span {
    display: block;
    font-size: 16px;
}

.caselist .news_box .textbox a {
    /*width: calc(100% - 160px);*/
    border-left: 1px solid #ddd;
    padding-left: 16px;
    height: 132px;
}

.caselist .news_box i {
    right: 260px;
}

.caselist .news_box:hover {
    background: #fff;
}

/* 联系我们页面 */
.contactbox {
    padding: 40px 0px;
}

.contactbox .lxfs h2 {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 16px;
    position: relative;
    margin-bottom: 30px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    animation-delay: 0.2s;
}

.contactbox .lxfs h2::after {
    position: absolute;
    content: "";
    left: 0;

    bottom: 0;
    width: 38px;
    height: 2px;
    background: #2c66da;
    background: var(--primairy-color);


}

.contactbox .lxfs p {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
}

.contactbox .lxfs p span {
    display: inline-block;
    width: 100px;
    text-align: justify;
    text-align-last: justify;
    margin-right: 20px
}


.iw_poi_title {
    color: #CC5522;
    font-size: 14px;
    font-weight: bold;
    overflow: hidden;
    padding-right: 13px;
    white-space: nowrap
}

.iw_poi_content {
    font: 12px;
    overflow: visible;
    padding-top: 4px;
    white-space: -moz-pre-wrap;
    word-wrap: break-word;
}

.BMapLabel {
    display: block !important;
    padding: 10px !important;
    border: 1px solid #ddd !important;
    width: 200px !important;
    line-height: 24px !important;
    font-size: 14px !important;
    font-family: initial !important;
    /* white-space: normal !important; */
    max-width: max-content;
}

/* .BMap_Marker div {
    overflow: visible !important
} */

.BMap_Marker div img {
    left: 0px !important;
    top: 0px !important;
}

/* 留言 */
.message {
    padding:20px;
    padding-right: 40px;
    color: #fff;
}
.message h2{
    font-size: 20px;
    font-weight: 600;

}
.message p{
    font-size: 15px;
    margin-bottom:20px;
}
.message textarea{
    display: block;
    width: 100%;
    height: 90px;
    border: 1px solid rgba(255, 255, 255, 0.151);
    border-radius: 2px;
    padding-left: 10px;
    line-height: 26px;
    margin-bottom: 20px;
    background: #fff;
}
.message input{
    display: block;
    width: 100%;
    height: 36px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.151);
    padding-left: 10px;
    border-radius: 2px;
    background: #fff;
}

.message input::-webkit-input-placeholder{
    color: rgb(182, 182, 182)
}
.message textarea::-webkit-input-placeholder{
    color: rgb(182, 182, 182)
}
.message .tj{
    display: inline-block;
    width: 136px;
    height: 36px;
    text-align: center;
    font-weight: 600;
    border-radius: 2px;
    margin-bottom: 26px;
    line-height: 36px;
    color: #1366df;
    font-size: 14px;
    background: #fff;
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    -ms-transition: all 0.6s ease-out 0s;
    -o-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
}
.message .tj:hover{
    width: 160px;
}

/*（超大屏大于1400px）*/


@media screen and (min-width:1441px) {

    #full-screen-slider,
    #slides {
        height: 758px;
    }

    #slides li .slide_text,
    #slides li .slide2_text,
    #slides li .slide3_text {
        padding-top: 16%;
    }
    #slides li .slide4_text{
        padding-top: 14%;
    }
    #bannerpagination {
        top: 700px;
    }
}


/*宽屏1200分辨率以上（大于1200px）*/

@media screen and (min-width:1201px) and (max-width:1440px) {

    #full-screen-slider,
    #slides {
        height: 640px;
    }

    #slides li .slide_text {
        padding-top: 18%;
    }

    #bannerpagination {
        top: 600px;
    }

    .nav_menu-item {
        padding-left: 40px;
    }

    .subbanner {
        height: 500px;
    }

    .support_bg {
        height: 440px;
    }

    .subbanner .sloganbox {
        margin-top: 14%;
    }

}


/*（大于991px，小于1199px）*/

@media screen and (min-width: 992px) and (max-width: 1199px) {

    #full-screen-slider,
    #slides {
        height: 560px;
    }

    #slides li .slide_text {
        padding-top: 20%;
    }

    #slides li .slide_text h2 {

        margin-bottom:26px;
        font-size:58px;
    }
    #slides li .slide4_text h2{
        margin-bottom:32px;
        font-size:68px;
    }


    #bannerpagination {
        top: 520px;
    }

    .nav_menu-item {
        padding-left: 30px;
    }

    .productbox .item h2 {
        font-size: 18px;
    }

    .customerbox .item img {
        width: 75%
    }

    .index_gsjj .gsjj_vidio {
        height: 520px;
    }

    .subbanner {
        height: 500px;
    }

    .support_bg {
        height: 440px;
    }

    .subbanner .sloganbox {
        margin-top: 20%;
    }

}


/*（大于769px，小于991px）*/

@media screen and (min-width: 769px) and (max-width: 991px) {

    #full-screen-slider,
    #slides {
        height: 460px;
    }

    #slides li .slide_text {
        padding-top: 19%;
    }

    #slides li .slide_text h2 {

        margin-bottom: 26px;
        font-size:48px;
    }

    #slides .slide1 .slide_text a {
        padding: 2px 30px;
        font-size: 16px;
    }

    #slides .slide1 .slide_text p {
        font-size: 18px;
        letter-spacing: 0px
    }

    #bannerpagination {
        top: 430px;
    }

    .nav_menu-item {
        padding-left: 30px;
    }

    .productbox .item h2 {
        font-size: 18px;
    }

    .customerbox .item img {
        width: 75%
    }

    .index_gsjj .gsjj_vidio {
        height: 520px;
    }

    .subbanner {
        height: 500px;
    }

    .support_bg {
        height: 440px;
    }

    .subbanner .sloganbox {
        margin-top: 20%;
    }

    .emall_productbox .emall_product {

        height: 214px;

    }

    .emall_productbox .emall_product .imgbox {
        width: 300px;
        height: 214px;
    }

    .emall_productbox .emall_product .textbox {
        width: calc(100% - 300px);
        padding: 24px;
    }

    .emall_productbox .emall_product .textbox h2 {
        margin-top: 0px;
        margin-bottom: 16px;
    }

    .emall_productbox .emall_product .textbox p {
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .emall_productbox .emall_product .textbox .morebtn {
        height: 38px;
        line-height: 38px;
        margin-top: 16px;
    }
}


/*720分辨率（大于480px，小于767px）*/

@media only screen and (min-width: 481px) and (max-width: 768px) {
    .topheaderbox {
        height: 100px;
    }

    .defult_nav .logobox {
        margin-top: 15px;
    }

    #full-screen-slider,
    #slides {
        height: 520px;
    }

    #slides li .slide_text {
        padding-top: 28%;
    }

    #slides li .slide_text h2 {
        margin-bottom: 26px;
        font-size:48px;
    }

    #slides li .slide_text p {
        font-size: 18px;
        margin-bottom: 20px;
    }
    #slides li .slide_text .toptitle{
        font-size: 28px;
        margin-bottom: 28px;
    }
    #slides li .slide_text .toptitle span{
        font-size: 24px;
    }
   

    #bannerpagination {
        top: 480px;
    }

    .index_mktitle p {
        width: 100%;
    }

    .index_gsjj .databox {
        margin-left: 0px;
        margin-bottom: 0px;
    }

    .subbanner {
        margin-top: 100px;
        height: 480px;
    }

    .support_bg {
        height: 440px;
    }

    .subbanner .zhezhao .sloganbox {
        width: 100%;
        margin-left: 0px;
        left: 0;
    }


    .topheaderbox {
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08)
    }

    .footer-main-area {
        padding: 60px 0;
        padding-bottom: 30px;
    }

    .footer-widget {
        text-align: center;
        margin: 0 auto;
        width: 100%;
    }

    .footer-widget .erwm {
        float: none;
        text-align: center;
    }

    .footer-widget .erwm img {
        display: block;
        width: 152px;
        padding-bottom: 10px;
        margin: 20px auto;
        margin-bottom: 0px;
    }

    .footer-bottom-area {
        padding: 20px;
    }

    .Wrapperbox {
        padding-bottom: 485px;
    }

    .footer {
        margin-top: -485px;
    }

    .widget-title:after {
        left: 50%;
        margin-left: -19px;
    }

    .widget-title:before {
        width: 100%;
    }

    .index_gsjj .gsjj_info {
        padding-left: 0px;
    }

    .productbox .item h2 {
        font-size: 18px;
    }

    .caselist .news_box .textbox .time {
        font-size: 16px;
    }

    .caselist .news_box .textbox .time span {
        font-size: 12px;
    }

    .emall_productbox .emall_product {

        height: 162px;

    }

    .emall_productbox .emall_product .imgbox {
        width: 200px;
        height: 162px;
    }

    .emall_productbox .emall_product .textbox {
        width: calc(100% - 200px);
        padding: 16px;
    }

    .emall_productbox .emall_product .textbox h2 {
        margin-top: 0px;
        margin-bottom: 10px;
        font-size: 16px;
    }

    .emall_productbox .emall_product .textbox p {
        -webkit-line-clamp: 2;
        line-clamp: 2;
        line-height: 22px;
    }

    .emall_productbox .emall_product .textbox .morebtn {
        height: 38px;
        line-height: 38px;
        margin-top: 16px;
    }

    .customized_ys_xq ul li {
        width: 33.3%;
        height: 340px;
    }

    .page_nav {
        margin: 20px 0px;
    }

    .newslist .emall_productbox {
        margin-bottom: 16px;
    }

    .support_lc .wrapper05 {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .topheaderbox {
        height: 100px;
    }

    .defult_nav .logobox {
        margin-top: 15px;
    }

    #full-screen-slider,
    #slides {
        height: 520px;
    }

    #slides li .slide_text {
        padding-top:44%;
    }

    #slides li .slide_text h2 {
        margin-bottom: 26px;
        font-size:36px;
    }

    #slides li .slide_text p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    #slides li .slide4_text h2{
        font-size: 48px;
    }
    #slides li .slide_text .toptitle{
        font-size: 28px;
        margin-bottom: 28px;
    }
    #slides li .slide_text .toptitle span{
        font-size: 24px;
    }
   

    #bannerpagination {
        top: 480px;
    }

    .index_mktitle p {
        width: 100%;
    }

    .index_gsjj .databox {
        margin-left: 0px;
        margin-bottom: 0px;
    }

    .index_gsjj .gsjj_info {
        padding-left: 0px;
    }

    .customerbox .item img {
        width: 100%;
    }

    .productbox .item h2 {
        font-size: 18px;
    }

    .subbanner {
        margin-top: 100px;
        height: 480px;
    }

    .support_bg {
        height: 440px;
    }

    .subbanner .zhezhao .sloganbox {
        width: 100%;
        margin-left: 0px;
        left: 0;
        margin-top: 40%;
    }

    .subbanner .zhezhao .sloganbox h1 {
        font-size: 44px;
    }

    .emall_bg .zhezhao .sloganbox h1 {
        font-size: 36px;
        line-height: 1.5;
    }

    .emall_productbox .emall_product {
        height: 120px;

    }

    .emall_productbox .emall_product .imgbox {
        width: 120px;
        height: 86px;
        margin-top: 16px;
    }

    .emall_productbox .emall_product .textbox {
        width: calc(100% - 120px);
        padding: 16px;
    }

    .emall_productbox .emall_product .textbox h2 {
        margin-top: 0px;
        margin-bottom: 10px;
        font-size: 16px;
    }

    .emall_productbox .emall_product .textbox p {
        -webkit-line-clamp: 2;
        line-clamp: 2;
        line-height: 22px;
    }

    .emall_productbox .emall_product .textbox .morebtn {

        display: none;
    }

    .customized_bg .sloganbox h2 {
        color: #09fcff;
        font-size: 40px;
        font-weight: 600;
    }

    .customized_bg .sloganbox h2 span {
        font-size: 16px;
        color: #fff;
        padding-left: 20px;
        font-weight: normal
    }

    .customized_bg .sloganbox h3 {
        font-size: 48px;
        font-weight: 600;
        margin-top: 30px;
    }

    .customized_ys_xq ul li {
        width: 50%;
        height: 360px;
    }

    .customized_ys_xq ul li:nth-child(2n)::after {
        display: none;
    }

    .page_nav {
        margin: 20px 0px;
    }

    .newslist .emall_productbox {
        margin-bottom: 16px;
    }

    .page_mian .page_title {
        font-size: 22px;
    }

    .newslist {
        padding: 0px;
    }

    .news_mainbox .page_nav .wrapper04 {
        width: 74%;
    }


    .subnavbox li {
        margin: 0px;
    }

    .dingwei {
        display: none
    }

    .next_article {
        float: left !important;
    }

    .footer {
        margin-top: -485px;
    }

    .footer-main-area {
        padding: 60px 0;
        padding-bottom: 30px;
    }

    .footer-widget {
        text-align: center;
        margin: 0 auto;
        width: 100%;
    }

    .footer-widget .erwm {
        float: none;
        text-align: center;
    }

    .footer-widget .erwm img {
        display: block;
        width: 152px;
        padding-bottom: 10px;
        margin: 20px auto;
        margin-bottom: 0px;
    }

    .widget-title:after {
        left: 50%;
        margin-left: -19px;
    }

    .widget-title:before {
        width: 100%;
    }


    .subbanner {
        height: 420px;
    }



    .topheaderbox {
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08)
    }

    .cuntnumber .databox .fl {
        width: 50%;
    }

    .index_gsjj .databox .fl::after {
        display: none;
    }

    .index_gsjj .databox .fl .number span {
        margin: 0;
        right: 0px;
    }

    .cuntnumber .databox .fl .number span {
        right: 20px;
    }

    .Wrapperbox {
        padding-bottom: 485px;
    }


    .caselist .news_box .textbox .time {
        margin: 0;
        font-size: 14px;
        text-align: left;
        margin-bottom: 4px;
    }

    .caselist .news_box .textbox .time span {
        display: inline;
        font-size: 14px;
        padding-left: 10px;
    }

    .caselist .news_box .imgbox {
        height: 110px;
    }

    .caselist.news_box .imgbox img {
        margin-top: 6px;
    }

    .caselist .news_box .textbox {
        padding-left: 10px;
    }

    .caselist .news_box .textbox a {
        border-left: none;
    }

    .caselist .news_box i {
        right: 140px;
    }

    .support_lc .wrapper05 {
        width: 100%;
    }

    .support_two_xq dl dd {
        width: 33.3%;
    }

    .support_two_xq dl dd h2 {
        font-size: 16px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 376px) {

    .explore-technology-item .explore-technology-thumb .zhezhao a {
        top: 400px;

    }

    .subbanner .zhezhao .sloganbox {
        width: 100%
    }

}