html,body {
    width: 100%;
}

body,ol,ul,h1,h2,h3,h4,h5,h6,p,th,td,dl,dd,form,fieldset,legend,input,textarea,select {
    margin: 0;
    padding: 0
}

div {
    box-sizing: border-box;
}

a,a:hover {
    text-decoration: none;
    color: #555;
}

img {
    max-width: 100%;
}

b {
    display: block;
}
.swiper-button-next, .swiper-button-prev{
    outline: none;
}
.swiper-button-next:after, .swiper-button-prev:after{
    color: #ff8101;
}
.rows-overflow-1 {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.rows-overflow-2 {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rows-overflow-3 {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

body {
    font-size: 17px;
    background: #f7f7fe;
    min-height: 100vh;
}

@media (max-width: 1700px) {
    body {
        font-size: 16px;
    }
}

@media (max-width: 1500px) {
    body {
        font-size: 15px;
    }
}

@media (max-width: 1200px) {
    body {
        font-size: 12px;
    }
}

@media (orientation: portrait) {
    body {
        font-size: 12px;
    }
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.container {
    width: 1500px;
}

@media (max-width: 1650px) {
    .container {
        width: 1400px;
    }
}

@media (max-width: 1550px) {
    .container {
        width: 1300px;
    }
}

@media (max-width: 1450px) {
    .container {
        width: 1200px;
    }
}

@media (max-width: 1350px) {
    .container {
        width: 1100px;
    }
}

@media (max-width: 1250px) {
    .container {
        width: 1000px;
    }
}

@media (max-width: 1050px) {
    .container {
        width: 94%;
    }
}

@media (orientation: portrait) {
    .container {
        width: 94%;
        padding: 0 2%;
        padding: 20px 0;
    }
}

/*首页导航栏 start*/
#index_banner {
    position: relative;
}

#index_banner .swiper-container {
    height: auto;
}

#index_banner .swiper-container .swiper-slide {
    background-position: center;
    background-size: 100% auto;
}


/*首页导航栏 end*/
/* 首页4个盒子的介绍 start*/
.index-about {
    color: #5c71fa;
    margin-bottom: 150px;
    box-shadow: 0px 0px 15px #afafaf;
    height: 170px;
    padding: 0;
    margin-top: 40px;
}

.index-about .item {
    display: inline-flex;
    vertical-align: top;
    box-sizing: border-box;
    width: 25%;
    float: left;
    text-align: center;
    cursor: pointer;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.index-about .item:hover {
    box-shadow: 0px 0px 15px #afafaf;
}

.index-about .item div {
    display: inline-block;
}

.index-about .item div:nth-of-type(1) {
    font-size: 2em;
    width: 120px;
    font-weight: 700;
    margin-bottom: 10px;
}

.index-about .item div:nth-of-type(1) img {
    height: 50px;
}

.index-about .item div:nth-of-type(2) {
    font-size: 1.2em;
    min-width: 180px;
    text-align: center;
}

@media (max-width: 1450px) {
    .index-about {
        height: 170px;
    }

    .index-about .item {
        flex-direction: column;
    }
}

@media (orientation: portrait) {
    .index-about {
        height: 250px;
        margin-bottom: 20px;
    }

    .index-about .item {
        width: 50%;
        height: 50%;
        padding: 0;
        justify-content: center;
        align-items: center;
    }

    .index-about .item div:nth-of-type(1) img {
        height: 25px;
    }
}

/* 首页4个盒子的介绍 end*/
/* 提交需求 start*/
.apply {
    padding: 50px 0;
}

.apply .tit {
    text-align: center;
}

.apply .tit b {
    font-weight: 500;
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
}

.apply .tit b span {
}

.apply .tit b span:nth-of-type(1) {
}

.apply .tit p {
    font-size: 2em;
    margin-bottom: 20px;
}

@media (orientation: portrait) {
    .apply {
        padding: 20px 0;
    }
    .apply .tit b {
        font-size: 1.8em;
    }

    .apply .tit p {
        font-size: 1.3em;
    }
}

.apply form {
    height: 54px;
}

.apply form input {
    line-height: 50px;
    font-size: 1.2em;
    padding-left: 1em;
    box-sizing: border-box;
}

.apply form input:nth-of-type(1) {
    width: 40%;
}

.apply form input:nth-of-type(2) {
    width: 20%
}

.apply form input:nth-of-type(3) {
    width: 20%
}

@media (orientation: portrait) {
    .apply form {
        height: unset;
    }

    .apply form input,.apply form button {
        display: block;
        width: 100% !important;
        margin-bottom: 6px;
    }
}

.apply form button {
    background: #ffb000;
    color: #fff;
    border: 0;
    height: 54px;
    width: 14%;
}

/* 提交需求 end*/
/* 可以做的项目 start*/
.goods {
    padding-bottom: 40px;
    padding-top: 50px;
    display: flex;
}

.goods:after {
    content: '';
    display: block;
    clear: both;
}

.goods .item {
    display: inline-block;
    width: 18%;
    margin-right: 2.1%;
    color: #555;
    box-sizing: border-box;
    padding: 20px;
    padding-bottom: 50px;
    background: #fff;
    float: left;
    cursor: pointer;
    margin-bottom: 40px;
}

@media (max-width: 1350px) and (orientation:landscape) {
    .goods .item {
        width: 30%;
        margin-right: 5%;
    }

    .goods .item:nth-of-type(3) {
        margin-right: 0;
    }
}

@media (orientation: portrait) {
    .goods {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin-bottom: 20px;
        padding: 0 2%;
    }

    .goods .item {
        width: 48%;
        padding: 6px;
        margin-right: 4%;
        margin-bottom: 20px;
    }

    .goods .item:nth-of-type(2n) {
        margin-right: 0;
    }

    .goods .item:last-child {
        display: none;
    }
}

.goods .item:hover {
    box-shadow: 0 0 19px #adadad;
}

.goods .item img {
    width: 100%;
}

.goods .item:last-child {
    margin-right: 0;
}

.goods .item b {
    font-size: 1.2em;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.goods .item p {
}

/* 可以做的项目 end*/
/* 首页案例展示 start*/
.cases {
    background-image: url(/static/image/case_study.jpg);
    position: relative;
}

.cases .sidenav {
    position: absolute;
    left: 2%;
    margin-top: 100px;
    width: 14%;
}

@media (orientation: portrait) {
    .cases .sidenav {
        display: none;
    }
}

.cases .sidenav .item {
    padding: 40px 0px;
    background: #ffffff29;
    text-align: center;
    border-top: 2px solid #ffffff96;
    display: block;
    cursor: pointer;
}

.cases .sidenav .item:hover,.cases .sidenav .item.active {
    background: #faac00;
}

.cases .sidenav .item:nth-of-type(1) {
    border-top: 0;
}

.cases .sidenav .item img {
}

.cases .sidenav .item span {
    color: #fff;
    display: block;
}

.cases .case-study {
    width: 85%;
    color: #fff;
    padding-left: 29%;
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (orientation: portrait) {
    .cases .case-study {
        width: 94%;
        padding-left: 3%;
    }
}

.cases .case-study .title {
    text-align: center;
    margin-bottom: 50px;
}

.cases .case-study .title p {
    font-size: 1.5em;
}

.cases .case-study .title b {
    font-size: 3em;
}

.cases .case-study .con {
    margin-bottom: 60px;
}

@media (orientation: portrait) {
    .cases .case-study .con {
        margin-bottom: 20px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.cases .case-study .con:after {
    content: '';
    clear: both;
    display: block;
}

.cases .case-study .con .case-item {
    display: inline-block;
    text-align: center;
    width: 22%;
    margin-right: 4%;
    float: left;
    transition: all .4s;
}

.cases .case-study .con .case-item:hover {
    transform : scale(1.1);
}

@media (orientation: portrait) {
    .cases .case-study .con .case-item {
        width: 44%;
        margin-bottom: 30px;
        margin-left: 4%;
        margin-right: 0;
    }
}

.cases .case-study .con .case-item:nth-of-type(4) {
    margin-right: 0;
}

.cases .case-study .con .case-item img {
    width: 150px;
    height: 150px;
    background: #ffffff40;
    border-radius: 50%;
    padding: 9px 9px 8px 10px;
}
@media (max-width: 1450px){
    .cases .case-study .con .case-item img {
        width: 120px;
        height: 120px;
        padding: 9px 9px 8px 10px;
    }
}
@media (max-width: 1200px){
    .cases .case-study .con .case-item img {
        width: 100px;
        height: 100px;
        padding: 9px 9px 8px 10px;
    }
}
@media (max-width: 1000px){
    .cases .case-study .con .case-item img {
        width: 80px;
        height: 80px;
        padding: 5px 5px 5px 5px;
    }
}
@media (orientation: portrait) {
    .cases .case-study .con .case-item img {
        width: 120px;
        height: 120px;
        padding: 9px 9px 8px 10px;
    }
}
.cases .case-study .con .case-item div:nth-of-type(1) {
    padding: 10px 11px 7px 11px;
    margin-bottom: 20px;
    border: 0;
}

@media (orientation: portrait) {
    .cases .case-study .con .case-item div:nth-of-type(1) {
        padding: 5px 5px 2px 5px;
    }
}

.cases .case-study .con .case-item div:nth-of-type(2) {
    color: #fff;
}

.cases .case-study .case-detail {
}

@media (orientation: portrait) {
    .cases .case-study .case-detail {
        width: 90%;
        margin-left: 5%;
    }
}

.cases .case-study .case-detail b {
    font-size: 1.2em;
    margin-bottom: 15px;
    display: block;
}

.cases .case-study .case-detail p {
    margin-bottom: 15px;
}

.cases .case-study .case-detail a {
    padding: 10px 30px;
    border: 1px solid;
    display: inline-block;
    color: #fff;
}

/* 首页案例展示 end*/
/* 开发流程 start*/
.flow {
    margin-bottom: 50px;
    background-image: url('/static/image/flow_bg.png');
    color: #fff;
    padding: 65px 0 0px 0;
    background-size: cover;
}

.flow .title {
    text-align: center;
    margin-bottom: 40px;
}

.flow .title b {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.flow .title p {
}

.flow_chart {
}

.flow_chart:after {
    content: '';
    clear: both;
    display: block;
}

.flow_chart .item {
    display: inline-block;
    vertical-align: top;
    background: #393d42;
    height: 100px;
    margin-bottom: 120px;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
    text-align: justify;
    float: left;
    position: relative;
}

.flow_chart .item:after {
    background-size: auto 100%;
    background-position-x: center;
    background-repeat: no-repeat;
    background-image: url(/static/image/arrow.png);
    display: inline-block;
    position: absolute;
    content: '';
    height: 37px;
}

@media (min-width: 1550px) {
    .flow_chart .item {
        width: 13%;
        margin-right: 8.7%;
    }

    .flow_chart .item:after {
        width: 67%;
        right: -67%;
        top: 32px;
    }

    .flow_chart .item:nth-of-type(5n) {
        margin-right: 0;
    }

    .flow_chart .item:nth-of-type(5):after {
        transform: rotate(90deg);
        left: 0;
        right: 0;
        margin: 0 auto;
        bottom: -77px;
        top: unset;
    }

    .flow_chart .item:nth-of-type(6):after,.flow_chart .item:nth-of-type(7):after,.flow_chart .item:nth-of-type(8):after,.flow_chart .item:nth-of-type(9):after {
        transform: rotate(180deg);
    }

    .flow_chart .item:nth-of-type(10):after {
        display: none;
    }
}

@media (max-width: 1550px) and (min-width: 1000px) {
    .flow_chart .item {
        width: 16%;
        margin-right: 12%;
    }

    .flow_chart .item:after {
        width: 75%;
        height: 37px;
        right: -75%;
        top: 32px;
    }

    .flow_chart .item:nth-of-type(4n) {
        margin-right: 0;
    }

    .flow_chart .item:nth-of-type(4):after {
        transform: rotate(90deg);
        left: 0;
        right: 0;
        margin: 0 auto;
        bottom: -77px;
        top: unset;
    }

    .flow_chart .item:nth-of-type(5):after,.flow_chart .item:nth-of-type(6):after,.flow_chart .item:nth-of-type(7):after {
        transform: rotate(180deg);
    }

    .flow_chart .item:nth-of-type(8):after {
        display: none;
    }

    .flow_chart .item:nth-of-type(9):after {
        top: -77px;
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: rotate(90deg);
    }

    .flow_chart .item:nth-of-type(10):after {
        right: unset;
        left: -75%;
    }
}

@media (max-width: 1000px) {
    .flow_chart .item {
        width: 30%;
        margin-right: 5%;
        margin-bottom: 30px;
    }

    .flow_chart .item:after {
        display: none;
    }

    .flow_chart .item:nth-of-type(3n) {
        margin-right: 0;
    }

    .flow_chart .item:nth-of-type(1) b:before {
        content: '1.';
    }

    .flow_chart .item:nth-of-type(2) b:before {
        content: '2.';
    }

    .flow_chart .item:nth-of-type(3) b:before {
        content: '3.';
    }

    .flow_chart .item:nth-of-type(4) b:before {
        content: '4.';
    }

    .flow_chart .item:nth-of-type(5) b:before {
        content: '5.';
    }

    .flow_chart .item:nth-of-type(6) b:before {
        content: '6.';
    }

    .flow_chart .item:nth-of-type(7) b:before {
        content: '7.';
    }

    .flow_chart .item:nth-of-type(8) b:before {
        content: '8.';
    }

    .flow_chart .item:nth-of-type(9) b:before {
        content: '9.';
    }

    .flow_chart .item:nth-of-type(10) b:before {
        content: '10.';
    }
}

.flow_chart .item b {
    color: #ffb000;
    font-size: 1.2em;
    margin-bottom: 10px;
    display: block;
}

.flow_chart .item p {
    color: #bbb;
}
@media (orientation: portrait) {
    .flow{
        padding-top: 20px;
        margin-bottom: 0;
    }
}

/* 开发流程 end*/
/* 软件优势 start*/
.advantage {
}

.advantage:after {
    content: '';
    clear: both;
    display: block;
}

.advantage .title {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.advantage .title p {
    font-size: 1.5em;
}

.advantage .title b {
    font-size: 3em;
}

.advantage .con {
}

.advantage .con>div {
    display: inline-block;
    text-align: center;
    width: 20%;
    float: left;
    margin-bottom: 40px;
    box-sizing: border-box;
}
.advantage .con>div:nth-of-type(6){
    clear:both;
}
@media (orientation: portrait) {
    .advantage .title{
        margin: 15px auto;
    }
    .advantage .con>div {
        width: 33.3%;
        padding: 0 5px;
    }

    .advantage .con>div:nth-of-type(7),.advantage .con>div:nth-of-type(8),.advantage .con>div:nth-of-type(9),.advantage .con>div:nth-of-type(10) {
        display: none;
    }

    .advantage .con>div:nth-of-type(6){
        clear:none;
    }
}

.advantage .con>div img {
    max-width: 100%;
}

.advantage .con>div b {
    display: block;
    margin-bottom: 20px;
}

.advantage .con>div p {
}

/* 软件优势 end*/
/* 联系我们 start*/
.contact {
    background-image: url('/static/image/contact_bg.png');
    padding-top: 110px;
    color: #fff;
    position: relative;
}

.contact .left {
    display: inline-block;
    width: 40%;
    margin-left: 10%;
    padding-bottom: 50px;
}

.contact .left .yellow {
    color: #ffc106;
    margin-bottom: 20px;
}

.contact .left .yellow .date {
    display: inline-block;
    font-size: 5em;
}

.contact .left .yellow .date span {
}

.contact .left .yellow .desc {
    display: inline-block;
    font-size: 22px;
    margin-left: 13px;
}

.contact .left .yellow .desc b {
}

.contact .left .yellow .desc p {
}

.contact .left .white {
}

.contact .left .white b {
    font-size: 2em;
    margin-bottom: 12px;
    display: block;
}

.contact .left .white p {
    margin-bottom: 10px;
}

.contact .left .white a {
    background: #ffc106;
    color: #fff;
    border: 0;
    font-size: 1.2em;
    padding: 5px 50px;
    border-radius: 5px;
    display: inline-block;
}

.contact .right {
    display: inline-block;
    width: 40%;
    background: #3a3a3a;
    padding: 35px;
    float: right;
    margin-right: 5%;
    max-width: 600px;
    position: absolute;
    right: 0;
    top: 55px;
}

.contact .right>* {
    display: block;
}

.contact .right b {
    font-size: 2em;
    margin-bottom: 20px;
}

.contact .right b span {
    color: #555;
    margin-left: 20px;
}

.contact .right input {
    background: #4b4b4b;
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2em;
    padding: 5px 10px;
    border: 1px solid #6d6d6d;
    border-radius: 6px;
    outline: none;
}

.contact .right textarea {
    background: #4b4b4b;
    color: #fff;
    padding: 10px;
    margin-bottom: 15px;
    width: 100%;
    font-size: 1.2em;
    height: 100px;
    border: 1px solid #6d6d6d;
    border-radius: 6px;
    outline: none;
}

.contact .right button {
    background: #ffc106;
    color: #fff;
    border: 0;
    font-size: 1.2em;
    padding: 5px 50px;
    border-radius: 5px;
}

@media (max-width: 1250px) {
    .contact .left {
        width: 30%;
        margin-left: 5%;
    }

    .contact .right {
        width: 46%;
        top: 100px;
    }
}

@media (orientation: portrait) {
    .contact {
        padding-top: 0;
    }

    .contact .left {
        display: block;
        float: none;
        width: 100%;
        padding: 5%;
        margin: 0 auto;
    }

    .contact .right {
        display: block;
        float: none;
        width: 100%;
        padding: 5%;
        position: relative;
        top: 0;
        margin: 0;
        max-width: unset;
        box-sizing: border-box;
    }

    .contact .right textarea {
        width: 80%;
    }

    .contact .left .yellow .desc {
        margin-left: 0;
        display: block;
    }
}

/* 联系我们 end*/
/* 公用底部 start*/
.footer {
    background: #faac00;
    padding-top: 100px;
}

.footer>* {
    display: inline-block;
}

.footer .left {
    margin-left: 10%;
}

.footer .left ul {
    display: inline-block;
    margin-right: 100px;
}

.footer .left ul li {
    list-style: none;
    margin-bottom: 8px;
}

.footer .left ul li a {
    color: #000;
    text-decoration: none;
}

.footer .middle {
    text-align: center;
    display: none;
}

.footer .middle img {
}

.footer .middle p {
}

.footer .right {
    float: right;
    margin-right: 10%;
}

.footer .right .tel {
    background: #fff;
    font-size: 2.5em;
    font-weight: 700;
    padding: 10px 20px;
    display: inline-block;
}

.footer .right .tel img {
    vertical-align: bottom;
    margin-bottom: 2px;
    margin-right: 10px;
}

.footer .right .icp {
    margin-top: 30px;
}

.footer .right .icp img {
    height: 20px;
    vertical-align: bottom;
    margin-right: 6px;
}

.footer .anchor {
    display: block;
    width: 100%;
    text-align: center;
    height: 130px;
    background: #000;
    color: #fff;
    overflow: hidden;
    margin-top: 30px;
}

.footer .anchor:before {
    content: '';
    width: 50px;
    height: 50px;
    background: #faac00;
    display: inline-block;
    transform: rotate(45deg);
    position: relative;
    top: -35px;
}

.footer .anchor a {
    display: block;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 16px;
    color: #fff;
}

@media (orientation: portrait) {
    .footer {
        padding-top: 0;
    }

    .footer .left {
        display: none;
    }

    .footer .middle {
        float: left;
        width: 30%;
        margin-left: 5%;
        margin-bottom: 20px;
        display: none;
    }

    .footer .right {
        float: left;
        margin-right: 0;
        margin-left: 5%;
        width: 60%;
        display: none;
    }

    .footer .right .tel {
        font-size: 1.5em;
        padding: 4px;
    }

    .footer .right .tel img {
        width: 20px;
    }
    .footer .anchor {
        margin-top: 0;
    }
}

/* 公用底部 end*/
/*导航 start*/
.navigate {
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: linear-gradient(#4949499e, #9d9d9d99);
}

.navigate .left {
    height: 60px;
    display: block;
    padding-top: 10px;
    text-align: left;
    margin-left: 15px;
}

.navigate .left img {
    height: 100%;
}

.navigate .left img:hover {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
}

.navigate .con {
    display: inline-block;
    height: 100%;
}

.navigate .con {
    margin: auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-left: 80px;
    padding-bottom: 10px;
}

.navigate .con a {
    line-height: 30px;
    color: white;
    margin-right: 40px;
    text-decoration: none;
}

.navigate .con a:nth-last-of-type(1) {
    margin-right: 0;
}

.navigate .con a.active {
    color: #ffa861;
}

.navigate .con a:hover {
    color: #ffa861;
    position: relative;
}

.navigate .right {
    color: white;
    height: 71px;
    display: block;
    position: absolute;
    right: 20px;
    padding-top: 10px;
    top: 17px;
    font-size: 1.3em;
    letter-spacing: 1px;
}

.navigate .right img {
    color: #fff;
    margin-right: 10px;
    display: none;
}

.navigate .right a {
    text-decoration: none;
}

.navigate .right .tel {
    color: white;
    margin-right: 30px;
}

@media (max-width: 1440px) {
    .navigate .con a {
        margin-right: 40px;
    }
}

@media (max-width: 1240px) {
    .navigate .con a {
        margin-right: 32px;
    }
    .navigate .con {
        width: 60%;
    }
}

@media (max-width: 1110px) and (orientation:landscape) {
    .navigate .con a {
        margin-right: 22px;
    }
}

@media (max-width: 1000px) and (orientation:landscape) {
    .navigate .con {
        position: fixed;
        z-index: 55;
        background-color: #000;
        background-color: #000000e8;
        left: 0;
        width: 200px;
        margin-top: 80px;
        display: none;
    }

    .navigate .con a {
        display: block;
        text-align: left;
        padding-left: 70px;
        line-height: 30px;
        margin-top: 40px;
    }

    .navigate .con a:hover:after {
        bottom: 0;
        top: unset;
        margin-left: 70px;
    }
}

/*同上*/
@media (orientation:portrait) {
    .navigate {
        background-color: #000;
        background-color: #000000e8;
        height: 60px;
        display: flex;
    }

    .navigate .right {
        height: auto;
        top: unset;
        padding-top: 20px;
    }

    .navigate .right img {
        margin-right: 0px;
        width: 26px;
        display: block;
    }

    .navigate .right .tel {
        margin-right: 5px;
    }
    .navigate .left {
        height: 43px;
        left: 0px;
        padding-top: 8px;
    }

    .navigate .con {
        position: fixed;
        z-index: 55;
        background-color: #555555;
        background-color: #555555eb;
        left: 0;
        width: 200px;
        margin-top: 60px;
        overflow-y: scroll;
        padding-bottom: 150px;
        display: none;
    }

    .navigate .con a {
        display: block;
        text-align: left;
        padding-left: 0;
        line-height: 30px;
        margin-top: 40px;
    }

    .navigate .con a:hover:after {
        bottom: 0;
        top: unset;
        margin-left: 70px;
    }
}

@media (min-width: 1001px) and (orientation:landscape) {
    .navigate .con {
        /*display: block !important;*/
    }

    .navigate .right .tel {
        margin-right: 0;
    }

    .navigate .right .nav {
        display: none;
    }
}

@media (min-height: 0) and (max-height: 600px) {
    .navigate {
        height: 50px;
    }

    .navigate .left {
        height: 50px;
        padding-top: 2px;
    }

    .navigate .con a {
        line-height: 50px;
    }
}

/*导航 end*/
/*网站 start*/
.wechar_top {
    background-size: 100% auto;
    position: relative;
}

.wechar_top .bg {
    width: 100%;
}

.wechar_top .item {
    width: 350px;
    color: #333;
    margin-top: 110px;
    background: #fff;
    border-radius: 10px;
    padding: 55px 40px;
    position: absolute;
    top: 100px;
    left: 250px;
    box-shadow: 0px 0px 15px #afafaf;
}

.wechar_top .item .title {
    margin-bottom: 20px;
}

.wechar_top .item .title b {
    font-size: 3em;
    margin-bottom: 10px;
    display: block;
}

.wechar_top .item .title p {
    font-size: 1.5em;
    color: #777;
}

.wechar_top .item .con {
    color: #777;
    text-indent: 2em;
    line-height: 2em;
}

.wechar_top .item .con p {
}

@media (max-width: 1250px) {
    .wechar_top {
        background-image: url('/static/image/wechar/bg1.png');
        background-size: auto 100%;
        padding-bottom: 20px;
        overflow: hidden;
    }

    .wechar_top .bg {
        display: none;
    }

    .wechar_top .item {
        position: relative;
        top: 0;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        width: 85%;
        padding: 20px;
    }
}

.wechar_box {
    margin-top: 30px;
}

.wechar_box .title {
    text-align: center;
}

.wechar_box .title img {
}

.wechar_box .title b {
    font-size: 2em;
    display: block;
}

.wechar_box .item {
    position: relative;
}

.wechar_box .item:after {
    content: '';
    clear: both;
    display: block;
}

.wechar_box .item img {
    height: 500px;
    max-width: 100%;
}

.wechar_box .item .dialog {
    margin-top: 170px;
    width: 290px;
    box-shadow: 0px 0px 31px #cccccc;
    background: #fff;
    position: relative;
    padding: 28px;
    border-radius: 7px;
}

.wechar_box .item:nth-of-type(2n-1) img {
    float: left;
}

.wechar_box .item:nth-of-type(2n-1) .dialog {
    float: left;
    margin-left: 60px;
}

.wechar_box .item:nth-of-type(2n) img {
    float: right;
}

.wechar_box .item:nth-of-type(2n) .dialog {
    float: right;
    margin-right: 60px;
}

.wechar_box .item:nth-of-type(2n-1) .dialog::after {
    content: "";
    position: absolute;
    top: 38px;
    left: -23px;
    z-index: 999;
    width: 0;
    height: 0;
    border: 12px solid transparent;
    border-right: 12px solid #fff;
}

.wechar_box .item:nth-of-type(2n) .dialog::after {
    content: "";
    position: absolute;
    top: 38px;
    right: -23px;
    z-index: 999;
    width: 0;
    height: 0;
    border: 12px solid transparent;
    border-left: 12px solid #fff;
}

.wechar_box .item .dialog b {
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

.wechar_box .item .dialog p {
}

@media (orientation: portrait) {
    .wechar_box .item img {
        height: unset;
        width: 100%;
    }

    .wechar_box .item .dialog {
        position: absolute;
        margin-top: 70px;
    }
}

.wechar_plan {
    background: #ededf7;
    padding-top: 40px;
    padding-bottom: 60px;
}

.wechar_plan .title {
    text-align: center;
    margin-bottom: 30px;
}

.wechar_plan .title b {
    font-size: 2em;
    margin-bottom: 10px;
    display: block;
}

.wechar_plan .title p {
    font-size: 1.2em;
}

.wechar_plan .con {
}

.wechar_plan .con:after {
    content: '';
    clear: both;
    display: block;
}

.wechar_plan .con .item {
    width: 20%;
    display: inline-block;
    text-align: right;
    margin-right: 6.6%;
    float: left;
    box-shadow: 0 0 12px #777;
    padding-bottom: 40px;
}

.wechar_plan .con .item:last-child {
    margin-right: 0;
}

.wechar_plan .con .item img {
    width: 85%;
    margin-bottom: 25px;
}

.wechar_plan .con .item .text {
    text-align: center;
}

.wechar_plan .con .item .text b {margin-bottom: 10px;font-size: 1.4em;}

.wechar_plan .con .item .text p {
}

@media (orientation: portrait) {
    .wechar_plan .con .item {
        width: 47%;
        margin-right: 6%;
        margin-bottom: 30px;
    }

    .wechar_plan .con .item:nth-of-type(2n) {
        margin-right: 0;
    }

    .wechar_plan .con .item:nth-of-type(2n+1) {
        clear: both;
    }
}

/*网站 end*/
/*系统开发 start*/
.sys_top {
    background-image: url(/static/image/system/top_bg.jpg);
    padding: 120px 0;
    background-size: cover;
}

.sys_top .left {
    width: 28%;
    vertical-align: top;
    display: inline-block;
    color: #fff;
    margin-top: 100px;
    margin-left: 18%;
    margin-right: 8%;
}

.sys_top .left b {
    font-size: 4em;
    font-weight: 500;
    display: block;
    margin-bottom: 22px;
}

.sys_top .left p {
    font-size: 1.3em;
}

.sys_top .right {
    width: 24%;
    vertical-align: top;
    display: inline-block;
    margin-top: 40px;
}

@media (orientation: portrait) {
    .sys_top .left {
        width: 80%;
        margin-left: 10%;
        margin-top: 12%;
    }

    .sys_top .right {
        display: none;
    }
}

.develop {
    margin-top: 60px;
}

.develop .title {
    text-align: center;
}

.develop .title b {
    font-size: 3em;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.develop .title i {
    font-style: normal;
    margin-bottom: 14px;
    display: block;
    font-size: 1.5em;
}

.develop .title p {
    line-height: 26px;
}

.develop .con {
    padding: 50px 0;
    text-align: center;
}

.develop .con .item {
    display: inline-block;
    vertical-align: top;
    width: 22%;
    margin-right: 5%;
}

.develop .con .item:last-child {
    margin-right: 0;
}

.develop .con .item .img {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: inline-block;
    box-shadow: 0 0 14px 8px #cae3ff;
    text-align: center;
    margin-bottom: 15px;
}

.develop .con .item .img img {
    display: inline-block;
    width: 54%;
    margin-top: 18px;
}

.develop .con .item b {
    display: block;
}

.develop .con .item i {
    font-style: normal;
    margin-bottom: 20px;
    display: block;
}

.develop .con .item p {
    text-align: left;
}

@media (orientation: portrait) {
    .develop .con .item p {
        display: none;
    }
}

.iframe {
    margin-top: 50px;
}

.iframe .title {
    text-align: center;
}

.iframe .title b {
    font-size: 3em;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.iframe .title i {
    font-style: normal;
    margin-bottom: 14px;
    display: block;
    font-size: 1.5em;
}

.iframe .title p {
}

.iframe .con {
    margin-top: 40px;
}

.iframe .con .left {
    background: #ededf7;
    padding: 35px 25px;
    display: inline-block;
    width: 40%;
    vertical-align: top;
}

@media (orientation: portrait) {
    .iframe {
    }

    .iframe .con .left {
        width: 100%;
        box-sizing: border-box;
    }

    .iframe .con .right {
        margin-bottom: 30px;
    }
}

.iframe .con .left b {
    font-size: 1.6em;
    font-weight: 500;
    display: block;
}

.iframe .con .left b:after {
    content: '';
    display: block;
    width: 90px;
    height: 5px;
    background: #348cff;
    margin-bottom: 15px;
    margin-top: 5px;
}

.iframe .con .left p {
    line-height: 2em;
}

.iframe .con .right {
    display: inline-block;
    width: 35%;
    vertical-align: top;
    float: right;
}

.analyze {
    clear: both;
    background: #4d80fd;
}

.analyze .left {
    display: inline-block;
    width: 40%;
    vertical-align: top;
    text-align: right;
}

.analyze .left img {
    width: 300px;
    position: relative;
    right: -130px;
    margin-top: 38px;
}

.analyze .right {
    display: inline-block;
    width: 60%;
    vertical-align: top;
    float: right;
    background-color: #b1c4e3;
    color: #222;
    padding-left: 10%;
    box-sizing: border-box;
    padding-top: 40px;
    padding-bottom: 30px;
}

@media (orientation: portrait) {
    .analyze .left {
        display: none;
    }

    .analyze .right {
        padding-left: 6%;
        width: 100%;
    }

    .analyze .right .nan_list {
        width: 88%;
    }

    .analyze .right .nan_list .item {
    }
}

.analyze:after {
    content: '';
    clear: both;
    display: block;
}

.analyze .right>b {
    font-size: 1.7em;
    display: block;
    font-weight: 500;
    margin-bottom: 15px;
}

.analyze .right>p {
    line-height: 1.7em;
}

.nan_list {
    width: 55%;
    margin-top: 20px;
}

.nan_list .item {
    clear: both;
}

.nan_list .item .img {
    float: left;
    background: #fff;
    border-radius: 9px;
    width: 70px;
    height: 70px;
    display: inline-block;
    text-align: center;
    margin-bottom: 15px;
    margin-right: 15px;
}

.nan_list .item .img img {
    margin-top: 11px;
}

.nan_list .item b {
    font-size: 1.3em;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.nan_list .item:nth-of-type(1) b {
    color: #ff7e00;
}

.nan_list .item:nth-of-type(2) b {
    color: #ff2121;
}

.nan_list .item:nth-of-type(3) b {
    color: #2185ff;
}

.nan_list .item p {
}

/*系统开发 end*/
/*商城开发 start*/
.shop_top {
    background-image: url(/static/image/shop/top_bg.jpg);
    padding-top: 150px;
    background-position-y: bottom;
    height: 592px;
}

.shop_top .con {
    display: inline-block;
    vertical-align: top;
    color: #fff;
    margin-left: 12%;
}

.shop_top .con b {
    font-size: 4em;
    display: block;
    margin-bottom: 30px;
}

.shop_top .con p {
    font-size: 1.3em;
    line-height: 2em;
}

.shop_top img {
    width: 27%;
    display: inline-block;
    float: right;
    margin-right: 12%;
    vertical-align: top;
}

@media (orientation: portrait) {
    .shop_top {
        padding-top: 180px;
        height: 500px;
        background-size: cover;
    }

    .shop_top .con b {
        font-size: 3em;
    }

    .shop_top img {
        display: none;
    }
}

.shop_develop {
    clear: both;
}

.shop_develop .title {
    text-align: center;
    margin-bottom: 100px;
}

.shop_develop .title b {
    font-size: 2.5em;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.shop_develop .title p {
}

.shop_develop .con {
}

.shop_develop .con:after {
    content: '';
    clear: both;
    display: block;
}

.shop_develop .con .item {
    vertical-align: top;
    width: 20%;
    display: inline-block;
    text-align: center;
    margin-right: 6.6%;
    float: left;
    box-shadow: 0 0 12px #777;
    padding-bottom: 65px;
    background-size: cover;
    position: relative;
}

.shop_develop .con .item .bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    overflow: hidden;
    width: 100%;
    text-align: center;
}

.shop_develop .con .item .bg img {
    height: 100%;
    filter: blur(6px);
}

.shop_develop .con .item:nth-of-type(1) {
    color: #fc655c;
}

.shop_develop .con .item:nth-of-type(2) {
    color: #513eaa;
}

.shop_develop .con .item:nth-of-type(3) {
    color: #f07124;
}

.shop_develop .con .item:nth-of-type(4) {
    color: #057454;
}

.shop_develop .con .item:last-child {
    margin-right: 0;
}

.shop_develop .con .item .img {
    vertical-align: top;
    width: 60%;
    margin: 0 auto;
    position: relative;
    top: -60px;
}

.shop_develop .con .item .img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.shop_develop .con .item b {
    font-size: 1.5em;
    display: block;
    margin-bottom: 12px;
}

.shop_develop .con .item p {
    color: #fff;
}

.shop_develop .con .item a {
    padding: 10px 20px;
    color: #fff;
    margin-top: 30px;
    display: inline-block;
    text-decoration: none;
    border-radius: 20px;
}

.shop_develop .con .item:nth-of-type(1) a {
    background-image: linear-gradient(to right, #ffc49a , #ff9c9a);
}

.shop_develop .con .item:nth-of-type(2) a {
    background-image: linear-gradient(to right, #aa5fed , #543eab);
}

.shop_develop .con .item:nth-of-type(3) a {
    background-image: linear-gradient(to right, #f9d380 , #ef7023);
}

.shop_develop .con .item:nth-of-type(4) a {
    background-image: linear-gradient(to right, #93fbbc , #0f8263);
}

@media (max-width: 1550px) {
    .shop_develop .con .item {
        width: 23%;
        margin-right: 2.6%;
    }
}

@media (max-width: 1050px) {
    .shop_develop .title {
        margin-bottom: 50px;
    }

    .shop_develop .con .item {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 70px;
        padding-bottom: 25px;
    }

    .shop_develop .con .item:nth-of-type(2n) {
        margin-right: 0;
    }

    .shop_develop .con .item .img {
        top: -30px;
    }
}

.shop_lang {
    background-image: url('/static/image/shop/lang_bg.png');
    padding: 120px 0 80px 0;
    text-align: center;
}

.shop_lang .title {
    display: block;
    text-align: center;
    font-size: 2em;
    font-weight: 500;
    margin-bottom: 50px;
}

.shop_lang .con {
    display: inline-block;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.shop_lang .con:after {
    content: '+';
    background: #6a60ff;
    width: 80px;
    height: 80px;
    display: block;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #fff;
    font-size: 4em;
    line-height: 74px;
    text-align: center;
    border-radius: 50%;
}

.shop_lang .con .item {
    display: inline-block;
    vertical-align: top;
    width: 400px;
    text-align: center;
    background: #fff;
    padding: 100px 0;
}

.shop_lang .con .item:nth-of-type(1) {
    margin-right: 20px;
}

.shop_lang .con .item img {
    margin-bottom: 8px;
}

.shop_lang .con .item b {
    color: #6a60ff;
    margin-bottom: 20px;
}

.shop_lang .con .item p {
}

@media (orientation: portrait) {
    .shop_lang {
        padding: 30px 0;
    }

    .shop_lang .title {
        font-size: 1.3em;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .shop_lang .con {
        width: 100%;
        border-radius: 0;
    }

    .shop_lang .con .item {
        width: 45%;
        padding: 30px 0;
    }

    .shop_lang .con .item:nth-of-type(1) {
        margin-right: 5%;
    }

    .shop_lang .con:after {
        top: 60px;
        width: 60px;
        height: 60px;
        line-height: 54px;
    }
}

.shop_adv {
    overflow: hidden;
    text-align: center;
}

.shop_adv .title {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 40px;
}

.shop_adv .title b {
    font-size: 2em;
    margin-bottom: 20px;
}

.shop_adv .title p {
}

.shop_adv .con {
    max-width: 1000px;
    background-image: url('/static/image/shop/advantage.png');
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position-x: center;
    background-position-y: center;
}

.shop_adv .con:after {
    content: '';
    clear: both;
    display: block;
}

.shop_adv .con .left {
    width: 240px;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    float: left;
}

.shop_adv .con .right {
    width: 240px;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    float: right;
}

.shop_adv .con .item {
    margin-bottom: 40px;
}

.shop_adv .con .item b {
    margin-bottom: 20px;
    font-size: 1.5em;
}

.shop_adv .con .item p {
    line-height: 1.6em;
}

@media (orientation: portrait) {
    .shop_adv .con {
        background-size: auto 50%;
    }

    .shop_adv .con .item {
        padding: 10px;
        background: #ffffff8c;
    }

    .shop_adv .con .left,.shop_adv .con .right {
        width: 45%;
    }
}

/*商城开发 end*/
/* 小程序开发 start*/
.minapp_top {
    background-image: url(/static/image/minapp/top_bg.jpg);
    padding-top: 150px;
    background-position-y: top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 80vh;
}

.minapp_top .con {
    display: inline-block;
    vertical-align: top;
    color: #fff;
    margin-left: 12%;
}

.minapp_top .con b {
    font-size: 4em;
    display: block;
    margin-bottom: 30px;
}

.minapp_top .con p {
    font-size: 1.2em;
    line-height: 2em;
}

.minapp_top img {
    display: inline-block;
    vertical-align: top;
    float: right;
    margin-right: 12%;

}
@media (max-width: 1250px){
    .minapp_top img{
        width: 26%;
    }
}
@media (min-width: 1250px){
    .minapp_top img{
        height: 390px;
    }
}
@media (orientation: portrait) {
    .minapp_top {
        background-size: cover;
        height: 500px;
    }

    .minapp_top img {
        display: none;
    }
}

.minapp-function {
    padding: 60px 0;
}

.minapp-function:after {
    content: '';
    clear: both;
    display: block;
}
.minapp-function.web-function .item{
    color: #1d8072;
}
.minapp-function .item {
    display: inline-block;
    width: 25%;
    background: #fff;
    vertical-align: top;
    padding: 40px;
    box-sizing: border-box;
    margin-right: 12.5%;
    border-radius: 20px;
    color: #402e8a;
    float: left;
}

@media (max-width: 1450px) {
    .minapp-function .item {
        width: 30%;
        padding: 30px;
        margin-right: 5%;
    }
}

.minapp-function .item {
    box-shadow: 0 0 30px #dcdcdc;
}

.minapp-function .item:nth-of-type(1),.minapp-function .item:nth-of-type(3) {
    box-shadow: 0 0 200px #ede9ff;
}

.minapp-function .item:nth-of-type(3) {
    margin-right: 0;
}

.minapp-function .item img {
    margin-bottom: 20px;
}

.minapp-function .item b {
    margin-bottom: 20px;
    font-size: 1.3em;
}

.minapp-function .item p {
    line-height: 2em;
}

.minapp-function .item a {
}

@media (orientation: portrait) {
    .minapp-function .container {
        width: 100%;
    }

    .minapp-function .item {
        padding: 11px 5px;
        text-align: center;
    }

    .minapp-function .item b {
        font-size: 1.1em;
    }

    .minapp-function .item p {
        text-align: left;
    }
}

.minapp-chart {
    padding: 100px 0;
    background-color: #d8dfe7;
    background-image: url('/static/image/minapp/rate_bg.png');
    background-size: 600px;
    background-position-x: right;
    background-repeat: no-repeat;
    background-position-y: center;
}

.minapp-chart:after {
    content: '';
    clear: both;
    display: block;
}

.minapp-chart .left {
    width: 300px;
    display: inline-block;
    vertical-align: top;
    color: #402e8a;
    margin-left: 10%;
}

.minapp-chart .left b {
    font-size: 2em;
    font-weight: 500;
}

.minapp-chart .left b:nth-of-type(2) {
    margin-bottom: 20px;
}

.minapp-chart .left p {
    font-size: 1.2em;
    margin-bottom: 1.6em;
}

.minapp-chart .right {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    float: right;
}

.minapp-chart .right img {
    width: 100%;
}

@media (orientation: portrait) {
    .minapp-chart .left {
        color: #fff;
    }
}

.minapp-custom {
    padding: 100px 0;
    /* background-image: url('/static/image/minapp/custom_bg.png'); */
    background-size: 100%;
    background-position-x: right;
    background-repeat: no-repeat;
}

.minapp-custom:after {
    content: '';
    clear: both;
    display: block;
}

.minapp-custom .right {
    width: 300px;
    display: inline-block;
    vertical-align: top;
    color: #402e8a;
    margin-left: 10%;
}

.minapp-custom .right b {
    font-size: 2em;
    font-weight: 500;
}

.minapp-custom .right b:nth-of-type(2) {
    margin-bottom: 20px;
}

.minapp-custom .right p {
    font-size: 1.2em;
    margin-bottom: 1.6em;
}

.minapp-custom .left {
    display: inline-block;
    vertical-align: top;
    margin-left: 15%;
}

.minapp-custom .left img {
    width: 200px;
}

@media (orientation: portrait) {
    .minapp-custom .left {
        width: 20%;
        margin-left: 5%;
    }

    .minapp-custom .left img {
        width: 100%;
    }

    .minapp-custom .right {
        width: 70%;
        margin-right: 0;
        margin-left: 4%;
    }
}

.minapp-evaluate {background: #e8e8e8;padding: 40px 0;}

.minapp-evaluate .button {
    margin-bottom: 40px;
}

.minapp-evaluate .button .left {
    padding: 0 50px;
    color: #402e8a;
    font-size: 2.5em;
}

.minapp-evaluate .right {
}

.minapp-evaluate .eval {
}

.minapp-evaluate .eval .swiper-container {
    padding: 0 50px;
    padding-top: 55px;
}

.minapp-evaluate .eval .swiper-container:before {
    content: '';
    background-image: linear-gradient(to bottom right, #3d2e87 , #6b2eba);
    width: 80%;
    height: 150px;
    display: block;
    margin: 0 auto;
    border-radius: 14px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.minapp-evaluate .eval .swiper-slide {
    box-shadow: 0 0 20px #b9b9b9;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
    box-sizing: border-box;
    padding-bottom: 40px;
    background: #fff;
}

.minapp-evaluate .eval .swiper-slide .userinfo {
    margin-bottom: 20px;
}

.minapp-evaluate .eval .swiper-slide .userinfo .left {
    display: inline-block;
}

.minapp-evaluate .eval .swiper-slide .userinfo .left img {
    width: 50px;
}

.minapp-evaluate .eval .swiper-slide .userinfo .left span {
    display: block;
}

.minapp-evaluate .eval .swiper-slide .userinfo .start {
}

.minapp-evaluate .eval .swiper-slide .con {
}

/*小程序开发 end*/
/*网站开发 start*/
.web_top {
    background-image: url(/static/image/web/top_bg.jpg);
    padding-top: 140px;
    background-position-y: bottom;
    height: 480px;
    overflow: hidden;
}

.web_top .con {
    display: inline-block;
    vertical-align: top;
    color: #fff;
    margin-left: 12%;
}

.web_top .con b {
    font-size: 4em;
    display: block;
    margin-bottom: 30px;
}

.web_top .con p {
    font-size: 1.2em;
    line-height: 2em;
}

.web_top img {
    width: 25%;
    display: inline-block;
    vertical-align: top;
    float: right;
    margin-right: 12%;
    position: relative;
}
@media (min-width: 1200px){
    .web_top img{
        width: auto;
        height: 300px;
        top: unset;
    }
}
@media (max-width: 900px){
    .web_top img{
        display: none;
    }
}
@media (orientation: portrait) {
    .web_top {
        padding-top: 90px;
    }

    .web_top img {
        display: none;
    }
}

.web_intro {
    color: #1d8072;
}

.web_intro .title {
    text-align: center;
    margin-bottom: 40px;
}

.web_intro .title b {
    font-size: 2em;
    margin-bottom: 20px;
}

.web_intro .title p {
}

.web_intro .con {
}

.web_intro .con:after {
    content: '';
    clear: both;
    display: block;
}

.web_intro .con .item {
    float: left;
    display: inline-block;
    width: 30%;
    text-align: center;
    vertical-align: top;
    margin-right: 5%;
    margin-bottom: 30px;
    padding: 0 90px;
    box-sizing: border-box;
}

@media (max-width: 1550px) {
    .web_intro .con .item {
        padding: 0 30px;
    }
}

@media (max-width: 1150px) {
    .web_intro .con .item {
        padding: 0 20px;
    }
}

@media (orientation: portrait) {
    .web_intro .con .item {
        width: 47%;
        padding: 0;
    }

    .web_intro .con .item:nth-of-type(2n) {
        margin-right: 0;
    }

    .web_intro .con .item:nth-of-type(2n+1) {
        clear: both;
    }
}

@media (orientation: landscape) {
    .web_intro .con .item:nth-of-type(3n) {
        margin-right: 0;
    }

    .web_intro .con .item:nth-of-type(4) {
        clear: both;
    }
}

.web_intro .con .item img {
}

.web_intro .con .item b {
    margin: 10px 0;
}

.web_intro .con .item p {
    text-align: justify;
}

/*网站开发 end*/
/*案例推荐 start*/
.goods_rcmd {
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
    margin-top: 50px;
}

.goods_rcmd:after {
    content: '';
    background-image: linear-gradient(to bottom right, #3d2e87 , #6b2eba);
    width: 80%;
    height: 470px;
    display: block;
    margin: 0 auto;
    border-radius: 14px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
}

.goods_rcmd .title {
    color: #fff;
    font-size: 2em;
    margin-bottom: 20px;
    margin-top: 30px;
}

.goods_rcmd .but {
    margin-bottom: 50px;
}

.goods_rcmd .but button {
    background: none;
    border: 0;
    color: #fff;
    font-size: 1.2em;
    padding: 10px 28px;
    margin-right: 25px;
    outline: none;
}

.goods_rcmd .but button:hover,.goods_rcmd .but button.active {
    background-color: #8b47de;
    border: 0;
    border-radius: 20px;
    cursor: pointer;
}

.goods_rcmd .but button:last-child {
    margin-right: 0;
}

.goods_rcmd .con {
}

.goods_rcmd .con .item {
}

.goods_rcmd .con .item .swiper-container {
}

.goods_rcmd .con .item .swiper-container .swiper-wrapper {
}

.goods_rcmd .con .item .swiper-container .swiper-wrapper .swiper-slide {
    background: #fff;
    border-radius: 24px;
    padding: 20px 7px 12px 7px;
}

.goods_rcmd .con .item .swiper-container .swiper-wrapper .swiper-slide img {
    height: 200px;
    display: inline-block;
    vertical-align: top;
    border-radius: 10px;
}

.goods_rcmd .con .item .swiper-container .swiper-wrapper .swiper-slide .text {
    display: block;
    vertical-align: top;
    margin-top: 5px;
}

.goods_rcmd .con .item .swiper-container .swiper-wrapper .swiper-slide .text p {
    margin-bottom: 10px;
    color: #555;
}

.goods_rcmd .con .item .swiper-container .swiper-wrapper .swiper-slide .text b {
    font-size: 1.2em;
    color: #444;
}

.goods_rcmd .more {
    color: #fff;
    text-decoration: none;
    background: #8b47df;
    padding: 10px 30px;
    margin-top: 30px;
    display: inline-block;
    border-radius: 20px;
    font-size: 1.2em;
}

@media (orientation: portrait) {
    .goods_rcmd:after {
        width: 90%;
        height: 520px;
    }

    .goods_rcmd .but {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .goods_rcmd .but button {
        margin: 0;
    }

    .goods_rcmd .swiper-button-prev {
        display: none;
    }

    .goods_rcmd .swiper-button-next {
        display: none;
    }
}

/*案例推荐 end*/
/*案例中心 start*/
.cases_top {
    background-image: url('/static/index/images/iMac_bg.png');
    background-size: 100% 100%;
    height: 720px;
    position: relative;
}

.cases_top .left {
    width: 500px;
    color: white;
    display: inline-block;
    margin-top: 225px;
    margin-left: 350px;
    font-size: 20px;
}

.cases_top .left b {
    font-size: 40px;
    font-weight: 500;
}

.cases_top .left p {
    margin-top: 30px;
    line-height: 35px;
    letter-spacing: 1px;
    text-align: justify;
}

.cases_top .left a {
    display: block;
    margin-top: 20px;
    background: #01479d;
    width: 120px;
    text-align: center;
    color: white;
    border-radius: 20px;
    padding: 10px 20px;
    box-sizing: content-box;
}

.cases_top .left i {
    margin-top: 20px;
    display: block;
}

.cases_top .right {
    width: 580px;
    display: inline-block;
    float: right;
    position: absolute;
    right: 0;
    bottom: 100px;
}
.con2{
    margin-left: 10px;
    display: none;
    width: 100%;
}
.con2-a{
    font-size: 12px;
    margin-right: 10px;
    border: 1px solid #9e9e9e;
    padding: 6px 15px;
    border-radius: 13px;
}
.con2-a-active{
    color: #e3a062;
    border: 1px solid #e3a062;
}

.cases_container {
    width: 80%;
    margin: 140px auto 60px auto;
}

.cases_container .cat_box {
    font-size: 50px;
    font-weight: 500;
    margin: 90px auto 50px auto;
    display: block;
    text-align: left;
    width: 100%;
}

.cases_container .cat_box .tit {
    display: inline-block;
}

.cases_container .cat_box .tit b {
    display: inline-block;
    color: #585858;
    border-left: 2px solid #ffbc01;
    padding-left: 20px;
    font-size: 25px;
}

.cases_container .cat_box .tit p {
    display: inline-block;
    font-size: 14px;
    font-family: -webkit-pictograph;
    color: #ffb501;
}

.cases_container .cat_box .con {
    display: inline-block;
    margin-left: 100px;
}

.cases_container .cat_box .con a {
    font-size: 12px;
    margin-right: 100px;
    border: 1px solid #9e9e9e;
    padding: 6px 15px;
    border-radius: 13px;
}

.cases_container .cat_box .con a:hover {
    color: #e3a062;
    border: 1px solid #e3a062;
}

.cases_container .cat_box .con a.active {
    color: #e3a062;
    border: 1px solid #e3a062;
}

.cases_container .cat_box .con a:nth-last-of-type(1) {
    margin-right: 0;
}

.cases_container .con {
}

.cases_container .con:after {
    content: '';
    display: block;
    clear: both;
}

.cases_container .con .item {
    display: inline-block;
    width: 22%;
    margin-right: 4%;
    text-align: center;
    border: 5px solid #e2e2e2;
    margin-bottom: 50px;
    float: left;
    box-shadow: 10px 10px 20px #b1b1b1;
    border-radius: 4px;
    box-sizing: border-box;
}

@media (min-width: 1301px) {
    .cases_container .con .item:nth-of-type(4n) {
        margin-right: 0;
    }

    .cases_container .con .item:nth-of-type(5n) {
        clear: both;
    }
}

.cases_container .con .item img {
    width: 100%;
}

.cases_container .con .item b {
    font-size: 15px;
    margin-top: 20px;
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.cases_container .con .item p {
    padding: 10px 10px;
    text-align: left;
    display: none;
}

@media (max-width: 1800px) {
    .cases_top .left {
        margin-left: 190px;
    }
}

@media (max-width: 1540px) {
    .cases_top {
        height: 640px;
    }

    .cases_top .left {
        margin-left: 150px;
    }

    .cases_top .left b {
        font-size: 35px;
    }

    .cases_top .left p {
        font-size: 15px;
    }

    .cases_top .left a {
        font-size: 15px;
        width: 100px;
    }

    .cases_top .left i {
        font-size: 16px;
    }

    .cases_top .right {
        width: 500px;
    }
}

@media (max-width: 1240px) {
    .cases_top {
        height: 600px;
    }

    .cases_top .left {
        margin-left: 80px;
        margin-top: 150px;
    }

    .cases_top .right {
        width: 400px;
        bottom: 80px;
    }
}

@media (max-width: 900px) {
    .cases_top .left {
        margin-left: 30px;
    }

    .cases_top .right {
        opacity: 0.5;
    }
}

@media (max-width: 1500px) {
    .cases_container {
        width: 90%;
        margin: 30px auto;
    }
}

@media (max-width: 1300px) and (min-width: 1000px) and (orientation:landscape) {
    .cases_container .con .item {
        width: 30%;
        margin-right: 5%;
    }

    .cases_container .con .item:nth-of-type(3n) {
        margin-right: 0;
    }

    .cases_container .con .item:nth-of-type(4) {
        clear: both;
    }

    .cases_container .con .item:nth-of-type(7) {
        clear: both;
    }
}

@media (max-width: 1000px) and (orientation:landscape) {
    .cases_container .con .item {
        width: 49%;
        margin-right: 2%;
    }

    .cases_container .con .item:nth-of-type(2n) {
        margin-right: 0;
    }

    .cases_container .con .item:nth-of-type(2n+1) {
        clear: both;
    }
}

@media (max-width: 1200px) and (orientation:portrait) {
    .cases_container .con {
        margin-left: 0 !important;
    }

    .cases_container .con .item {
        width: 49%;
        margin-right: 2%;
    }

    .cases_container .cat_box .con a {
        margin-right: 0;
    }

    .cases_container .con .item:nth-of-type(2n) {
        margin-right: 0;
    }

    .cases_container .con .item:nth-of-type(2n+1) {
        clear: both;
    }
}

/*案例中心 end*/
/*产品详情 start*/
.cases_detail {
    margin-top: 100px;
}
.cases_detail p{
    text-align: center;
}

.cases_detail img {
    /*width: calc(100% - 400px);*/
}

@media (max-width: 1600px) {
    .cases_detail img {
        width: calc(100% - 300px);
    }
}

@media (max-width: 1400px) {
    .cases_detail img {
        width: calc(100% - 200px);
    }
}

@media (max-width: 1200px) {
    .cases_detail img {
        width: calc(100% - 150px);
    }
}

@media (max-width: 1200px) {
    .cases_detail img {
        width: calc(100% - 20px);
    }
}

/*产品详情 end*/
/*分页 start*/
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px
}

.pagination>li {
    display: inline
}

.pagination>li>a, .pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd
}

.pagination>li:first-child>a, .pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.pagination>li:last-child>a, .pagination>li:last-child>span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.pagination>li>a:focus, .pagination>li>a:hover, .pagination>li>span:focus, .pagination>li>span:hover {
    z-index: 2;
    color: #23527c;
    background-color: #eee;
    border-color: #ddd
}

.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7
}

.pagination>.disabled>a, .pagination>.disabled>a:focus, .pagination>.disabled>a:hover, .pagination>.disabled>span, .pagination>.disabled>span:focus, .pagination>.disabled>span:hover {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd
}

.pagination-lg>li>a, .pagination-lg>li>span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333
}

.pagination-lg>li:first-child>a, .pagination-lg>li:first-child>span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px
}

.pagination-lg>li:last-child>a, .pagination-lg>li:last-child>span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px
}

.pagination-sm>li>a, .pagination-sm>li>span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5
}

.pagination-sm>li:first-child>a, .pagination-sm>li:first-child>span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px
}

.pagination-sm>li:last-child>a, .pagination-sm>li:last-child>span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px
}

/* 分页 end*/
/*荣耀证书 start*/
.cert {
    clear: both;
    padding: 50px 10%;
    background-image: url('/static/image/02.png');
    background-size: 4px;
    background-color: #1f1f1f;
}

.cert .tit {
    font-size: 40px;
    display: block;
    text-align: center;
    color: white;
}

.cert .tit:after {
    content: '';
    width: 100px;
    height: 3px;
    display: block;
    background: #e3a062;
    margin: 0 auto;
}

.cert .con {
    margin-top: 50px;
}

.cert .con::after {
    content: '.';
    clear: left;
}

.cert .con .item {
    display: inline-block;
    width: 15%;
    margin-bottom: 40px;
}

@media (min-width: 1100px) {
    .cert .con .item {
        margin-right: 5.5%;
    }

    .cert .con .item:nth-of-type(5n) {
        margin-right: 0;
    }
}

.cert .con .item img {
    border: 3px solid white;
    box-shadow: 5px 5px 5px #636363;
}

.cert .con .item p {
    text-align: center;
    margin-top: 12px;
    color: white;
}

@media (max-width: 1700px) {
    .cert {
        padding: 40px 10%;
    }
}

@media (max-width: 1100px) {
    .cert {
        padding: 30px 5%;
    }

    .cert .con .item {
        width: 22%;
        margin-right: 4%;
        float: left;
    }

    .cert .con .item:nth-of-type(4n) {
        margin-right: 0;
    }

    .cert .con .item:nth-of-type(9) {
        display: none;
    }

    .cert .con .item:nth-of-type(10) {
        display: none;
    }
}

/*荣耀证书 end*/
/*联系我们 start*/
.about_box .contact_box {
    width: 1600px;
    margin: 100px auto 0 auto;
    min-height: calc(100% - 300px);
    clear: both;
}

.about_box .contact_box {
    margin-top: 150px;
}

.contact_box>b {
    font-size: 32px;
    font-weight: 500;
    color: #5e64ad;
}

.contact_box>p {
    margin-top: 20px;
}

.contact_box .con {
    margin-top: 20px;
}

.contact_box .con .item {
    display: inline-block;
    margin-right: 100px;
}

.contact_box .con .item span:nth-of-type(1) {
}

.contact_box .con .item span:nth-of-type(2) {
    color: #5e64ad;
}

.contact_map {
    margin-top: 60px;
    border-top: 2px solid #5e64ad;
    padding-top: 20px;
    margin-bottom: 10px;
}

.contact_map .left {
    display: inline-block;
    width: 500px;
    vertical-align: top;
}

.contact_map .left b {
    color: #5e64ad;
    font-size: 30px;
    font-weight: 500;
}

.contact_map .left p {
    color: #5e64ad;
    margin-top: 30px;
    margin-bottom: 30px;
}

.contact_map .right {
    display: inline-block;
    width: calc(100% - 505px);
    height: 500px;
}

@media (max-width: 1900px) {
    .about_box .contact_box {
        width: 80%;
    }
}

@media (max-width: 1440px) {
    .about_box .contact_box {
        width: 90%;
        margin-top: 120px;
    }

    .contact_map .left {
        width: 40%;
    }

    .contact_map .right {
        width: 58%;
    }
}

@media (max-width: 1200px) {
    .contact_map .left {
        width: 30%;
    }

    .contact_map .right {
        width: 68%;
    }
}

@media (max-width: 1000px) {
    .contact_box .con .item {
        margin-right: 50px;
    }

    .contact_map .left {
        width: 100%;
    }

    .contact_map .right {
        width: 100%;
    }
}
@media (orientation: portrait) {
    .about_box .contact_box {
        margin-top: 90px;
    }
}


/*联系我们 end*/
/*关于我们 start*/
.about_box {
    position: relative;
}

.about {
    width: 1600px;
    margin: 35px auto 60px auto;
}

.about .left {
    width: 800px;
    display: inline-block;
}

.about .desc {
    width: 500px;
    display: inline-block;
    float: right;
}

.about .desc b {
    font-size: 40px;
    font-weight: 500;
    margin-top: 60px;
    display: block;
}

.about .desc p {
    margin-top: 20px;
}

.about .icon {
    position: absolute;
    right: 20px;
}

@media (max-width: 1000px) {
    .about .icon {
        height: 300px;
    }
}

@media (max-width: 1700px) {
    .about {
        width: 1300px;
    }

    .about .left {
        width: 600px;
    }
}

@media (max-width: 1400px) {
    .about {
        width: 90%;
    }

    .about .left {
        width: 45%;
    }

    .about .desc {
        width: 45%;
    }
}

@media (max-width: 1040px) {
    .about .desc b {
        margin-top: 0;
        font-size: 2em;
    }
}

/*关于我们 end*/
.my_alert {
    position: fixed;
    background: #797979;
    background: #13131370;
    left: 0;
    bottom: 50%;
    color: white;
    z-index: 100;
    padding: 20px;
    border-radius: 5px;
    right: 0;
    width: 350px;
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    font-size: 1em;
}

/* 分页 start*/
.page {
    clear: both;
    text-align: center;
}

.pagination > li > a, .pagination > li > span {
    border: 1.5px solid #ddd;
    margin-left: 8px;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    background-color: #fff;
    border-color: #ff6802;
    color: #ff6802;
}

.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
    color: #ff6802;
    background-color: #fff;
    border-color: #ff6802;
}

/* 分页 end*/
/*首页顶部 start*/
.index_top {
    padding-top: 110px;
    background: url('/static/image/index_top_bg.png');
    background-size: 100% 100%;
    padding-bottom: 80px;
}

.index_top .left {
    width: 40%;
    display: inline-block;
    vertical-align: top;
    color: #fff;
    margin-left: 10%;
    font-size: 1.3em;
}

.index_top .left b {
    font-size: 3em;
    font-weight: 500;
    margin-bottom: 30px;
}

.index_top .left p {
    margin-bottom: 30px;
}

.index_top .left a {
    color: #fff;
    margin-bottom: 30px;
    background: #5a8af5;
    display: inline-block;
    padding: 11px 36px;
    border-radius: 30px;
}

.index_top .left t {
    display: block;
}

.index_top .right {
    width: 40%;
    display: inline-block;
    vertical-align: top;
    text-align: right;
}

.index_top .right img {
    width: 70%;
}
@media (orientation: portrait) {
    .index_top .left {
        width: 80%;
    }
    .index_top .right{
        display: none;
    }
}

/*首页顶部 start*/


/*gpt start*/
.gpt_top {
    background-image: url(/static/image/gpt/gpt_banner.png);
    padding: 100px 0;
    background-size: cover;
}

.gpt_top .left {
    vertical-align: top;
    display: inline-block;
    color: #fff;
    margin-top: 100px;
    margin-left: 12%;
    margin-right: 8%;
}

.gpt_top .left b {
    width: 35%;
    font-size: 88px;
    font-weight: 400;
    display: block;
    margin-bottom: 54px;
}

.gpt_top .left p {
    width: 45%;
    font-size: 26px;
    font-weight: 400;
}
@media (max-width: 1600px) {
    .gpt_top .left b {
        font-size: 60px;
        width: 50%;
    }
    .gpt_top .left p {
        width: 50%;
    }
}
@media (max-width: 1200px) {
    .gpt_top .left b {
        font-size: 40px;
        width: 80%;
    }
    .gpt_top .left p {
        width: 80%;
    }
}
@media (orientation: portrait) {
    .gpt_top .left {
        width: 80%;
        margin-left: 10%;
        margin-top: 0;
    }
    .gpt_top .left b {
        width: 100%;
        font-size: 35px;
        font-weight: 400;
        display: block;
        margin-bottom: 20px;
    }
    .gpt_top .left p {
        width: 100%;
        font-size: 20px;
        font-weight: 400;
    }
    .gpt_top .right {
        display: none;
    }
}

.gpt-develop {
    margin-top: 60px;
}

.gpt-develop .title {
    text-align: center;
}

.gpt-develop .title b {
    font-size: 3em;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.gpt-develop .title i {
    font-style: normal;
    margin-bottom: 14px;
    display: block;
    font-size: 1.5em;
}

.gpt-develop .title p {
    line-height: 26px;
}

.gpt-develop .con {
    padding: 50px 0;
    margin: 10px 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.gpt-develop .con .item {
    display: inline-block;
    vertical-align: top;
    width: 26%;
}

.gpt-develop .con .item:last-child {
    margin-right: 0;
}

.gpt-develop .con .item .img {
    overflow: hidden;
}

.gpt-develop .con .item .img img {
    display: inline-block;
    margin-top: 23px;
    width: 100%;
    transition: all 0.6s;
}
.gpt-develop .con .item .img .img-class {
    transform: scale(1.2);
}

.gpt-develop .con .item b {
    display: flex;
    color: #FF8A00;
    margin: 15px 0 17px 0;
    font-size: 20px;
}

.gpt-develop .con .item p {
    text-align: left;
    color: #5D5D5D;
    font-size: 18px;
}
.gpt-develop .item2 {
    display: flex;
    width: 90%;
    margin: 0 auto 50px auto;
}
.gpt-develop .item2 .img{
    width: 35%;
}
.gpt-develop .item2 .img img{
    width: 100%;
    height: 100%;
}

.gpt-develop .item2 .value{
    width: 65%;
    border: 1px solid #6d6d6d;
    padding: 40px 30px 0 30px;
}
.gpt-develop .item2 .value b{
    margin-bottom: 28px;
    color: #FF8A00;
    font-size: 20px;
}
.gpt-develop .item2 .value p{
    color: #5D5D5D;
    font-size: 18px;
}
.gpt_banner2{
}
.gpt_banner3{
    display: none;
    width: 100%;
}
@media (orientation: portrait) {
    .gpt-develop .con{
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .gpt-develop .con .item {
        width: 100%;
    }
    .gpt-develop .item2 {
        display: block;
    }
    .gpt-develop .item2 .img{
        width: 100%;
    }
    .gpt-develop .item2 .value{
        width: 100%;
        border: 1px solid #6d6d6d;
        padding: 20px;
    }
    .gpt_banner2{
        display: none;
    }
    .gpt_banner3{
        display: block;
    }
}

/*gpt end*/

/*AI智聘 start*/
.ai_top {
    background-image: url(/static/image/airecruit/ai_banner.png);
    padding: 100px 0;
    background-size: cover;
}

.ai_top .left {
    width: 40%;
    vertical-align: top;
    display: inline-block;
    color: #0D71FE;
    margin-top: 100px;
    margin-left: 8%;
    margin-right: 8%;
}

.ai_top .left b {
    font-size: 71px;
    font-weight: 500;
    display: block;
    margin-bottom: 56px;
}

.ai_top .left p {
    font-size: 26px;
}

.ai_top .experience {
    color: #FFF;
    background: #0D71FE;
    width: 240px;
    height: 70px;
    font-size: 32px;
    border-radius: 36px;
    text-align: center;
    padding-top: 10px;
    margin-top: 60px;
}

@media (orientation: portrait) {
    .ai_top .left {
        width: 80%;
        margin-left: 10%;
        margin-top: 12%;
    }
    .ai_top .left b {
        font-size: 40px;
        margin-bottom: 20px;
    }
    .ai_top .left p{
        font-size: 20px;
    }
    .ai_top .right {
        display: none;
    }
}

.ai-characteristic {
    padding-top: 60px;
    background-color: #fcfdff;
    z-index: 2;
    position: relative;
}
.ai-characteristic .bg{
    position: absolute;
    top: 60px;
    z-index: 1;
    width: 375px;
    height: 346px;
    opacity: 0.54;
}
.ai-characteristic .title {
    text-align: center;
}

.ai-characteristic .title b {
    font-size: 32px;;
    font-weight: bold;
    display: block;
    margin-bottom: 16px;
}

.ai-characteristic .title p {
    line-height: 26px;
    font-size: 14px;
    color: #A7B0BF;
}

.ai-characteristic .con {
    padding: 50px 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.ai-characteristic .con .arrows {
    width: 54px;
    height: 17px;
    margin: 0 25px;
}
.ai-characteristic .con .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    vertical-align: top;
    width: 10%;
    height: 200px;
    background-size: cover;
    z-index: 2;
}
.ai-characteristic .con .item-bg1 {
    background-image: url(/static/image/airecruit/characteristic_bg1.png);
}
.ai-characteristic .con .item-bg2 {
    background-image: url(/static/image/airecruit/characteristic_bg2.png);
}
.ai-characteristic .con .item-bg3 {
    background-image: url(/static/image/airecruit/characteristic_bg3.png);
}
.ai-characteristic .con .item-bg4 {
    background-image: url(/static/image/airecruit/characteristic_bg4.png);
}
.ai-characteristic .con .item-bg5 {
    background-image: url(/static/image/airecruit/characteristic_bg5.png);
}
.ai-characteristic .con .item:last-child {
    margin-right: 0;
}

.ai-characteristic .con .item .img {
}

.ai-characteristic .con .item .img img {
    display: inline-block;
    margin-top: 18px;
}

.ai-characteristic .con .item b {
    margin: 10px 0 30px 0;
    color: #646772;
    font-size: 18px;
}

.ai-characteristic .con .item i {
    font-style: normal;
    margin-bottom: 20px;
    display: block;
}

.ai-characteristic .con .item p {
    text-align: left;
}

@media (orientation: portrait) {
    .ai-characteristic .bg{
        display: none;
    }
    .ai-characteristic .con{
        justify-content: space-between;
    }
    .ai-characteristic .con .item {
        width: 45%;
    }
    .ai-characteristic .con .arrows {
        display: none;
    }
}

.ai-specialty {
    padding-top: 60px;
    background-color: #fcfdff;
    z-index: 2;
    position: relative;
}
.ai-specialty .bg{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 25%;
    width: 50%;
    opacity: 0.54;
}

.ai-specialty .title {
    text-align: center;
}

.ai-specialty .title b {
    font-size: 3em;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.ai-specialty .title i {
    font-style: normal;
    margin-bottom: 14px;
    display: block;
    font-size: 1.5em;
}

.ai-specialty .title p {
    line-height: 26px;
}

.ai-specialty .con {
    padding: 50px 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}
.ai-specialty .con .item {
    display: flex;
    flex-direction: row;
    vertical-align: top;
    width: 35%;
    height: 225px;
    background: linear-gradient(153deg, #EEF4FE, #F8FAFD);
    padding: 40px 30px;
    margin-bottom: 65px;
    border-radius: 20px;
    border: 3px solid #FFF;
    z-index: 2;
}

.ai-specialty .con .item:last-child {
    margin-right: 0;
}

.ai-specialty .con .item .img {
    width: 40px;
    height: 40px;
}
.ai-specialty .con .item .value {
    padding-left: 26px;
}

.ai-specialty .con .item b {
    margin: 10px 0 20px 0;
    text-align: left;
    font-size: 26px;
    color: #323232;
}

.ai-specialty .con .item p {
    text-align: left;
    color: #939396;
    font-size: 16px;
}
@media (max-width: 1400px){
    .ai-specialty .con .item {
        height: 250px;
    }
}
@media (max-width: 1250px){
    .ai-specialty .con .item {
        height: 300px;
    }
}
@media (orientation: portrait) {
    .ai-specialty .bg{
        display: none;
    }
    .ai-specialty .con{
        padding:0;
    }
    .ai-specialty .con .item {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    .ai-specialty .con .item .img {
        display: none;
    }
    .ai-specialty .con .item .value {
        padding-left: 0;
    }
}


.ai-function {
    background-color: #fcfdff;
    z-index: 2;
    position: relative;
}
.ai-function .bg1{
    position: absolute;
    z-index: 1;
    top: 20%;
    right: -20px;
    width: 300px;
    height: 524px;
    opacity: 0.54;
}
.ai-function .bg2{
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 35%;
    width: 505px;
    height: 341px;
    opacity: 0.54;
}
.ai-function .title {
    text-align: center;
}

.ai-function .title b {
    font-size: 3em;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.ai-function .title i {
    font-style: normal;
    margin-bottom: 14px;
    display: block;
    font-size: 1.5em;
}

.ai-function .title p {
    line-height: 26px;
}

.ai-function .con {
    padding: 50px 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}
.ai-function .con .item {
    width: 80%;
    height: 425px;
    padding: 100px;
    margin-bottom: 50px;
    z-index: 2;
}
.ai-function .con .item-bg1 {
    background-image: url('/static/image/airecruit/function_v_bg1.png');
    background-size: cover;
}
.ai-function .con .item-bg2 {
    background-image: url('/static/image/airecruit/function_v_bg2.png');
    background-size: cover;
}
.ai-function .con .item-bg3 {
    background-image: url('/static/image/airecruit/function_v_bg3.png');
    background-size: cover;
}
.ai-function .con .item:last-child {
    margin-right: 0;
}

.ai-function .con .item .img {
    width: 40px;
    height: 40px;
}
.ai-function .con .item .value {
    padding-left: 20px;
}

.ai-function .con .item b {
    margin: 10px 0 30px 0;
    text-align: left;
    font-size: 32px;
    font-weight: bold;
}
.ai-function .con .item p {
    text-align: left;
    color: #A7B0BF;
    font-size: 14px;
    line-height: 34px;
}
.ai-function .con .item .more {
    float: left;
    margin-top: 70px;
    font-size: 14px;
    color: #66A1FF;
}

@media (orientation: portrait) {
    .ai-function .bg1{
        display: none;
    }
    .ai-function .bg2{
        display: none;
    }
    .ai-function .con{
    }
    .ai-function .con .item {
        width: 100%;
        height: auto;
        padding: 10px;
        margin-bottom: 20px;
    }
    .ai-function .con .item .more {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .ai-function .con .item-bg1 {
        background-image: url('/static/image/airecruit/function_mv_bg1.png');
        background-size: cover;
    }
    .ai-function .con .item-bg2 {
        background-image: url('/static/image/airecruit/function_mv_bg2.png');
        background-size: cover;
    }
    .ai-function .con .item-bg3 {
        background-image: url('/static/image/airecruit/function_mv_bg3.png');
        background-size: cover;
    }
}


.ai-hz{
    position: relative;
}
.ai-hz .va{
    width: 16%;
    height: 58px;
    background: linear-gradient(-88deg, #4D8AFF, #4D8AFF, #195DFA);
    color: #FFF;
    font-size: 26px;
    text-align: center;
    padding-top: 10px;
    position: absolute;
    left: 42%;
    bottom: 15%;
}


.ai-feature {
    padding-top: 60px;
    background-color: #fcfdff;
    z-index: 2;
    position: relative;
}
.ai-feature .bg1{
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 15%;
    width: 32px;
    height: 57px;
}
.ai-feature .bg2{
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 15%;
    width: 32px;
    height: 57px;
}
.ai-feature .title {
    text-align: center;
}

.ai-feature .title b {
    font-size: 3em;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.ai-feature .title i {
    font-style: normal;
    margin-bottom: 14px;
    display: block;
    font-size: 1.5em;
}

.ai-feature .title p {
    line-height: 26px;
}

.ai-feature .con {
    padding: 50px 0;
    text-align: center;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    flex-direction: row;
    position: relative;
    overflow: hidden;
    height: 350px;
}
.ai-feature .con .item {
    width: 60%;
    height: 260px;
    padding: 70px 50px;
    margin-bottom: 50px;
    background: linear-gradient(179deg, #4D8AFF, #4D8AFF, #195DFA);
    color: #FFF;
    border-radius: 30px;
    transition: all 0.5s ease;
}
.ai-feature .con .item0 {
    display: none;
}
.ai-feature .con .item1 {
    position: absolute;
    left: -45%;
    height: 200px;
    background-image: linear-gradient(to left, rgba(77, 138, 255, 1) 5%, rgba(77, 138, 255, 0.5) 15%, rgba(255, 255, 255, 0) 90%);
}
.ai-feature .con .item2 {
    position: absolute;
    left: 20%;
}
.ai-feature .con .item3 {
    position: absolute;
    right: -45%;
    height: 200px;
    background-image: linear-gradient(to right, rgba(77, 138, 255, 1) 5%, rgba(77, 138, 255, 0.5) 15%, rgba(255, 255, 255, 0) 90%);
}
.ai-feature .con .item:last-child {
    margin-right: 0;
}

.ai-feature .con .item .img {
    width: 40px;
    height: 40px;
}
.ai-feature .con .item .value {
    padding-left: 20px;
    display: flex;
}

.ai-feature .con .item b {
    margin: 0 63px 0 0;
    text-align: left;
    font-weight: bold;
    font-size: 36px;
    line-height: 40px;
    width: 40%;
}
.ai-feature .con .item p {
    text-align: left;
    font-size: 16px;
    line-height: 40px;
}
.ai-feature .con .item .more {
    float: left;
    margin-top: 50px;
    color: blue;
}

@media (max-width: 1300px){
    .ai-feature .con .item b {
        margin: 0 30px 0 0;
        font-size: 26px;
    }
    .ai-feature .con .item {
        padding: 50px 30px;
    }
}
@media (max-width: 950px){
    .ai-feature .con .item b {
        margin: 0 20px 0 0;
        font-size: 22px;
    }
}
@media (max-width: 880px){
    .ai-feature .con .item b {
        margin: 0 20px 0 0;
        font-size: 22px;
        width: 60%;
    }
}
@media (orientation: portrait) {
    .ai-feature {
        padding-top: 0;
    }
    .ai-feature .con {
        flex-direction: column;
        height: auto;
        padding: 0;
    }
    .ai-feature .con .item {
        height: auto;
        padding: 20px 20px;
    }
    .ai-feature .con .item .value {
        flex-direction: column;
        padding-left: 0;
    }
    .ai-feature .con .item b {
        margin: 0 0 10px 0;
        width: 100%;
    }
    .ai-feature .bg1 {
        display: none;
    }
    .ai-feature .bg2 {
        display: none;
    }
    .ai-feature .con .item1 {
        position: initial;
        width: 100%;
        height: auto;
        background-image: linear-gradient(179deg, #4D8AFF, #4D8AFF, #195DFA);
    }
    .ai-feature .con .item2 {
        position: initial;
        width: 100%;
        height: auto;
    }
    .ai-feature .con .item3 {
        position: initial;
        width: 100%;
        height: auto;
        background-image: linear-gradient(179deg, #4D8AFF, #4D8AFF, #195DFA);
    }
}

@media (orientation: portrait) {

    .ai-hz .va {
        width: 20%;
        height: 25px;
        font-size: 12px;
        padding-top: 3px;
        left: 40%;
    }
}

.ai-contact{
    width: 100%;
    height: 200px;
    margin-top: -10px;
    background-image: url(/static/image/airecruit/contact_bg.png);
}
.ai-contact .container{
    display: flex;
    justify-content: space-between;
    width: 60%;
    padding-top: 80px;
}
.ai-contact .title{
    font-size:36px;
    color: #FFF;
}
.ai-contact .phone{
    width: 490px;
    height: 62px;
    background-color: #FFF;
    border-radius: 31px;
}
.ai-contact .phone input{
    height: 62px;
    margin-left: 31px;
    border-color: initial;
    border-width: 0;
    font-size: 14px;
}
.ai-contact .phone button{
    height: 62px;
    width: 200px;
    border-radius: 31px;
    background-color: #e9f3ff;
    font-size: 22px;
    color: #3275FD;
    border-color: initial;
    border-width: 0;
    float: right;
    font-weight: bold;
}
.ai-contact input:focus-visible {
    outline: -webkit-focus-ring-color auto 0px;
}
@media (max-width: 1400px){
    .ai-contact .title {
        font-size: 30px;
    }
    .ai-contact .phone button {
        width: 120px;
        font-size: 18px;
    }
}
@media (max-width: 1000px){
    .ai-contact .phone button {
        width: 100px;
        font-size: 16px;
    }
}
@media (orientation: portrait) {
    .ai-contact .container {
        flex-direction: column;
        width: 100%;
        padding-top: 20px;
    }
    .ai-contact .title {
        font-size: 30px;
        text-align: center;
        margin-bottom: 20px;
    }
    .ai-contact .phone {
        width: 50%;
        height: 40px;
        margin: auto;
    }
    .ai-contact .phone input{
        height: 40px;
    }
    .ai-contact .phone button {
        width: 25%;
        font-size: 16px;
        height: 40px;
    }
}
@media (max-width: 680px){
    .ai-contact .phone {
        width: 70%;
    }
}
@media (max-width: 450px){
    .ai-contact .phone input {
        width: 50%;
    }
    .ai-contact .phone button {
        width: 70px;
        font-size: 10px;
    }
}

/*AI智聘 end*/


/*地震 start*/
.dz_top {
    background-image: url(/static/image/earthquake/dz_banner.png);
    padding: 100px 0;
    background-size: cover;
}

.dz_top .right {
    width: 28%;
    vertical-align: top;
    display: inline-block;
    margin-top: 100px;
    margin-left: 62%;
    margin-right: 8%;
    color: #FFF;
}

.dz_top .right b {
    font-size: 3em;
    font-weight: 500;
    display: block;
    margin-bottom: 22px;
}

.dz_top .right p {
    font-size: 1em;
}

@media (orientation: portrait) {
    .dz_top .left {
        width: 80%;
        margin-left: 10%;
        margin-top: 12%;
    }

    .dz_top .right {
        display: block;
        width: 80%;
        margin-left: 10%;
        margin-right: 8%;
        margin-top: 12%;
    }
}

.dz-characteristic {
    padding-top: 60px;
    padding-bottom: 60px;
    z-index: 2;
    position: relative;
    background-color: #f7fbfc;
}
.dz-characteristic .container{
    display: flex;
    width: 95%;
}
.dz-characteristic .value{
    width: 28%
}
.dz-characteristic .title {
}

.dz-characteristic .title b {
    display: block;
    margin-bottom: 36px;
    font-size: 48px;
    font-weight: bold;
    color: #333333;
}

.dz-characteristic .title p {
    font-size: 24px;
    font-weight: 400;
    color: #666666;
    line-height: 42px;
}
.dz-characteristic .warning_info{
    margin-top: 100px;
    width: 70%;
}
.dz-characteristic .warning_info p{
    font-size: 24px;
    font-weight: 400;
    color: #CCCCCC;
}
.dz-characteristic .warning_info .img_list{
    display: flex;
    justify-content: space-between;
    margin-top: 31px
}
.dz-characteristic .warning_info .w_info_img{
    width: 55px;
    height: 55px;
}
.dz-characteristic .con {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
    width: 72%
}
.dz-characteristic .con .arrows {
    width: 8%;
    height: 20px;
}
.dz-characteristic .con .item {
    background-color: #FFF;
    width: 30%;
    padding: 30px;
    margin-bottom: 50px;
    transition: all 0.5s;
}

.dz-characteristic .con .item:last-child {
    margin-right: 0;
}

.dz-characteristic .con .item .img {
}

.dz-characteristic .con .item .img img {
    display: inline-block;
    margin-top: 18px;
}

.dz-characteristic .con .item b {
    margin: 0 0 22px 0;
    font-size: 32px;
    font-weight: bold;
    color: #6B83BE;
}

.dz-characteristic .con .item p {
    text-align: left;
    font-size: 20px;
    font-weight: 400;
    color: #666666;
    line-height: 34px;
}

.dz-characteristic .con .item2 {
    background-color: #6B83BE;
    width: 30%;
    padding: 30px;
    margin-bottom: 50px;
    transition: all 0.5s;
}
.dz-characteristic .con .item2 b {
    margin: 0 0 22px 0;
    font-size: 32px;
    font-weight: bold;
    color: #FFF;
}

.dz-characteristic .con .item2 p {
    text-align: left;
    font-size: 20px;
    font-weight: 400;
    color: #FFF;
    line-height: 34px;
}

@media (orientation: portrait) {
    .dz_top {
        background-image: url(/static/image/earthquake/dz_banner2.png);
    }
    .dz-characteristic .container {
        flex-direction: column;
    }
    .dz-characteristic .value {
        width: 100%;
        margin-bottom: 20px;
    }
    .dz-characteristic .warning_info {
        width: 80%;
        margin-top: 20px;
    }
    .dz-characteristic .title b{
        font-size: 38px;
        margin-bottom: 20px;
    }
    .dz-characteristic .title p{
        font-size: 16px;
        line-height: 32px;
    }
    .dz-characteristic .con {
        display: flex;
        flex-wrap: initial;
        justify-content: initial;
        align-items: initial;
        width: 100%;
        flex-direction: column;
    }
    .dz-characteristic .con .item {
        width: 100%;
        margin-bottom: 20px;
    }
    .dz-characteristic .con .item b {
        font-size: 28px;
    }
    .dz-characteristic .con .item p {
        font-size: 16px;
        line-height: 24px;
    }
    .dz-characteristic .con .item2 {
        width: 100%;
        margin-bottom: 20px;
    }
}


.dz-receive {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    background-image: url(/static/image/earthquake/receive_banner.png);
    background-size: cover;
}
.dz-receive .container{
    display: flex
}
.dz-receive .value {
    width: 35%;
    margin-top: 20%;
}
.dz-receive .title {
}
.dz-receive .title b {
    display: block;
    margin-bottom: 40px;
    font-size: 48px;
    font-weight: bold;
    color: #333333;
}
.dz-receive .title p {
    line-height: 26px;
    font-size: 24px;
    font-weight: 400;
    color: #666666;
}
.dz-receive .receive_img {
    width: 55%;
    position: relative;
    padding: 0 20px;
}
.dz-receive .receive_img .item_img {
    position: absolute;
    top: 28%;
    width: 20%;
    left: 42%;
}
.dz-receive .receive_img .item_img1 {
    position: absolute;
    top: 20%;
    width: 25%;
    left: 0;
}
.dz-receive .receive_img .item_img2 {
    position: absolute;
    top: 65%;
    width: 25%;
    left: 10%;
}
.dz-receive .receive_img .item_img3 {
    position: absolute;
    top: 65%;
    width: 25%;
    right: 10%;
}
.dz-receive .receive_img .item_img4 {
    position: absolute;
    top: 20%;
    width: 25%;
    right: 0;
}
.dz-receive .receive_img_span {
    position: absolute;
    top: 52%;
    width: 32%;
    left: 36%;
    font-size: 40px;
    font-weight: 400;
    color: #5F93FB;
    line-height: 32px;
}

.dz-receive .con .item:last-child {
    margin-right: 0;
}
.dz-receive .con .item .img {
}
.dz-receive .con .item .img img {
    display: inline-block;
    margin-top: 18px;
}
.dz-receive .con .item b {
    margin: 10px 0 20px 0;
    color: #6b82bc;
    font-size: 20px;
}
.dz-receive .con .item p {
    text-align: left;
}
@media (max-width: 1550px) {
    .dz-receive .receive_img_span {
        font-size: 35px;
    }
}
@media (max-width: 1450px) {
    .dz-receive .receive_img_span {
        font-size: 30px;
    }
}
@media (max-width: 1250px) {
    .dz-receive .receive_img_span {
        font-size: 27px;
    }
}
@media (max-width: 1050px) {
    .dz-receive .receive_img_span {
        font-size: 25px;
    }
}
@media (max-width: 950px) {
    .dz-receive .receive_img_span {
        font-size: 22px;
    }
}
@media (max-width: 850px) {
    .dz-receive .receive_img_span {
        font-size: 18px;
    }
}
@media (orientation: portrait) {
    .dz-receive {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .dz-receive .container {
        flex-direction: column;
    }
    .dz-receive .value {
        width: 100%;
        margin-top: 0;
        margin-bottom: 20px;
    }
    .dz-receive .title b {
        margin-bottom: 20px;
    }
    .dz-receive .receive_img {
        width: 100%;
    }
    .dz-receive .receive_img_span {
        font-size: 30px;
    }
}
@media (max-width: 700px) {
    .dz-receive .receive_img_span {
        font-size: 28px;
    }
}
@media (max-width: 620px) {
    .dz-receive .receive_img_span {
        font-size: 25px;
    }
}
@media (max-width: 550px) {
    .dz-receive .receive_img_span {
        font-size: 20px;
    }
}
@media (max-width: 470px) {
    .dz-receive .receive_img_span {
        font-size: 18px;
    }
}
@media (max-width: 400px) {
    .dz-receive .receive_img_span {
        font-size: 15px;
    }
}

.dz-algorithm {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    background-image: url(/static/image/earthquake/algorithm_banner.png);
    background-size: cover;
    height: 1108px;
    position: relative;
}
.dz-algorithm .container{
    display: flex
}
.dz-algorithm .value {
    width: 50%;
}
.dz-algorithm .title {
    color: #3D2E87
}
.dz-algorithm .title b {
    display: block;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 100px;
}
.dz-algorithm .title p {
    font-size: 24px;
    font-weight: 400;
    line-height: 43px;
}
.dz-algorithm .con {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
}
.dz-algorithm .con .item {
    background-color: #FFF;
    width: 30%;
    padding: 10px 20px;
    margin-bottom: 10px;
}
.dz-algorithm .con .item:last-child {
    margin-right: 0;
}
.dz-algorithm .img {
    width: 50%;
    position: absolute;
    right: 0;
    top: 20%;
}
.dz-algorithm .img img {
}
.dz-algorithm .con .item b {
    margin: 10px 0 20px 0;
    color: #6b82bc;
    font-size: 20px;
}
.dz-algorithm .con .item p {
    text-align: left;
}

@media (orientation: portrait) {
    .dz-algorithm {
        height: auto;
        background-image: url(/static/image/earthquake/algorithm_banner2.png);
    }
    .dz-algorithm .value {
        width: 100%;
    }
    .dz-algorithm .title b {
        margin-bottom: 20px;
    }
    .dz-algorithm .title p {
        font-size: 16px;
        line-height: 20px;
    }
    .dz-algorithm .container {
        flex-direction: column;
    }
    .dz-algorithm .img {
        width: 100%;
        position: initial;
    }
}


.dz-caseshow {
    min-height: 500px;
    margin-bottom: 280px;
}
.dz-caseshow .hidden {
    display: none;
}
.dz-caseshow .container{
    width: 95%;
}
.dz-caseshow .value {
    display: flex;
    height: 300px;
}
.dz-caseshow .title {
    text-align: center;
    margin-bottom: 28px;
}
.dz-caseshow .title b {
    font-size: 48px;
    font-weight: bold;
}
.dz-caseshow .title p {
    font-size: 24px;
    font-weight: 400;
}
.dz-caseshow .con {

}
.dz-caseshow .con .item:last-child {

}
.dz-caseshow .value .img {
    width: 70%;
    position: relative;
    margin-top: 30px;
}
.dz-caseshow .value .img .img_info {
    width: 70%;
    z-index: 2;
    position: absolute;
}
.dz-caseshow .value .img .active {
}

.dz-caseshow .value .img .caseshow_img {
    width: 40%;
    z-index: 1;
    position: absolute;
    top: 25%;
    right: 6%;
}
.dz-caseshow .value .list {
    width: 30%;
    font-size: 40px;
    font-weight: bold;
    color: #CCCCCC;
}
.dz-caseshow .value .list .active{
    color: #6077B1;
}
.dz-caseshow .value .item{
    margin-bottom: 47px;
}

.dz-caseshow .value .item b {

}
.dz-caseshow .value .item p {

}
.dz-caseshow .value .item .active {
    color: #6077B1;
}
@media (max-width: 1250px) {
    .dz-caseshow .value .list {
        font-size: 30px;
    }
    .dz-caseshow .value .item {
        margin-bottom: 20px;
    }
}

@media (orientation: portrait) {
    .dz-caseshow {
        min-height: 500px;
        margin-bottom: 50px;
    }
    .dz-caseshow .value {
        height: auto;
        flex-direction: column;
        position: relative;
    }
    .dz-caseshow .title b {
        font-size: 30px;
    }
    .dz-caseshow .value .img {
        width: 100%;
        margin-top: 100px;
    }
    .dz-caseshow .value .img .img_info {
        width: 100%;
        position: initial;
    }
    .dz-caseshow .value .img .caseshow_img {
        display: none;
    }
    .dz-caseshow .value .list {
        width: 100%;
        font-size: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        position: absolute;
    }
    .dz-caseshow .value .item {
        margin-bottom: 10px;
    }
}
/*地震 end*/