/* 页面最大宽度为 */
.max-content {
    width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1400px;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.min-content {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.box {
    width: 100%;
    padding: 15px 0;
    position: relative;
}

.banner-info {
    position: absolute;
    top: 35%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

/* 相对定位 */
.position-r {
    position: relative;
}

/* 内容 */
.box-content {
    width: 100%;
}

.line-h23 {
    line-height: 23px;
}

/* 选中样式 */
.tab-click-act {
    color: #12ccfa;
    border-bottom: 2px solid #12ccfa;
}

.tab-item li.tab-click-act a {
    color: #12ccfa;
}

/*字体超出部分省略号*/
.txt-cut1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.txt-cut2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.txt-cut3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.home-cut {
    width: 20%;
    height: 2px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8);
}

.h100 {
    height: 100%;
}

/* flex */
.flex {
    display: flex;
}

.flex-between {
    justify-content: space-between;
}

/* banner公共样式 */
.banner {
    width: 100%;
    height: 600px;
    margin-top: 90px;
}

.min-banner {
    width: 100%;
    height: 455px;
    margin-top: 90px;
}

.banner h1 {
    font-weight: lighter;
}

.banner div {
    letter-spacing: 2px;
}

.banner-swiper img {
    width: 100%;
    height: 100%;
}

/********** 首页 **********/
/* home 标题 */
.item-title {
    width: 100%;
    padding: 50px 0;
}

/* 首页 业务 部分 */
.business-item {
    width: 100%;
    height: 346px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.business-list {
    width: 16.6667%;
    height: 100%;
}

.business-item li:hover .home-list-tit {
    width: 68%;
    margin: 0 auto 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
}

.home-link {
    width: 65%;
    line-height: 40px;
    margin: 20px auto;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* 服务流程 */
.service-map {
    width: 80%;
    position: absolute;
    top: 70px;
    left: 10%;
    z-index: -1;
}

.service-item {
    width: 100%;
    height: 300px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.service-item li {
    width: 9.2%;
    margin-top: 60px;
    height: 160px;
}

.service-list {
    width: 100%;
    height: 100%;
    text-align: center;
    box-shadow: 0 0 11px rgba(219, 217, 217, 0.6);
}

.service-icon {
    width: 35px;
    margin: 0 auto 15px;
    height: 35px;
    background: url("../img/content/home-icon2.png") no-repeat;
}

.service-item li:hover {
    width: 18%;
    height: 280px;
    margin-top: 0;
}

.service-item li .prop-server {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #3fcdfd;
    z-index: 1000;
}

.service-item li .prop-server p {
    display: none;
    padding: 10px 0;
    font-size: 24px;
    color: #fff;
    text-align: center;
}

.service-item li .prop-server .node {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 2px;
    height: 200px;
    background-color: #fff;
}

.service-item li .prop-server .node .spot {
    display: inline-block;
    width: 10px;
    height: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background-color: #3fcdfd;
    border: 2px solid #fff;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.service-item li .prop-server .node .spot:first-of-type {
    top: 25%;
}

.service-item li .prop-server .node .spot:first-of-type .tips {
    min-width: 4em;
    max-width: 50%;
    display: none;
    font-size: 14px;
    color: #fff;
    position: absolute;
    right: -65px;
    top: -5px;
}

.service-item li .prop-server .node .spot:nth-of-type(2) {
    top: 50%;
}

.service-item li .prop-server .node .spot:nth-of-type(2) .tips {
    min-width: 4em;
    max-width: 50%;
    display: none;
    font-size: 14px;
    color: #fff;
    position: absolute;
    left: -65px;
    top: -5px;
}

.service-item li .prop-server .node .spot:last-of-type {
    top: 75%;
}

.service-item li .prop-server .node .spot:last-of-type .tips {
    min-width: 4em;
    max-width: 50%;
    display: none;
    font-size: 14px;
    color: #fff;
    position: absolute;
    right: -65px;
    top: -5px;
}

.service-item li .prop-server .node .spot.block .tips {
    display: block !important;
}

.service-item li:hover {
    z-index: 1100;
}

/* 客户案例部分 */
.anli-list {
    width: 33%;
    height: 450px;
}

.anli-img {
    width: 100%;
    height: 268px;
    position: relative;
}

.anli-img > img {
    width: 100%;
    height: 100%;
}

.anli-img .anli-logo-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.anli-img .anli-logo {
    width: 138px;
    height: auto;
    overflow: hidden;
}

.anli-img .anli-logo > img {
    width: 100%;
    height: auto;
}

.anli-bg {
    background-color: rgba(0, 0, 0, 0.56);
}

.anli-bg-act {
    background-color: rgba(255, 255, 255, 0.8);
}

.anli-img .anli-logo .img-act {
    position: relative;
    left: -137px;
    border-right: 0px solid transparent;
    -webkit-filter: drop-shadow(138px 0px #fff);
    filter: drop-shadow(138px 0px #fff);
}

.swiper-dec {
    /* width:100%; */
    height: 156px;
    padding: 31px 5%;
}

.anli-swiper {
    position: relative;
    padding: 15px;
}

.anli-swiper .swiper-button-prev {
    left: 0px !important;
}

.anli-swiper .swiper-button-next {
    right: 0px !important;
}

.anli-more {
    position: absolute;
    bottom: 0;
    right: 100px;
}

/* 关于我们 */
.aboutus-title {
    position: relative;
    height: 180px;
    padding-top: 60px;
    background-color: #303030;
}

.aboutsus-tab {
    width: 100%;
    position: absolute;
    bottom: 2px;
    text-align: center;
}

.aboutsus-tab li {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
}

.line-h40 {
    line-height: 40px;
}

/* 行业资讯 */
.news-item li {
    float: left;
    width: 45%;
    margin-right: 2.5%;
    margin-bottom: 18px;
}

.news-item li img {
    width: 223px;
    height: 116px;
    padding-right: 5%;
    border-right: 1px solid #ccc;
}

.news-item li:nth-child(2n),
.from-group:nth-child(2n) {
    margin-right: 0;
}

/* 联系我们 */
.from-group {
    width: 47.5%;
    margin-right: 5%;
    float: left;
    line-height: 40px;
}

.from-group:last-of-type {
    width: 100%;
}

.from-group div {
    width: 8px;
    color: #ff0000;
    font-size: 12px;
    float: left;
}

.from-group label {
    width: 50px;
    float: left;
}

.from-group input {
    width: 80%;
    border: 1px solid #ccc;
    height: 40px;
    border-radius: 3px;
    float: left;
    font-size: 12px;
    color: #333;
    padding: 0 5px;
}

.from-group textarea {
    width: 91%;
    border: 1px solid #ccc;
    border-radius: 3px;
    float: left;
}

.aboutus-btn {
    width: 20%;
    line-height: 40px;
    background: #a0a0a0;
    margin: 0 auto;
    display: block;
    border-radius: 3px;
    cursor: pointer;
}

.aboutus-btn:hover {
    background: #ccc;
}

/* 电商服务界面 */
.dsfw-banner {
    background: url("static/web/img/banner/dsfw-banner.png") no-repeat center center;
    background-size: cover;
}

.tab-box {
    width: 100%;
    line-height: 60px;
    cursor: pointer;
    text-align: center;
    z-index: 999;
}

.tab-box-active {
    width: 100%;
    line-height: 60px;
    cursor: pointer;
    text-align: center;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
}

.tab-item {
    width: 100%;
    width: 100%;
    line-height: 60px;
    cursor: pointer;
    text-align: center;
}

.tab-item li {
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.tab-item li a {
    color: #666;
}

.tab-item .tab-click-act:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    border-width: 6px;
    border-style: solid;
    z-index: 100;
    border-color: transparent transparent #12ccfa transparent;
}

/* 软件开发 */
.rjkf-banner {
    background: url("static/web/img/banner/rjkf-banner.png") no-repeat center center;
    background-size: cover;
}

.software-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.software-item li {
    width: 31%;
    height: 430px;
    margin: 30px 0;
    text-align: center;
    background-color: #ccc;
    cursor: pointer;
}

.software-icon {
    width: 54px;
    height: 43px;
    margin: 0 auto;
    background: url("static/web/img/content/rj-icon.png") no-repeat;
}

.list-dec {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.list-dec:hover {
    background-color: rgba(23, 138, 235, 0.7);
}

/* 移动APP开发 */
.app-banner {
    background: url("static/web/img/banner/app-banner.png") no-repeat center center;
    background-size: cover;
}

/* 微信开发*/
.wx-banner {
    background: url("static/web/img/banner/wx-banner.png") no-repeat center center;
    background-size: cover;
}

.wx-hide-txt .cutline {
    width: 25%;
    height: 2px;
    margin: 15px auto;
    background-color: rgba(255, 255, 255, 0.8);
}

.wx-hide-txt p {
    width: 80%;
    margin: 0 auto;
}

.wx-adv-item li {
    width: 100%;
    height: 305px;
    margin-bottom: 40px;
    overflow: hidden;
}

.wx-adv-item li img {
    width: 100%;
    height: 100%;
}

.wx-adv-img {
    width: 50%;
    height: 100%;
    position: relative;
    z-index: 99;
    /* cursor: pointer;
    transition: all 0.6s; */
}

/* .wx-adv-img:hover {
    transform: scale(1.1);
} */

.wx-adv-img p {
    width: 100%;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wx-adv-txt {
    position: relative;
    width: 50%;
    height: 100%;
    padding: 0 3%;
    background-color: #eee;
    box-shadow: 1px 3px 1px 0px rgba(74, 74, 74, 0.3);
}

.wx-adv-txt:nth-child(odd)::after,
.wx-adv-txt:nth-child(even)::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-width: 14px;
    border-style: solid;
    z-index: 100;
}

/* 奇数三角形 */
.wx-adv-txt:nth-child(odd)::after {
    right: -4.5%;
    border-color: transparent transparent transparent #eee;
}

/* 偶数三角形 */
.wx-adv-txt:nth-child(even)::after {
    left: -4.5%;
    border-color: transparent #eee transparent transparent;
}

/* 网络推广 */
.wltg-banner {
    background: url("static/web/img/banner/wltg-banner.png") no-repeat center center;
    background-size: cover;
}

.wltg-title {
    margin: 70px auto;
    border-bottom: 2px solid #aeb1b3;
}

.wltg-tit {
    margin-bottom: -2px;
    padding-bottom: 10px;
    display: inline-block;
    border-bottom: 2px solid #5082d5;
}

.wltg-price-item {
    width: 100%;
    height: 120px;
    background-color: #303030;
}

.wltg-price-item .line {
    width: 1px;
    height: 30px;
    margin: 8px 25px 0;
    background-color: rgba(255, 255, 255, 0.8);
}

.wltg-input {
    width: 400px;
    height: 40px;
    margin: 0 35px;
}

.wltg-input input {
    width: 75%;
    height: 100%;
    text-indent: 5px;
    background-color: #fff;
}

.wltg-input button {
    width: 25%;
    height: 100%;
    background-color: #0096e3;
}

.wltg-show {
    width: 100%;
    height: 780px;
    background: url("static/web/img/content/promote-bg1.png") no-repeat;
    background-size: 100% 100%;
}

.wltg-show li {
    width: 24%;
    overflow: hidden;
}

.wltg-show li img {
    width: 100%;
}

.wltg-show li > div {
    width: 100%;
    padding: 25px 0;
    background-color: #ffffff;
    box-shadow: 2px 2px 3px 1px rgba(84, 84, 84, 0.2);
}

.wltg-show li > div > p:last-of-type {
    width: 78%;
    margin: 0 auto;
    text-align: left;
}

.compare-tit {
    width: 200px;
    line-height: 44px;
    margin: 0 auto 40px;
}

.compare-item ul li {
    overflow: hidden;
    margin-bottom: 25px;
}

.compare-problem li {
    width: 100%;
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 38px;
    border-radius: 15px;
}

.wltg-anli {
    width: 100%;
    height: 740px;
    background: url("static/web/img/content/promote-bg2.png") no-repeat;
    background-size: 100% 100%;
}

.wltg-anli-item {
    margin-bottom: 75px;
}

.wltg-anli-item li {
    width: 33.3%;
    height: 160px;
    padding: 30px 0;
    position: relative;
}

.wltg-anli-item li img {
    width: 3px;
    /* height: 159px; */
    position: absolute;
    right: 0;
    top: 0;
}

/* 关于我们 */
.aboutus-banner {
    background: url("static/web/img/banner/aboutus-banner.png") no-repeat;
    background-size: 100% 100%;
}

.about-line {
    width: 2px;
    height: 92px;
    margin: 20px auto 0;
    background-color: #373a42;
}

.aboutus-ry {
    position: relative;
    width: 100%;
    height: 600px;
    background: url("static/web/img/content/aboutus-ry-bg.png") no-repeat;
    background-size: 100% 100%;
}

.about-line2 {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 0;
    width: 2px;
    height: 92px;
    background-color: rgba(255, 255, 255, 0.7);
}

.vedio-item {
    width: 100%;
    height: 390px;
    cursor: pointer;
    margin-bottom: 50px;
    position: relative;
}

.vedio-item .vedio-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 268px;
    background-color: #12ccfa;
}

.vedio-item video {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}

/* 联系我们 */
.contact-banner {
    background: url("../img/banner/contact-banner.png") no-repeat;
    background-size: cover;
}

/* 客户 */
.customer-banner {
    background: url("../img/banner/customer-banner.png") no-repeat;
    background-size: cover;
}

.custom-box {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 0 1px;
}

.custom-box li {
    width: 23%;
    margin-right: 2.6%;
    margin-bottom: 35px;
    box-shadow: 0px 0px 4px 0px rgba(190, 186, 187, 0.54);
    border-radius: 5px;
}

.custom-box li:nth-child(4n) {
    margin-right: 0;
}

.custom-box li:hover {
    box-shadow: 0px 0px 4px 0px #35cbfd;
}

.custom-box li .anli-img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    overflow: hidden;
    height: 180px;

}

.custom-box li img {
    width: 100%;
    height: 100%;
}

.custom-box .info {
    padding: 20px 15px;
}

.custom-box .anli-logo-bg {
    background: rgba(255, 255, 255, .5);
}

/* 资讯 */
.news-banner {
    background: url("../img/banner/news-banner.png") no-repeat;
    background-size: 100% 100%;
}

.information-item {
    width: 80%;
    margin: 0 auto;
}

.information-item li {
    position: relative;
    width: 100%;
    height: 280px;
    padding: 40px 0;
    overflow: hidden;
    border-bottom: 1px solid #ccc;
}

.information-item li:hover h3 {
    color: #0096e3;
}

.information-item li:hover {
    border-bottom: 1px solid #0096e3;
}

.information-item li img {
    width: 290px;
    height: 200px;
}

.information-item li > a > div {
    padding: 2% 0 0 5%;
    width: calc(100% - 290px);
}

.information-item li > a > div > .date {
    position: absolute;
    bottom: 45px;
    right: 0;
}

.item-title > ul > li {
    padding: 0 10px;
    border-right: 1px solid rgba(116, 116, 116, 0.5);
}

.information-item li:last-of-type,
.item-title > ul > li:last-of-type {
    border: none;
}

.news-content {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(116, 116, 116, 0.5);
}

.news-content p {
    line-height: 23px;
    text-indent: 26px;
    margin-bottom: 15px;
}

.news-content * {
    margin-bottom: 15px;
}

.news-btn a {
    color: #666;
}

.news-btn a:hover {
    color: #0096e3;
}

.news-content a {
    display: inline;
}

.news-content, .news-content p {
    font-size: 18px;
    line-height: 36px;
}


/* 分页 */
.pagination-item {
    width: 100%;
    margin: 5% 0;
    position: relative;
}

.pagination-item ul {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}

.pagination-item ul > li {
    float: left;
    width: 38px;
    height: 38px;
    font-size: 0;
    line-height: 38px;
    margin-right: 5px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border: 1px solid #eee;
    border-radius: 2px;
    overflow: hidden;
}

.pagination-item ul > li a {
    width: 100%;
    height: 100%;
    color: #666;
}

.pagination-item ul > li:hover,
.pagination-item ul > li a:hover,
.pagination-item ul > li a:active {
    border: 1px solid #0096e3;
    background-color: #0096e3;
    color: #fff !important;
}

.design-tit {
    padding: 5px 15px;
    border-left: 5px solid #12ccfa;
}

.design-img {
    width: 100%;
    background-color: #fff;
    padding: 20px;
}

.design-img img {
    width: 100%;
}

html,
body {
    position: relative;
    height: 100%;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: rgba(255, 255, 255, .8);
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(0, -50%);
}

.news-item > li:hover h3 {
    color: #0096e3;
}

.hezuo-item {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    overflow: hidden;
}

.hezuo-item li {
    border: 1px solid #dbdbdb;
    width: 13.8%;
    margin-bottom: 20px;
    height: 100px;
    position: relative;
    cursor: pointer;
}


.hezuo-item img {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hezuo-item li:hover {
    border: 1px solid #0096e3;
}

/********** 媒体查询部分 **********/
@media screen and (max-width: 1400px) {
    .max-content {
        width: 1200px;
        margin: 0 auto;
        overflow: hidden;
    }

    .news-item li img {
        padding-right: 3%;
        border-right: 1px solid #ccc;
    }

    .anli-more {
        position: absolute;
        bottom: 0;
        right: 0;
    }
}


/* 联系我们 */
.down {
    background: #453d74;
    background-size: cover;
    width: 100%;
    height: 800px;
    padding-top: 10px;
    margin-top: 90px;
}
.down-text{
    color: #fff;
    line-height: 40px;
}

.img-section {
    display: flex;
    justify-content: space-between;
}

.img-section img {
    margin-top: 10px;
    height: 500px;
    border-radius: 20px;

}

.btn-downlond {
    width: 500px;
    height: 70px;
    margin-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-button {
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px;
    border-radius: 5px;
    margin-left: 30px;
    transition : .5s;
}

.download-button a {
    color: rgba(255, 255, 255, 0.7);
}
.download-button:hover{

    transform: scale(1.2);
}