/* 公共样式css */


/*滚动条样式*/

*::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 4px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 4px;
}

*::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 5px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.6);
}

*::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.1);
}


/* 水平上下居中 */

.c-flex-center {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}


/* 不换行超出部分自动生成省略号 */

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* 强制换行 */

.break {
    word-wrap: break-word;
    white-space: pre-wrap;
    word-break: break-all;
}


/* 单选框样式 */

.radio input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio input[type="radio"]+.radio-label:before {
    content: '';
    background: #f4f4f4;
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    position: relative;
    top: -0.2em;
    margin-right: 1em;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all 250ms ease;
    transition: all 250ms ease;
}

.radio input[type="radio"]:checked+.radio-label:before {
    background-color: #212129;
    box-shadow: inset 0 0 0 4px #f4f4f4;
}

.radio input[type="radio"]:focus+.radio-label:before {
    outline: none;
    border-color: #212129;
}

.radio input[type="radio"]:disabled+.radio-label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}

.radio input[type="radio"]+.radio-label:empty:before {
    margin-right: 0;
}


/* 输入框公共样式 */

.c-input-all {
    width: 300px;
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #B3B3B3;
    border-radius: 5px;
    display: inline-flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}


/* 输入框选中时的样式 */

.c-input-all.focus {
    border-color: #2878FF;
}

.c-input-all img {
    width: 22px;
    height: 22px;
    margin-right: 20px;
}

.c-input-all input {
    width: calc(100% - 62px);
    height: 22px;
    font-size: 16px;
    outline: none;
    border: 0;
    color: #777;
}


/* 按钮公共样式 */

.c-btn-all {
    width: 210px;
    height: 50px;
    border: 0;
    outline: none;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
    color: #ffffff;
    background: #D41F15;
}

.c-btn-all:active {
    opacity: .8;
}


/* 服务流程拆分单个流程组件 */

.c-server-flow-box {
    width: 355px;
    height: 100px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.c-server-flow-box .icon-box {
    width: 100px;
    height: 100px;
    background-color: #ffffff;
    box-shadow: 0px 0px 20px 0px rgba(51, 51, 51, 0.15);
}

.c-server-flow-box .text-box {
    width: calc(100% - 100px);
    box-sizing: border-box;
    padding-left: 10px;
    position: relative;
}

.c-server-flow-box .text-box .title {
    font-size: 20px;
    font-weight: 600;
    color: #242424;
}

.c-server-flow-box .text-box .text {
    font-size: 13px;
    line-height: 22px;
    color: #666666;
}

.c-server-flow-box .text-box .position {
    font-family: ArialMT;
    font-size: 40px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 28px;
    letter-spacing: 0px;
    color: #242424;
    opacity: 0.2;
    position: absolute;
    top: -11px;
}


/* 服务流程完整组件 */

.c-full-server-flow-box {
    width: 1400px;
    margin: auto;
    padding: 40px 0 70px 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.c-full-server-flow-box .position-f {
    font-family: ArialMT;
    font-size: 90px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0px;
    color: #f5f5f5;
    position: absolute;
    z-index: -1;
    top: -25px;
}

.c-full-server-flow-box .img-show {
    width: 560px;
    height: 733px;
}

.c-full-server-flow-box .flow-box {
    width: 764px;
    overflow: hidden;
}

.c-full-server-flow-box .flow-box .title-top {
    font-family: SourceHanSansCN-Regular;
    font-size: 36px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0px;
    color: #242424;
}

.c-full-server-flow-box .flow-box .describe {
    font-family: SourceHanSansCN-Regular;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0px;
    color: #666666;
}

.c-full-server-flow-box .flow-box .flow-list-box {
    height: 430px;
    display: flex;
    flex-flow: column wrap;
    overflow: hidden;
}

.c-full-server-flow-box .flow-box .flow-list-box .c-server-flow-box {
    margin-top: 40px;
}


/* 展示卡片 */

.c-show-card {
    overflow: hidden;
    width: 1400px;
    margin: auto;
    height: 320px;
    background-color: #ffffff;
    background: url('../image/show-card.png') no-repeat;
    background-size: 100% 100%;
    text-align: center;
    font-family: SourceHanSansCN-Medium;
    font-weight: normal;
    font-stretch: normal;
    color: #ffffff;
    letter-spacing: 0px;
}

.c-show-card .title-sc {
    font-size: 20px;
    padding-top: 58px;
}

.c-show-card .content-sc {
    font-size: 36px;
    line-height: 54px;
    margin-top: 42px;
}

.c-show-card .small-character-sc {
    font-size: 14px;
    line-height: 54px;
    opacity: 0.7;
}


/* 展示标题 */

.c-show-title {
    max-width: 1400px;
    text-align: center;
    font-family: SourceHanSansCN-Medium;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0px;
    position: relative;
    overflow: hidden;
}

.c-show-title .position-text-t {
    width: 309px;
    font-size: 90px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0px;
    color: #f5f5f5;
    position: absolute;
    display: inline-block;
    left: 0;
    right: 0;
    top: -25px;
    margin: auto;
    z-index: -1;
}

.c-show-title .title-text {
    font-size: 36px;
    color: #242424;
}

.c-show-title .describe-text {
    font-size: 18px;
    color: #666666;
    opacity: 0.5;
}


/* 范围组件单个拆分  - 默认展示*/

.c-scope-item-box {
    width: 310px;
    height: 533px;
    background-color: #f5f5f5;
    position: relative;
}

.c-scope-item-box .image-show {
    width: 310px;
    height: 281px;
}

.c-scope-item-box .text-box {
    width: 310px;
    height: 252px;
    padding: 0 20px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0px;
    box-sizing: border-box;
    font-family: SourceHanSansCN-Medium;
}

.c-scope-item-box .text-box .position-icon-s {
    width: 52px;
    height: 52px;
    position: relative;
    top: -26px;
}

.c-scope-item-box .text-box .title-i {
    font-size: 26px;
    color: #242424;
}

.c-scope-item-box .text-box .desc-i {
    font-size: 14px;
    color: #999999;
    margin-top: 10px;
}

.c-scope-item-box .text-box .list-i {
    font-family: SourceHanSansCN-Regular;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0px;
    color: #666666;
    display: flex;
    flex-flow: row wrap;
}

.c-scope-item-box .text-box .list-i li {
    width: 40%;
    margin-top: 20px;
}


/* 范围组件单个拆分  - 鼠标移入显示*/

.c-scope-item-box .transition-position-box {
    width: 0%;
    height: 0%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    z-index: -1;
}

.c-scope-item-box.show .transition-position-box {
    width: 100%;
    height: 100%;
    z-index: auto;
}

.c-scope-item-box .transition-position-box .radius-auto-box {
    flex-shrink: 0;
    width: 0;
    height: 0;
    border-radius: 50%;
    z-index: -1;
    /* transition: all linear 300ms; */
}

.c-scope-item-box.show .transition-position-box .radius-auto-box {
    width: 650px;
    height: 650px;
    z-index: auto;
    overflow: hidden;
}

.c-scope-item-box .transition-position-box .radius-auto-box .center-box {
    width: 310px;
    height: 533px;
    background: #f5f5f5;
    position: relative;
}

.c-scope-item-box .transition-position-box .radius-auto-box .center-box .focus-img {
    width: 310px;
    height: 533px;
}

.c-scope-item-box .transition-position-box .radius-auto-box .center-box .position-auto-i {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    box-sizing: border-box;
    padding: 20px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0px;
    color: #ffffff;
    font-family: SourceHanSansCN-Regular;
}

.c-scope-item-box .transition-position-box .center-box .position-auto-i .icon-img {
    width: 86px;
    height: 86px;
    margin-top: 50px;
}

.c-scope-item-box .transition-position-box .center-box .position-auto-i .title-big-i {
    font-size: 26px;
    margin: 41px 0 10px 0;
}

.c-scope-item-box .transition-position-box .center-box .position-auto-i .title-m-i {
    font-size: 14px;
}

.c-scope-item-box .transition-position-box .center-box .position-auto-i .text-s-i {
    font-size: 20px;
    line-height: 32px;
    margin-top: 68px;
}


/* 底部公共部分 */

.c-footer-box {
    width: 100%;
    min-width: 1400px;
    background-color: #06060b;
    color: #ffffff;
    padding: 18px 0;
}

.c-footer-box .center-box {
    width: 1400px;
    margin: auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    font-family: SourceHanSansCN-Regular;
}

.c-footer-box .center-box .left-box .logo-box {
    width: 140px;
    height: 46px;
    margin-bottom: 11px;
}

.c-footer-box .center-box .left-box>ul>li {
    font-size: 14px;
    margin-top: 19px;
}

.c-footer-box .center-box .left-box>ul>li>ul {
    display: flex;
}

.c-footer-box .center-box .left-box>ul>li>ul>li {
    padding-right: 28px;
    margin-right: 28px;
    line-height: 12px;
    border-right: 1px solid #ffffff;
}

.c-footer-box .center-box .left-box>ul>li>ul>li:last-child {
    border: 0;
}

.c-footer-box .center-box .right-box p {
    text-align: center;
    font-size: 16px;
}


/* 顶部内容 */

.c-header-box {
    width: 100%;
    min-width: 1400px;
}

.c-header-box .nav-top-fixed {
    width: 100%;
    z-index: 9999;
    position: fixed;
    top: 0;
    background: rgba(0, 0, 0, .3);
}

.c-header-box .nav-top-fixed .center-box {
    width: 100%;
    max-width: 1400px;
    height: 100px;
    margin: auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.c-header-box .nav-top-fixed .center-box .logo-img {
    width: 183px;
    height: 60px;
}

.c-header-box .nav-top-fixed .center-box .right-box {
    display: flex;
    color: #ffffff;
    overflow: hidden;
}

.c-header-box .nav-top-fixed .center-box .right-box li {
    font-size: 18px;
    font-weight: 600;
    padding: 20px 0;
    margin-left: 85px;
    border-bottom: 3px solid rgba(225, 225, 225, 0);
}

.c-header-box .nav-top-fixed .center-box .right-box li.active {
    border-bottom: 3px solid #ffffff;
}


/* .c-header-box .nav-top-fixed .center-box .right-box li span {
    position: relative;
    right: -180%;
    opacity: 0;
} */

.c-header-box .nav-top-fixed .center-box .right-box li:first-child {
    margin: 0;
}

.c-header-box .banner-box {
    position: relative;
    min-width: 1400px;
}

.banner-box.index-box{
    min-height:700px;
    height: 100vh;
    background: url('../image/banner.png') no-repeat center;
    background-size: cover;
}

.banner-box.about-box{
    min-height:700px;
    height: 100vh;
    background: url('../image/a-banner.png') no-repeat center;
    background-size: cover;
}

.c-header-box .banner-box .banner-img {
    width: 100%;
    min-width: 1400px;
}


/* 数字组件 */

.c-number-box {
    width: 100%;
    min-width: 1400px;
    box-shadow: 0px 0px 12px 0px rgba(51, 51, 51, 0.3);
}

.c-number-box .content-box {
    width: 1400px;
    height: 200px;
    display: flex;
    align-items: center;
    margin: auto;
    justify-content: space-between;
    text-align: center;
}

.c-number-box .number-item-box img {
    height: 50px;
    margin-top: 46px;
    margin-right: 20px;
}

.c-number-box .number-item-box .top-text {
    font-size: 60px;
    min-width: 220px;
    border-bottom: 1px solid #242424;
    color: #242424;
}

.c-number-box .number-item-box .bottom-text {
    font-size: 16px;
    padding-top: 10px;
    color: #333333;
}


/* 服务范围组件盒子 */

.c-scope-box {
    width: 1400px;
    margin: auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    height: 593px;
    overflow: hidden;
}


/* 服务范围添加动画效果 - 初始状态 */

.title-content-all-box {
    overflow: hidden;
}

.title-content-all-box .c-show-title .position-text-t {
    top: -100%;
    opacity: 0;
}

.title-content-all-box .c-show-title .title-text {
    position: relative;
    left: -200px;
    opacity: 0;
}

.title-content-all-box .c-show-title .describe-text {
    position: relative;
    right: -200px;
    opacity: 0;
}


/* 服务流程动画初始化 */

.c-full-server-flow-box .img-show {
    position: relative;
    right: 50%;
    opacity: 0;
}

.c-full-server-flow-box .flow-box .title_t-box {
    position: relative;
    right: -400px;
    opacity: 0;
}

.c-step-box {
    padding: 50px 0;
    /* background: #f1fcff; */
}


/* 步骤流程详解 */

.c-step-box {
    min-width: 1400px;
    overflow: hidden;
}

.c-step-box .center-box {
    width: 1400px;
    margin: auto;
}

.c-step-box .center-box>div {
    border-bottom: 3px solid #212129;
}

.c-step-box .center-box>div:last-child {
    border-bottom: 0;
}

.c-step-box .center-box>div>div:last-child {
    margin: 0
}

.c-step-box .right-flex {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
}

.c-step-box .left-flex {
    display: flex;
    flex-flow: row nowrap;
    padding-left: 80px;
}

.c-step-box .item-box {
    width: 360px;
    box-sizing: border-box;
    padding: 20px;
    margin-right: 60px;
    border-left: 1px solid #212129;
}

.c-step-box .item-box {
    font-family: SourceHanSansCN-Regular;
    color: #242424;
}

.c-step-box .item-box .title {
    font-size: 18px;
    font-weight: 600;
}

.c-step-box .item-box .small-text {
    font-size: 14px;
    color: #242424;
    opacity: 0.7;
}

.c-step-box .item-box .tag-style {
    text-align: center;
    width: 204px;
    padding: 10px 0;
    background-color: #212129;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #ffffff;
    margin: 19px 0;
}

.c-step-box .item-box ul li {
    line-height: 28px;
}


/* 案例展示 */

.c-case-box {
    width: 1400px;
    height: 225px;
    display: flex;
    align-items: center;
    margin: auto;
    background: #212129;
}

.c-case-com {
    width: 1148px;
    height: 170px;
    margin: auto;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    position: relative;
}

.c-case-com .big-text-c {
    width: 237px;
    margin-top: -20px;
}

.c-case-com .m-text-c {
    font-size: 16px;
    letter-spacing: 4px;
    margin-top: -10px;
    color: #ffffff;
}

.c-case-com .l-text-c {
    font-size: 18px;
    line-height: 24px;
    color: #ffffff;
    padding-top: 4px;
}

.c-case-com .reletive-box,
.b-reletive-box {
    box-sizing: border-box;
    padding: 20px;
    position: absolute;
    bottom: -50%;
    width: 686px;
    height: 117px;
    background: url('../image/c-back1.png') no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
}

.b-reletive-box {
    left: 0;
    right: 0;
    margin: auto;
    bottom: -50px;
}

.c-case-com .right-pattern-box {
    font-size: 14px;
    color: #ffe3b3;
    transform: rotate(90deg);
    position: absolute;
    right: -65px;
    top: 63px;
    opacity: 0.3;
}

.c-case-com .let-pattern-box {
    position: absolute;
    top: 0;
    left: 0;
}

.c-case-com .let-pattern-box>div {
    margin-bottom: 10px;
}

.c-case-com .let-pattern-box .pattern-1 {
    width: 4px;
    margin-left: 1px;
    height: 120px;
    background-color: #bda57c;
    border-radius: 2px;
}

.c-case-com .let-pattern-box .pattern-2 {
    width: 6px;
    height: 6px;
    background-color: #bda57c;
    border-radius: 3px;
}

.c-case-com .let-pattern-box .pattern-3 {
    width: 6px;
    height: 6px;
    background-color: #bda57c;
    border-radius: 3px;
    opacity: 0.5;
}

.c-case-com .let-pattern-box .pattern-4 {
    width: 6px;
    height: 6px;
    background-color: #bda57c;
    border-radius: 3px;
    opacity: 0.3;
}


/* 案例展示列表 */

.c-case-list-box {
    width: 1400px;
    margin: 70px auto 10px auto;
    display: flex;
    overflow: hidden;
    flex-flow: row wrap;
}

.c-case-list-box>a {
    width: 328px;
    height: 246px;
    margin: 0 29px 30px 0;
    background: #212129;
    position: relative;
}

.c-case-list-box .position-box-t {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding-left: 20px;
}

.c-case-list-box .position-box-t .right {
    width: 197px;
}

.c-case-list-box .position-box-t .right.phone {
    width: 150px;
}

.c-case-list-box .position-box-t .title {
    font-size: 22px;
    margin-bottom: 8px;
}

.c-case-list-box .position-box-t .line {
    width: 110px;
    height: 2px;
    background-color: #fff;
    margin-bottom: 20px;
}

.c-case-list-box .position-box-t .text {
    font-size: 18px;
    margin-bottom: 30px;
}

.c-case-list-box .position-box-t button {
    width: 26px;
    height: 26px;
    cursor: pointer;
    border: solid 1px #fff;
    background: url('../icon/right.png') no-repeat center;
    background-size: 50%;
    color: #fff;
}

.c-case-list-box .position-box-t img {
    max-height: 230px;
    max-width: 197px;
    transition: all linear 100ms;
}

.c-case-list-box .position-box-t img.hover {
    transform: scale(1.06);
}

.c-case-list-box>a:nth-child(4n+4) {
    margin-right: 0;
}

.c-case-list-box>a>img {
    width: 100%;
    height: 100%;
}


/* 定制开发讲解 */

.c-develop-box {
    width: 100%;
    min-width: 1400px;
    overflow: hidden;
    height: 700px;
    background: url('../image/d-back.png') no-repeat center;
    background-size: cover;
}

.c-develop-box .center-box {
    width: 1400px;
    margin: auto;
    color: #ffffff;
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.c-develop-box .center-box .title-box {
    width: 520px;
    text-align: center;
    height: 72px;
    margin: 80px auto;
    position: relative;
}

.c-develop-box .center-box .title-box p:nth-child(1) {
    font-size: 36px;
}

.c-develop-box .center-box .title-box p:nth-child(2) {
    font-size: 16px;
}

.c-develop-box .center-box .title-box>div {
    position: absolute;
    width: 120px;
    height: 1px;
    background-color: #ffffff;
}

.c-develop-box .center-box .title-box .icon-1 {
    top: 0;
    left: 0;
}

.c-develop-box .center-box .title-box .icon-2 {
    bottom: 0;
    right: 0;
}

.c-develop-box .center-box .left-position {
    color: #ffffff;
    font-size: 12px;
    opacity: 0.6;
    position: absolute;
    padding: 5px;
    transform: rotate(90deg);
    left: -204px;
    top: 328px;
}

.c-develop-box .center-box .c-border-i {
    width: 160px;
    height: 2px;
    background-color: #ffffff;
    opacity: 0.6;
    position: absolute;
    top: 0;
}

.c-develop-box .center-box .c-flex-box {
    display: flex;
    width: 1400px;
    flex-flow: row nowrap;
    justify-content: space-between;
    color: #ffffff;
}

.c-develop-box .center-box .c-flex-box>ul {
    width: 256px;
    height: 270px;
    padding: 40px 20px;
    box-sizing: border-box;
    background-color: #494951;
}

.c-develop-box .center-box .c-flex-box>ul>li:nth-child(1) {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin-bottom: 20px;
}

.c-develop-box .center-box .c-flex-box>ul>li:nth-child(1) img {
    height: 34px;
    margin-right: 10px;
}

.c-develop-box .center-box .c-flex-box>ul>li:nth-child(2) {
    line-height: 30px;
}


/* 合作关系 */

.heidden-box {
    min-width: 1400px;
    position: relative;
    top: -60px;
    overflow: hidden;
}

.c-cooperation-box {
    width: 1400px;
    margin: auto;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    position: relative;
}

.c-cooperation-box .c-swipe-box {
    width: 909px;
    padding-bottom: 30px;
    position: relative;
    background-color: #f0f0f0;
}

.c-cooperation-box .c-swipe-box .h-z-left {
    left: 90px;
}

.c-cooperation-box .c-swipe-box .h-z-right {
    right: 90px;
}

.c-cooperation-box .c-swipe-box .h-z-right,
.c-cooperation-box .c-swipe-box .h-z-left {
    color: #ccc!important;
    outline: none;
}

.c-cooperation-box .img-s-i {
    width: 519px;
    height: 388px;
    background-color: #bfbfbf;
    position: absolute;
    right: 0;
    box-shadow: 0px 6px 18px 0px rgba(51, 51, 51, 0.6);
}

.c-cooperation-box .i-position-text {
    position: absolute;
    top: 137px;
    right: 340px;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 4px;
    color: #dec696;
}

.c-cooperation-box .right-bottom-fixed {
    width: 175px;
    height: 30px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.c-swipe-box .title-text {
    font-size: 36px;
    color: #242424;
    text-align: center;
    padding: 60px 0 30px 0;
}

.c-swipe-box .swiper-container {
    width: 660px;
    cursor: pointer;
}

.c-swipe-box .swiper-container .swiper-slide .center-box {
    display: flex;
    flex-flow: row wrap;
    width: 560px;
    margin: auto;
}

.c-swipe-box .swiper-container .swiper-slide .logo-box {
    text-align: center;
}

.c-swipe-box .swiper-container .swiper-slide a {
    margin: 0 100px 20px 0;
}

.c-swipe-box .swiper-container .swiper-slide a:nth-child(3n+3) {
    margin-right: 0;
}

.c-swipe-box .swiper-container .swiper-slide .logo-box img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #eeeeee;
}

.c-swipe-box .swiper-container .swiper-slide .logo-box p {
    font-size: 16px;
    padding-top: 20px;
    color: #666666;
}


/* 提交需求 */

.c-submit-text {
    width: 1400px;
    margin: auto;
    padding-bottom: 20px;
    font-size: 36px;
    color: #242424;
}

.c-submit-box {
    width: 1400px;
    margin: auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}


/* 卡片标题动画效果默认 */

.c-show-card>p,
.c-show-card .small-character-sc {
    position: relative;
    opacity: 0;
}

.c-show-card .title-sc {
    left: 500px;
}

.c-show-card .content-sc {
    right: 400px;
}

.c-show-card .small-character-sc {
    top: 70px;
}


/* 流程图详解动画效果 */

.c-step-box .item-box {
    opacity: 0;
}

.c-step-box .right-flex .item-box {
    position: relative;
    right: 100%;
}

.c-step-box .left-flex .item-box {
    position: relative;
    left: 100%;
}


/* 案例展示标题动画效果 */

.animated {
    opacity: 0;
}

.animated.rubberBand,
.animated.wobble,
.animated.swing,
.animated.bounceInUp,
.animated.fadeInLeftBig,
.animated.fadeInRightBig,
.animated.fadeInDownBig,
.animated.fadeInUpBig,
.animated.rotateIn,
.animated.bounceInDown,
.animated.bounceInLeft,
.animated.bounceInRight,
.animated.bounceIn {
    opacity: 1;
}

.case-all-box {
    overflow: hidden;
    min-width: 1400px;
    height: 282px;
}


/* 首页遮罩层 */

.c-back-nake {
    min-width: 1400px;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
}


/* 悬浮窗模块 */

.c-fixed-mode-box {
    height: 292px;
    width: 50px;
    position: fixed;
    right: -50px;
    bottom: 40px;
    z-index: 888;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
}

.c-fixed-mode-box>div,
.c-fixed-mode-box>div>img {
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: relative;
}

.c-fixed-mode-box>div>img {
    border-radius: 50%;
    overflow: hidden;
}

.c-fixed-mode-box .position-div {
    position: absolute;
    top: 0;
    right: 100%;
    display: none;
    padding-right: 26px;
}

.c-fixed-mode-box .position-div .qrcode-box {
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    width: 100px;
    height: 118px;
    background-color: #ffffff;
    border: solid 1px #b2b2b2;
}

.c-fixed-mode-box .position-div .qrcode-box img {
    width: 100%;
}

.c-fixed-mode-box .position-div .qrcode-box p {
    font-size: 12px;
    margin-top: 5px;
    color: #666666;
}

.c-fixed-mode-box .position-div .phone-details-box {
    min-width: 159px;
    height: 50px;
    background-color: #666666;
    border-radius: 25px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    padding-right: 10px;
    align-items: center;
}

.c-fixed-mode-box .position-div .phone-details-box img {
    height: 50px;
}


/* 首页部分css 开始*/

.c-show-title {
    margin: 70px auto 0 auto;
}

.c-position-box {
    width: 1400px;
    height: 352px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    color: #fff;
    padding-left: 90px;
}

.c-position-box .c-text-1 {
    font-size: 30px;
    line-height: 60px;
    color: #ffffff;
}

.c-position-box .c-text-2 {
    font-size: 60px;
    color: #ffffff;
    margin-top: 40px;
}

.c-position-box .c-line-1 {
    width: 560px;
    height: 2px;
    background-color: #ffffff;
    margin-top: 30px;
}

.c-position-box .c-text-3 {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 2px;
    color: #ffffff;
    margin-top: 30px;
}

.c-position-box .c-tag-1 {
    padding: 14px;
    display: inline-block;
    border: solid 2px #ffffff;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #ffffff;
    margin-top: 30px;
    cursor: pointer;
}

.c-position-box .c-tag-1:hover {
    background: #ffffff;
    color: #212129;
}


/* 首页部分css 结束*/


/* 服务部分css 开始 */

.c-service-text-box {
    width: 1400px;
    margin: auto;
    height: 100%;
    position: relative;
}

.service-content-text-box {
    width: 770px;
    height: 260px;
    position: absolute;
    right: 0;
    top: 146px;
    background: rgba(0, 0, 0, .4);
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    padding: 0 109px;
    box-sizing: border-box;
    color: #ffffff;
}

.service-content-text-box .s-text-1 {
    font-size: 36px;
}

.service-content-text-box .s-text-2 {
    font-size: 16px;
    margin-top: 31px;
}

.service-content-text-box .s-icon-1 {
    width: 360px;
    height: 1px;
    background-color: #ffffff;
    position: absolute;
    top: 48px;
    right: 55px;
}

.service-content-text-box .s-icon-2 {
    width: 1px;
    height: 240px;
    background-color: #ffffff;
    position: absolute;
    top: 8px;
    right: 85px;
}


/* 服务部分css 结束 */


/* 案例页面css 开始 */

.s-case-all-box {
    position: relative;
    top: 225px;
}

.s-case-all-box .c-case-box {
    background: rgba(0, 0, 0, 0)
}

.c-page-box {
    width: 1400px;
    padding-bottom: 130px;
    margin: auto;
    display: flex;
    justify-content: flex-end;
}


/* 案例页面css 结束 */


/* 关于我们也买你部分css 开始 */

.c-about-detail-box {
    width: 1199px;
    height: 531px;
    background-color: #212129;
    padding: 0 134px;
    box-sizing: border-box;
    display: flex;
    flex-flow: column nowrap;
    color: #ffffff;
    margin: auto;
    position: absolute;
    top:100px;
    right: 0;
    left:0;
    bottom: 0;

    padding-top: 122px;
}

.c-about-detail-box .title {
    font-size: 30px;
    line-height: 24px;
}

.c-about-detail-box .text {
    font-size: 16px;
    line-height: 28px;
    margin-top: 30px;
}

.c-about-detail-box .position-text {
    font-size: 72px;
    position: absolute;
    top: -48px;
    left: -95px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ffffff;
}


/* 企业文化 */

.c-corporate-culture-box {
    overflow: hidden;
    min-width: 1400px;
}

.c-corporate-culture-box .center-box {
    width: 1158px;
    margin: auto;
    padding: 108px 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    color: #242424;
}

.c-corporate-culture-box .center-box img {
    width: 400px;
    height: 533px;
}

.c-corporate-culture-box .title {
    font-size: 26px;
}

.c-corporate-culture-box .y-title {
    font-size: 36px;
    margin-top: 20px;
    font-family: SimSun;
}

.c-corporate-culture-box .tag {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
    border: solid 2px #212129;
    display: inline-block;
    padding: 5px 10px;
    font-weight: 600;
    cursor: pointer;
}

.c-corporate-culture-box .tag:hover {
    background: #212129;
    color: #ffffff;
}

.c-corporate-culture-box .s-title {
    font-size: 17px;
    font-weight: 600;
    margin-top: 20px;
}

.c-corporate-culture-box .s-text {
    font-size: 14px;
    color: #666666;
    margin-top: 5px;
}


/* 发展历程 */

.a-dev-history-box {
    min-width: 1400px;
    background-color: #212129;
    padding: 58px 0;
    overflow: hidden;
}

.a-dev-history-box .title-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.a-dev-history-box .title {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 45px;
}

.a-dev-history-box .position {
    font-size: 36px;
    line-height: 26px;
    color: #ffffff;
    opacity: 0.1;
    position: absolute;
    top: 13px;
}

.about-swiper-box {
    width: 1400px;
    margin: auto;
    min-height: 100px;
    position: relative;
}

.swiper-container-a {
    margin: auto;
    width: 1300px;
    overflow: hidden;
}

.swiper-container-a .swiper-slide>ul {
    display: flex;
    flex-flow: row nowrap;
    box-sizing: border-box;
    padding: 0 60px;
}

.swiper-container-a .swiper-slide>ul>li {
    color: #ffffff;
    width: 210px;
    margin-right: 115px;
}

.swiper-container-a .swiper-slide>ul>li:last-child {
    margin: 0;
}

.swiper-container-a .swiper-slide>ul>li .top {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin-bottom: 20px;
}

.swiper-container-a .swiper-slide>ul>li .top img {
    width: 60px;
    height: 60px;
    margin-right: 35px;
}

.swiper-container-a .swiper-slide>ul>li .top span {
    font-size: 20px;
    line-height: 26px;
}

.swiper-container-a .swiper-slide>ul>li>p {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0px;
}

.about-swiper-box .swiper-button-prev,
.about-swiper-box .swiper-button-next {
    color: #ffffff!important;
    outline: none;
}

.a-image-show-box {
    min-width: 1400px;
    display: flex;
    flex-flow: row nowrap;
    overflow: hidden;
}

.a-image-show-box img {
    width: 50%;
}


/* 招贤纳士 */

.a-invite-box {
    width: 1400px;
    margin: auto;
    display: flex;
    overflow: hidden;
    flex-flow: row nowrap;
    justify-content: space-between;
}

.a-invite-box .left-box {
    width: 180px;
    min-height: 895px;
    position: relative;
}

.a-invite-box .left-box .box-1 {
    width: 181px;
    height: 66px;
    border: 2px solid #f08300;
    position: absolute;
    top: 116px;
    z-index: -1;
}

.a-invite-box .left-box .back-1 {
    width: 135px;
    box-sizing: border-box;
    background: #ffffff;
    min-height: 300px;
    margin: auto;
    position: relative;
}

.a-invite-box .text-1 {
    writing-mode: tb-rl;
    font-size: 36px;
    line-height: 70px;
    color: #242424;
    padding: 67px 0 0 5px;
}

.a-invite-box .text-2 {
    width: 28px;
    /* height: 444px;  */
    position: absolute;
    top: 70px;
    right: 33px;
}

.a-invite-box .line-1 {
    width: 3px;
    height: 445px;
    background-color: #e6e6e6;
    position: absolute;
    top: 450px;
    right: 63px;
}

.a-invite-box .right-box {
    width: 1160px;
    position: relative;
}

.a-invite-box .position-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 292px;
    height: 111px;
    margin-top: 37px;
}

.a-invite-box .details-box .r-box-1 {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-end;
    border-bottom: 2px solid #ccc;
    padding-bottom: 20px;
    padding-top: 70px;
}

.a-invite-box .details-box .r-box-1 .title {
    font-size: 24px;
    margin-right: 30px;
    color: #242424;
}

.a-invite-box .details-box .r-box-1 .date {
    font-size: 14px;
    color: #666666;
}

.a-invite-box .details-box .r-box-1 .tag {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.a-invite-box .details-box .r-box-1 .tag img {
    height: 18px;
    width: 18px;
    margin-right: 10px;
    vertical-align: bottom;
}

.a-invite-box .details-box .r-box-1 .tag span {
    font-size: 14px;
    color: #666666;
}

.a-invite-box .details-box .r-box-2 {
    display: flex;
    padding: 32px 0;
}

.a-invite-box .details-box .r-box-2>p {
    font-size: 17px;
    width: 125px;
    font-weight: 600;
    color: #242424;
    position: relative;
    top: -15px;
}

.a-invite-box .details-box .r-box-2>ul {
    width: 1035px;
    font-family: SourceHanSansCN-Regular;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 24px;
    color: #333333;
}

.a-invite-box .details-box .r-box-3 {
    width: 1035px;
    padding: 20px 0;
    margin-left: 125px;
    border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
}

.a-invite-box .details-box .r-box-3 button {
    width: 160px;
    height: 44px;
    background-color: #212129;
    outline: none;
    border: 0;
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
}

.a-invite-box .details-box .r-box-3 button:hover {
    opacity: 0.9;
}

.a-invite-box .details-box .r-box-3 button:active {
    opacity: 0.5;
}


/* 在线应聘模态框 */

.modal-box-c {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: auto;
    background: rgba(0, 0, 0, .3);
    z-index: 10000;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.modal-box-c .center-box {
    width: 800px;
    border-radius: 10px;
    height: 650px;
    max-height: 90vh;
    overflow: hidden;
}

.modal-box-c .center-box .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #212129;
    color: #ffffff;
    padding: 20px 20px;
}

.modal-box-c .center-box .header-top p {
    font-size: 24px;
}

.modal-box-c .center-box .header-top img {
    width: 17px;
    cursor: pointer;
}

.modal-box-c .center-box .header-top img:hover {
    opacity: .6;
}

.modal-box-c .center-box .content-box {
    background: #ffffff;
    padding: 20px;
    height: calc(80vh - 75px);
    overflow: auto;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.modal-box-c .center-box .content-box .c-input-all {
    padding: 10px;
    width: 100%;
    margin-bottom: 20px;
}

.modal-box-c .center-box .content-box .v-code-box {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #B3B3B3;
    border-radius: 5PX;
}

.modal-box-c .center-box .content-box .v-code-box .c-input-all {
    border: 0;
    border-right: 1px solid #B3B3B3;
    border-radius: 0;
    margin: 0;
}

.modal-box-c .center-box .content-box .code-image-s {
    width: 96px;
    height: 24px;
    margin: 0 10px;
}

.modal-box-c .gender-box {
    margin-bottom: 20px;
}

.modal-box-c .gender-box>p {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0px;
    color: #242424;
}

.modal-box-c .gender-box .radio {
    margin-top: 15px;
}

.modal-box-c button {
    margin-top: 20px;
    border: 0;
    outline: 0;
    padding: 10px 30px;
    background-color: #212129;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 550;
    color: #ffffff;
    cursor: pointer;
}

.modal-box-c button:hover {
    opacity: 0.9;
}

.modal-box-c button:active {
    opacity: .6;
}

.modal-box-c button.cancel {
    background-color: #e6e6e6;
    color: #999999;
    margin-left: 20px;
}

#modalBox {
    display: none;
}