/*公共样式*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}

a, a:hover, a:active, a:visited, a:link, a:focus {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    outline: none;
    background: none;
    text-decoration: none;
}

li {
    list-style-type: none;
}

input {
    outline:rgba(255,255,255,0.4);
}

html, body {
    height: 100%;
    font-family: Hiragino Sans GB, Microsoft Yahei UI, Microsoft Yahei, Segoe UI, Tahoma, SimSun, sans-serif
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.align-center {
    align-items: center;
}

.align-end {
    align-items: end;
}

.align-start {
    align-items: flex-start;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.justify-around {
    justify-content: space-around;
}

.justify-end {
    justify-content: flex-end;
}

.flex-column {
    flex-flow: column;
}

.over-hidden {
    overflow: hidden;
}

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

.section-con {
    width: 1200px;
    margin: 0 auto;
}

.m-r-24 {
    margin-right: 24px;
}

.m-b-32 {
    margin-bottom: 32px;
}

.m-b-12 {
    margin-bottom: 12px;
}

.bg-1 {
    background-color: #fff;
    padding-bottom: 110px;
}

.bg-2 {
    background-color: #f2f6ff;
    padding-bottom: 110px;
}

#container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    overflow-y: auto;
    position: relative;
}

.header {
    height: 80px;
    background-color: rgba(255, 255, 255, 0);
    color: white;
    position: fixed;
    z-index: 999;
    width: calc(100% - 15px);
}

.header .apply-button {
    display: inline-block;
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    -webkit-box-shadow: 0 2px 16px 0 rgba(61, 114, 246, .4);
    box-shadow: 0 2px 16px 0 rgba(61, 114, 246, .4);
    border-radius: 40px;
    font-size: 16px;
    color: #3d72f6;
}

.m-nav {
    display: none;
}

.nav {
    list-style-type: none;
    padding: 0;
    width: 1200px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    font-size: 16px;
    justify-content: space-between;
    align-items: center;
}

.nav > li {
    text-align: center;
    height: 80px;
    line-height: 80px;
}

.nav .logo img {
    width: 200px;
    height: 37px;
    margin: 37px 88px 0 0;
}

.nav .logo:hover {
    cursor: pointer;
}

.header-nav {
    display: none;
}

#backToTop {
    position: fixed;
    right: 18px;
    bottom: 280px;
    display: none;
    cursor: pointer;
    z-index: 999;
}

#backToTop img {
    width: 52px;
    height: 52px;
}

#backToTop .gif-con {
    position: fixed;
    right: 15px;
    bottom: 20px;
    width: 177px;
    height: 100px;
    cursor: pointer;
}

.scrolled {
    background-color: #3d72f6;
}


.dropdown-toggle {
    display: inline-block;
}

.dropdown-menu {
    width: 100%;
    display: none;
    position: absolute;
    left: 0;
    background-color: white;
    color: black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.dropdown-con {
    padding: 20px 0px 30px;
    width: 1000px;
    margin: 0px auto;
}

.dropdown-con .product-list {
    text-align: left;
    width: 206px;
    height: 260px;
    padding: 0 0 0 26px;
    border-left: 1px solid rgba(0, 0, 0, .1);
    font-size: 14px;
    color: #4e5975;
}

.dropdown-con .product-list .big-txt {
    position: relative;
    margin-bottom: 15px;
    font-size: 18px;
    color: #000;
}

.dropdown-con .product-list .big-txt:after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: "";
    width: 70px;
    height: 2px;
    background-color: #3d72f6;
}

.product-list > li {
    line-height: 24px;
}

.dropdown-toggle:hover + .dropdown-menu,
.dropdown-menu:hover {
    display: block;
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    color: black; /* 链接颜色 */
    padding-top: 6px;
    display: block; /* 使链接占满整个菜单项 */
}

.main {
    flex: 1;
    background-color: #f4f4f4;
}


.dialog-con .reminder {
    font-size: 16px;
    color: #4e5975;
    text-align: center;
}

.dialog-con .reminder .phone {
    font-style: normal;
    color: #3d72f6;
}

.dialog-con .app-con {
    width: 100%;
    padding: 50px 35px 20px;
    font-size: 14px;
}

.dialog-con .app-con .name {
    font-size: 18px;
    color: #4e5975;
}

.dialog-con .app-con .text {
    margin-bottom: 26px;
    font-size: 14px;
    color: #8c95a8;
}

.dialog-con .app-con .download-btn {
    display: inline-block;
    width: 162px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    color: #fff;
    border-radius: 40px;
    background-color: #3d72f6;
}

.dialog-con .app-con .icon-app2 {
    width: 57px;
    height: 64px;
    margin-bottom: 10px;
}

.dialog-con .referral-video {
    width: 637px;
    height: 380px;
}

.m-footer {
    display: none;
}

.footer {
    background-color: #1f263b;
    color: white;
    position: relative;
}

.footer .footer-left {
    font-size: 14px;
}

.footer .apply-con {
    width: 100%;
    height: 200px;
    background-image: url(/image/icon-appy_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
}

.footer .apply-con .text {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    line-height: 36px;
    margin-bottom: 22px;
}

.footer .apply-con .apply-btn {
    width: 140px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    -webkit-box-shadow: 0 2px 16px 0 rgba(61, 114, 246, .4);
    box-shadow: 0 2px 16px 0 rgba(61, 114, 246, .4);
    border-radius: 40px;
    font-size: 16px;
    color: #3d72f6;
    font-weight: 500;
    cursor: pointer;
}

.footer .top {
    width: 1200px;
    height: 280px;
    margin: 0 auto;
    padding-top: 32px;
}

.footer .logo-con {
    width: 200px;
    height: 37px;
    margin-bottom: 11px;
}

.footer .top .company-info {
    line-height: 24px;
    font-size: 14px;
    color: #fff;
}

.footer .label-con {
    color: #8c95a8;
}

.footer .top .label-email {
    color: #3d72f6;
}

.footer .top .wechat {
    width: 100px;
    text-align: left;
    font-size: 14px;
    color: #fff;
}

.footer .top .wechat p {
    margin-bottom: 15px;
}

.footer .wechat img {
    width: 100px;
    height: 100px;
}

.footer .product-desc .type-con {
    margin-right: 70px;
}

.footer .product-desc .type-con_tit {
    margin-bottom: 10px;
    font-size: 14px;
    color: #fff;
}

.footer .product-desc .type-con_item {
    line-height: 24px;
    font-size: 14px;
    font-weight: 400;
    color: #8c95a8;
}

.footer .full-screen {
    width: 100%;
}

.footer .copy-right {
    height: 48px;
    background-color: #0d1326;
}

.footer .copy-right .text {
    text-align: center;
    line-height: 48px;
    font-size: 14px;
    color: #8c95a8;
    display: flex;
    justify-content: center;
}

.footer .copy-right .text .icon-beian {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* 首页 start*/
.m-home {
    display: none;
}

.home .section-con h4 {
    font-size: 36px;
    color: #000;
    text-align: center;
}

.home .section-con .info {
    font-size: 18px;
    color: #8c95a8;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
}

.home .product {
    padding-top: 70px;
    height: 840px;
    background-image: url(/image/icon-bg_1.png);
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat
}

.home .about-us {
    height: 720px;
    padding-top: 60px;
    background-image: url(/image/icon-bg_3.png);
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.home .news {
    height: 720px;
    padding-top: 60px;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f4f8ff));
    background: linear-gradient(180deg, #fff, #f4f8ff);
}

.home .main-banner {
    height: 100vh;
    min-height: 675px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.home .carousel-wrapper {
    width: 100%;
    height: 100%;
}

.home .carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.home .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.home .carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.home .carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.home .indicator {
    width: 40px;
    height: 8px;
    background: #fff;
    opacity: .4;
    border-radius: 0;
    margin: 0 5px;
    cursor: pointer;
    border: none;
}

.home .indicator.active {
    opacity: 1;
}

.home .main-banner .back-video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    min-height: 1000px;
    z-index: -1;
}

.main-banner .banner2 .banner-con,
.main-banner .banner1 .banner-con {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.main-banner .banner1 .banner-con {
    width: 964px;
}

.main-banner .banner1 .sw-btn {
    width: 168px;
    height: 48px;
    line-height: 48px;
    margin: 0 auto;
    text-align: center;
    background: #3d72f6;
    border-radius: 310px;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.main-banner .icon-banner_txt {
    width: 516px;
    height: 55px;
}

.main-banner .title {
    font-size: 100px;
    color: #fff;
    font-weight: 700;
}

.main-banner .info {
    width: 858px;
    height: 63px;
    line-height: 63px;
    margin-bottom: 18px;
    text-align: center;
    font-size: 34px;
    font-weight: 500;
    color: #fff;
    background: #0049ff;
    border-radius: 4px;
}

.main-banner .icon-play {
    width: 90px;
    height: 90px;
    margin-bottom: 18px;
    cursor: pointer;
}

.main-banner .count-box {
    width: 858px;
    margin: 0 auto;
}

.main-banner .count-box_item {
    width: 240px;
    height: 90px;
    background: hsla(0, 0%, 100%, .16);
    border-radius: 8px;
    border: 1px solid #fff;
}

.main-banner .number-txt {
    line-height: normal;
    font-size: 42px;
    color: #fff;
    font-weight: 700;
}

.main-banner .number-plus {
    font-size: 24px;
    color: #fff;
}

.count-box_item .text {
    font-size: 16px;
    color: #fff;
}

.product .server-list_item {
    width: 280px;
    height: 270px;
    margin-bottom: 24px;
    background: #fff;
    -webkit-box-shadow: 0 2px 30px 0 rgba(67, 102, 176, .1);
    box-shadow: 0 2px 30px 0 rgba(67, 102, 176, .1);
    border-radius: 8px;
    border: 1px solid rgba(140, 149, 168, .31);
}

.product .icon-server_box {
    width: 64px;
    height: 64px;
    margin-bottom: 8px;
}

.product .tit {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #4e5975;
}

.product .txt {
    position: relative;
    padding-left: 18px;
    line-height: 28px;
    font-size: 16px;
    font-weight: 400;
    color: #8c95a8;
}

.product .txt:before {
    position: absolute;
    top: 7px;
    left: 0;
    content: "";
    width: 12px;
    height: 12px;
    background-image: url(/image/icon-left.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.server {
    height: 860px;
    padding-top: 60px;
    background-image: url(/image/icon-bg_2.png);
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.server .nav-box {
    margin-bottom: 36px;
}

.server .nav-box_item {
    width: 360px;
    height: 100px;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 20px 0 rgba(67, 102, 176, .16);
    box-shadow: 0 2px 20px 0 rgba(67, 102, 176, .16);
    border-bottom: 6px solid #fff;
    border-radius: 8px;
    cursor: pointer;
}

.server .nav-box_item.active {
    position: relative;
    border-bottom: 6px solid #3d72f6;
}

.server .nav-box_item.active:after {
    display: block;
    content: "";
    border-width: 12px 12px 12px 12px;
    border-style: solid;
    border-color: #3d72f6 transparent transparent transparent;
    position: absolute;
    left: 50%;
    bottom: -28px;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
}

.server .nav-box_item .tit {
    font-size: 24px;
    font-weight: 500;
    color: #4e5975;
}

.server .nav-box_item .intro {
    font-size: 14px;
    font-weight: 400;
    color: #4e5975;
}

.server .server-con {
    width: 100%;
    height: 480px;
    margin: 0 auto;
    padding: 24px;
    background-color: #fff;
}

.server .server-con .icon-server {
    width: 620px;
    height: 432px;
}

.server .server-con .text-info .title {
    font-size: 24px;
    color: #4e5975;
    font-weight: 700;
}

.server .text-info .tit {
    padding-left: 16px;
    font-size: 16px;
    color: #4e5975;
    font-weight: 700;
    margin-bottom: 4px;
    position: relative;
}

.server .text-info .tit:before {
    position: absolute;
    top: 8px;
    left: 0;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #3d72f6;
}

.server .text-info .info {
    padding-left: 16px;
    line-height: 20px;
    font-size: 14px;
    color: #4e5975;
    font-weight: 400;
    text-align: left;
}

.about-us_item > div {
    margin-right: 20px;
    padding-top: 26px;
}

.about-us_item .text {
    text-indent: 2em;
    font-size: 18px;
    font-weight: 400;
    color: #1c1d1d;
    line-height: 34px;
}

.about-us_item .read-all {
    padding-top: 40px;
    font-size: 16px;
    color: #3d72f6;
}

.about-us_item .icon-about {
    width: 626px;
    height: 417px;
}

.news-box .icon-news_1 {
    width: 444px;
    height: 455px;
    margin-right: 20px;
    border-right: 4px;
}

.news-box .news-list {
    width: 735px;
    height: 455px;
    margin-right: 34px;
    border-radius: 4px;
    position: relative;
    background-color: #fff;
}

.news-list .icon-top_1 {
    width: 100%;
    height: 168px;
    padding-left: 45px;
    background-image: url(/image/news-bg.png);
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.news-list .text-en {
    font-size: 14px;
    color: #999da5;
    font-weight: 500;
}

.news-list .news-type {
    position: relative;
    padding-right: 14px;
    font-size: 24px;
    color: #fff;
    font-weight: 700;
}

.news-list .news-type:after {
    position: absolute;
    right: 0;
    top: 50%;
    content: "";
    width: 1px;
    height: 19px;
    margin-top: -9px;
    border: 1px solid #979797;
}

.news-list .text {
    padding-left: 12px;
    font-size: 18px;
    line-height: 34px;
    font-weight: 400;
    color: #cbcbcb;
}

.news-list .list-con {
    width: 50%;
    padding: 25px 30px 20px;
}

.news-list .list-con_item {
    margin-bottom: 8px;
    cursor: pointer;
}

.news-list .list-con .date-text {
    font-size: 14px;
    color: #999da5;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.news-list .list-con .news-title {
    padding-left: 20px;
    font-size: 14px;
    color: #1c1d1d;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-list .news-more_btn {
    position: absolute;
    right: 25px;
    bottom: 25px;
    font-size: 14px;
    color: #999da5;
    cursor: pointer;
}

.cooperation {
    width: 100%;
    height: 665px;
    padding-top: 60px;
    background-color: #fff;
}

.cooperation-list {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: relative;
}

.cooperation-list .left-mask {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
}

.cooperation-list .right-mask {
    position: absolute;
    right: -1px;
    top: 0;
    z-index: 9;
}

.cooperation-list > div {
    display: flex;
    flex-shrink: 0;
    width: 4996px;
}

.cooperation-list div img {
    width: 2498px;
    height: 114px;
    flex-shrink: 0;
}

.img-scroll-left {
    animation: scroll-left 24s linear infinite;
}

.img-scroll-right {
    animation: scroll-right 24s linear infinite;
}

/* 向左滚动的动画 */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-2498px);
    }
}

/* 向右滚动的动画 */
@keyframes scroll-right {
    0% {
        transform: translateX(-2498px);
    }
    100% {
        transform: translateX(0);
    }
}

/* 首页 end*/

/*车位 start*/
.parking .banner {
    height: 800px;
    padding-top: 80px;
    background-image: url(/image/parking-banner.png);
    width: 100%;
    background-size: cover;
    background-position: 50%;
}

.parking .banner .banner-con {
    width: 1200px;
    padding-top: 186px;
    margin: 0 auto;
}

.parking .banner .title {
    margin-bottom: 16px;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 13px rgba(23, 59, 147, .6);
}

.parking .banner .info {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    line-height: 43px;
}

.parking .banner .title-list {
    width: 320px;
    margin-top: 43px;
}

.parking .banner .title-list img {
    width: 24px;
    height: 24px;
}

.parking .banner .list-item {
    width: 50%;
    margin-bottom: 24px;
    align-items: center;
}

.parking .store,
.parking .client,
.parking .stats {
    height: 660px;
    padding-top: 70px;
    padding-bottom: 110px;
    background-color: #fff;
}

.parking .project,
.parking .pact {
    padding-top: 70px;
    width: 100%;
    background-size: cover;
    background-position: 50%;
}

.parking .project {
    background-image: url(/image/icon-pm-bg.png);
    height: 630px;
}

.parking .pact {
    background-image: url(/image/icon-pact-bg.png);
    height: 660px;
}

.header-top {
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
    font-size: 36px;
    color: #000;
    line-height: 43px;
}

.parking .pact .header-top {
    color: #fff;
}

.header-top .title-bg {
    text-align: center;
    font-size: 56px;
    font-weight: 400;
    color: #8c95a8;
    line-height: 67px;
    margin-top: -53px;
    opacity: .2;
}

.store .fun-list {
    padding-top: 55px;
    width: 1200px;
    justify-content: space-between;
}

.join .header-nav,
.rental .header-nav,
.store .header-nav {
    display: none;
}

.store .fun-list_item {
    padding: 20px 35px;
}

.store .fun-list_item img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.store .fun-list_item p {
    font-size: 16px;
    font-weight: 400;
    color: #3d3d3d;
    line-height: 23px;
}

.project .project_item,
.client .client_item,
.pact .pact_item,
.stats .stats_item {
    justify-content: space-between;
}

.project .project_item_left {
    padding-top: 60px;
}

.project .title {
    font-size: 30px;
    color: #000;
    line-height: 43px;
}

.project .text {
    width: 501px;
    margin-top: 24px;
    font-size: 16px;
    color: #3d3d3d;
}

.project img {
    width: 425px;
    height: 472px;
}

.client .client_item_right,
.stats .stats_item_right {
    padding-top: 79px;
    padding-left: 79px;
}

.parking .client .client_img {
    display: none;
}

.parking .stats .stats_img {
    display: none;
}

.client .title,
.pact .title,
.stats .title {
    font-size: 30px;
    color: #000;
    line-height: 43px;
    margin-bottom: 24px;
}

.client .text,
.pact .text,
.stats .text {
    font-size: 16px;
    color: #3d3d3d;
    line-height: 32px;
}

.client img,
.pact img {
    width: 620px;
    height: 430px;
}

.pact .pact_item_left {
    padding-top: 113px;
    padding-right: 121px;
}

.pact .title,
.pact .text {
    color: #fff;
}

/*车位 end*/


/*新闻 start*/
.new-title {
    width: 100%;
    height: 440px;
    background-image: url(/image/news-bg_1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}

.new-title .title {
    padding-top: 105px;
    font-size: 48px;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.new-title .info {
    text-align: center;
    font-size: 20px;
    color: #fff;
    font-weight: 500;
}

.new .news-list {
    padding-top: 60px;
    min-height: 600px;
}

.new .news-list_item {
    width: 1200px;
    padding: 24px;
    margin-bottom: 24px;
    background-color: #fff;
    cursor: pointer;
}

.new .news-list_item .news-cover {
    width: 180px;
    height: 135px;
    margin-right: 31px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.new .news-list_item .news-info {
    height: 135px;
}

.new .news-list_item .title {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1c1d1d;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new .news-list_item .con-info {
    line-height: 22px;
    font-size: 14px;
    color: #1c1d1d;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.new .news-list_item .date-text {
    font-size: 14px;
    font-weight: 400;
    color: #676767;
}

.new .page-con {
    padding-bottom: 55px;
}

.new .m-page-con {
    display: none;
}

.new .pagination {
    white-space: nowrap;
    padding: 2px 5px;
    color: #303133;
    font-weight: 700;
}


.pager li a {
    padding: 0 4px;
    background: #fff;
    vertical-align: top;
    display: inline-block;
    font-size: 13px;
    min-width: 35.5px;
    height: 28px;
    line-height: 28px;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    margin: 0;
    border-radius: 3px;
}

.pagination .btn-next,
.pagination .btn-prev,
.pagination .pager li {
    margin: 0 8px;
    background-color: #f4f4f5;
    color: #606266;
    min-width: 30px;
    border-radius: 2px;
    font-size: 14px;
}

.pagination .disabled {
    cursor: not-allowed;
    color: #999;
}

.pagination .pager .active {
    background-color: #1890ff;
    color: #fff;
}

/*新闻 end*/

/*新闻详情 start*/
.new-detail {
    padding-bottom: 47px;
}

.new-detail .new-title {
    display: none;
}

.new-detail .publish-info .title {
    display: none;
}

.new-detail .m-preornext {
    display: none;
}

.new-detail .banner-con {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url(/image/news-bg_2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}

.new-detail .banner-con .title {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -560px;
    width: 1120px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    font-size: 20px;
    color: #1c1d1d;
    font-weight: 700;
    background: hsla(0, 0%, 100%, .85);
    border-radius: 8px 8px 0 0;
}

.new-detail .news-desc {
    position: relative;
    width: 1120px;
    min-height: 600px;
    padding: 0 40px 110px 40px;
    margin: 0 auto;
    border-radius: 0 0 8px 8px;
    background-color: #fff;
}

.new-detail .news-desc .publish-info {
    margin-bottom: 40px;
    padding-top: 21px;
    font-size: 14px;
    color: #676767;
    text-align: center;
}

.news-desc .publish-info .come-from {
    margin-right: 30px;
}

.new-detail .news-desc_con {
    font-size: 14px;
    margin-bottom: 20px;
}

.new-detail .preornext {
    position: absolute;
    bottom: 48px;
    left: 40px;
}

.new-detail .preornext .item {
    padding-top: 6px;
    font-size: 16px;
    font-weight: 400;
    color: #1c1d1d;
    cursor: pointer
}

.new-detail .preornext .item:hover {
    color: #3d72f6;
}

/*新闻详情 end*/

/*加盟 start*/
.header-con {
    width: 100%;
    height: 600px;
    padding-top: 80px;
    background-size: cover;
    background-position: 50%;
    background-image: url(/image/icon-join_banner.png);
}

.header-con .title {
    text-align: center;
    padding-top: 150px;
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 13px rgba(23, 59, 147, .6);
}

.header-con .company-intro {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    line-height: 20px;
    text-align: center;
}

.case-con {
    padding-top: 87px;
    padding-bottom: 65px;
    background-color: #f1f3f7;
}

.join .header-top {
    margin-bottom: 55px;
}

.store-con {
    background-color: #fff;
    padding-top: 55px;
    padding-bottom: 30px;
    padding-left: 24px;
    padding-right: 24px;
}

.header-top.model .title {
    width: 463px;
    height: 43px;
    background-image: url(/image/icon-join_title.png);
    background-size: cover;
    background-repeat: no-repeat;

    text-align: center;
    line-height: 43px;
    margin: 0 auto 4px;
    font-size: 36px;
    color: #000;
    font-weight: 500;
}


.store-con .store-con_modal {
    width: 1200px;
    margin: 0 auto;
}

.store-con .modal-con {
    width: 385px;
}

.store-con_desc .model-bg,
.store-con_desc .office-bg {
    width: 100%;
    height: 218px;
    padding: 56px 0 0 35px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    margin: 0 auto;
}

.store-con_desc .model-bg {
    background-image: url(/image/icon-model_bg1.png);
}

.store-con_desc .office-bg {
    background-image: url(/image/icon-model_bg2.png);
}

.store-con_desc .talk-bg,
.store-con_desc .park-bg {
    width: 100%;
    height: 218px;
    padding: 56px 0 0 35px;
    background-image: url(/image/icon-model_bg3.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    margin: 0 auto;
}

.store-con_desc .title {
    font-size: 24px;
    color: #fff;
}

.store-con_desc .text {
    font-size: 14px;
    line-height: 23px;
    color: #fff;
}

.store-con .store-con_list {
    padding: 24px 24px 18px;
    background-color: #fafafa;
}

.store-con .store-list_item {
    width: 160px;
    height: 40px;
    line-height: 40px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 400;
    background: #fff;
    -webkit-box-shadow: 0 2px 16px 0 rgba(67, 102, 176, .1);
    box-shadow: 0 2px 16px 0 rgba(67, 102, 176, .1);
    border-radius: 20px;
    border: 1px solid rgba(140, 149, 168, .31);
    text-align: center;
}

.header-top.case .title {
    width: 437px;
    height: 43px;
    background-image: url(/image/icon-title_bg2.png);
    background-size: cover;
    background-repeat: no-repeat;

    text-align: center;
    line-height: 43px;
    margin: 0 auto 4px;
    font-size: 36px;
    color: #000;
    font-weight: 500;
}

.case-con .case-bg {
    width: 1200px;
    height: 420px;
    margin: 0 auto;
    padding: 50px 24px;
    border-radius: 8px;
    overflow: hidden;
}

.case-con .case-con_bg {
    width: 100%;
    height: 420px;
    padding: 32px 40px 32px;
    background: #fff;
}

.case-con .case-con_bg {
    font-size: 16px;
    color: #1c1d1d;
    font-weight: 400;
}

.case-con .case-con_bg .tit {
    margin-bottom: 8px;
    font-size: 16px;
    color: #1c1d1d;
    font-weight: 400;
}

.case-con .case-con_bg .text {
    text-align: justify;
    padding-top: 10px;
    line-height: 28px;
    font-size: 16px;
    color: #1c1d1d;
    font-weight: 400;
}

.case-con .icon-case_bg {
    width: 570px;
    height: 420px;
}

/*加盟 end*/

/*租售 start*/
.rental .store-con .store-con_modal .modal-con {
    width: 290px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.rental .case-con .case-con_bg .text {
    line-height: 26px;
}

.rental .case-con .case-con_bg .tit {
    margin-bottom: 0;
}

.rental .store-con .store-list_item {
    width: 116px;
}

.rental .header-con {
    background-image: url(/image/icon-rental_banner.png);
}

.rental .header-top.model .title {
    background-image: url(/image/icon-rental_title.png);
}

.rental .store-con_desc .model-bg {
    background-image: url(/image/icon-rental_bg_1.png);
}

.rental .store-con_desc .office-bg {
    background-image: url(/image/icon-rental_bg_2.png);
}

.rental .store-con_desc .talk-bg {
    background-image: url(/image/icon-rental_bg_3.png);
}

.rental .store-con_desc .park-bg {
    background-image: url(/image/icon-rental_bg_4.png);
}

/*租售 end*/

/*直营 start*/
.store {
    font-size: 14px;
}

.store .header-con {
    background-image: url(/image/icon-store_banner.png);
}

.store .header-top.model .title {
    background-image: url(/image/icon-store_title.png);
}

.store .store-con_desc .model-bg {
    background-image: url(/image/icon-store_bg_1.png);
}

.store .store-con_desc .office-bg {
    background-image: url(/image/icon-store_bg_2.png);
}

.store .store-con_desc .talk-bg {
    background-image: url(/image/icon-store_bg_3.png);
}

/*直营 end*/

/*关于我们 start*/
.about .banner-con {
    width: 100%;
    height: 600px;
    background-image: url(/image/icon-about_banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}

.about .banner-con .title {
    padding-top: 150px;
    font-size: 56px;
    color: rgba(255, 255, 255, .85);
    font-weight: 700;
    text-align: center;
}

.about .banner-con .info {
    font-size: 28px;
    color: rgba(255, 255, 255, .85);
    line-height: 43px;
    font-weight: 500;
    text-align: center;
}

.about .about-info {
    padding-bottom: 68px;
    background-color: #ffffff;
}

.about .header-top {
    padding-top: 77px;
    margin-bottom: 18px;
}

.about .header-top .title {
    width: 269px;
    height: 43px;
    line-height: 43px;
    margin: 0 auto 72px;
    font-size: 36px;
    color: #000;
    font-weight: 500;
    background-image: url(/image/icon-about_title.png);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
}

.about .about-con_desc .icon {
    width: 520px;
    height: 360px;
    margin-right: 46px;
}

.about .about-con_desc .m-icon {
    display: none;
}

.about .about-con_desc .about-con_desc-con {
    width: 634px;
    font-size: 18px;
}

.about .contact-info {
    height: 850px;
    background-color: #f1f3f7;
}

.about .contact-info .header-top .title {
    width: 329px;
    background-image: url(/image/icon-about_title2.png);
}

.about .contact-info .contact-con_desc {
    width: 1200px;
    margin: 0 auto 40px;
}

.about .contact-info .contact-con_desc .icon-email {
    width: 54px;
    height: 39px;
    margin-bottom: 26px;
}

.about .contact-info .contact-con_desc .icon-phone {
    width: 42px;
    height: 48px;
    margin-bottom: 26px;
}

.about .contact-info .contact-con_desc .text {
    font-size: 16px;
    color: #1d1d1c;
    font-weight: 500;
    text-align: center;
}

.about .contact-info .contact-con_desc .email,
.about .contact-info .contact-con_desc .phone {
    font-size: 18px;
    font-weight: 500;
    color: #1d1d1c;
}

.about .contact-info .contact-con_desc .hint {
    font-size: 14px;
    color: #6d6863;
    font-weight: 400;
}

.about .contact-info .contact-con_desc .icon-wechat {
    width: 135px;
    height: 135px;
    margin-bottom: 10px;
}

.about .contact-info .map-con {
    width: 1200px;
    height: 400px;
    margin: 0 auto;
    background-color: #fff;
}

/*关于我们 end*/


/*业务管理 start*/
.business .header-con,
.market .header-con,
.office .header-con,
.operation .header-con,
.customer .header-con {
    width: 100%;
    height: 500px;
    padding-top: 80px;
    background-size: cover;
    background-position: 50%;
    background-image: url(/image/icon-business_banner.png);
}

.market .header-con {
    background-image: url(/image/icon-market_banner.png);
}

.office .header-con {
    background-image: url(/image/icon-office_banner.png);
}

.customer .header-con {
    background-image: url(/image/icon-customer_banner.png);
    margin-bottom: 76px;
}

.business .banner-con,
.market .banner-con,
.office .banner-con,
.operation .banner-con,
.customer .banner-con {
    width: 1200px;
    margin: 0 auto;
    padding-top: 75px;
}

.business .header-con .title,
.market .header-con .title,
.office .header-con .title,
.operation .header-con .title,
.customer .header-con .title {
    text-align: left;
    padding-top: 0;
    margin-bottom: 16px;
    font-size: 48px;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 2px 13px rgba(23, 59, 147, .6);
}

.business .header-con .info,
.market .header-con .info,
.office .header-con .info,
.operation .header-con .info,
.customer .header-con .info {
    line-height: 32px;
    font-size: 18px;
    color: #cad4e8;
    display: inline-block;
}

.business .store-con {
    background-color: #f2f6ff;
    padding-top: 55px;
    padding-bottom: 68px;
}

.business .header-top .title,
.market .header-top .title,
.office .header-top .title,
.operation .header-top .title {
    line-height: 45px;
    font-size: 30px;
    color: #000;
    font-weight: 500;
    background-size: contain;
    background-repeat: no-repeat;
    text-align: center;
}

.business .header-top .desc,
.market .header-top .desc,
.office .header-top .desc,
.operation .header-top .desc {
    line-height: 26px;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 400;
    color: #4e5975;
    text-align: center;
}

.business .dict-con,
.market .dict-con,
.office .dict-con,
.operation .dict-con {
    background-color: #f2f6ff;
    padding-top: 55px;
    padding-bottom: 68px;
}

.business .dict-con .dict-con_desc {
    display: block;
}

.business .dict-con .m-dict-con_desc {
    display: none;
}

.business .dict-con .dict-con_list {
    position: relative;
    width: 800px;
    margin: 0 auto;
    text-align: center;
}

.business .dict-con_desc .icon-bg_1 {
    width: 500px;
    height: 500px;
}

.m-market .dict-con .m-icon-bg_1,
.m-market .organization .m-icon-bg_2,
.m-market .market-con .m-icon-bg_3,
.m-market .market-con .m-icon-bg_4,
.m-market .market-con .m-icon-bg_5,
.m-market .market-con .m-icon-bg_6 {
    display: none;
}

.business .dict-con .dict-con_list .dict-list_item {
    padding: 19px 24px 0 21px;
    width: 254px;
    height: 94px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(140, 149, 168, .22);
}

.business .dict-con .dict-con_list .list_item_1 {
    position: absolute;
    top: 0;
    left: 0;
}

.business .dict-con .dict-con_list .list_item_4 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.business .dict-con .dict-con_list .list_item_3 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.business .dict-con .dict-con_list .list_item_2 {
    position: absolute;
    top: 0;
    right: 0;
}

.business .dict-con_list .dict-list_item .tit {
    text-align: left;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #3d72f6;
}

.business .dict-con_list .dict-list_item .info {
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    color: #4e5975;
    line-height: 16px;
}

.business .organization,
.market .organization,
.office .organization,
.operation .organization {
    padding-top: 40px;
    padding-bottom: 22px;
}

.business .bg-1 .header-top {
    margin-bottom: 30px;
}

.m-business .organization .m-icon-org,
.m-business .business-con .m-icon-source_client,
.m-business .business-con .m-icon-intensive,
.m-business .business-con .m-icon-xinfang,
.m-business .business-con .m-icon-bargain {
    display: none;
}

.business .organization .icon-org {
    width: 1185px;
    height: 634px;
}

.business .business-con,
.market .market-con,
.office .office-con,
.operation .operation-con {
    padding-top: 55px;
}

.business .icon-bg {
    width: 100%;
    height: 750px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(/image/icon-business_bg1.png);
    background-position: 50%;
}

.business .header-top .desc-con {
    width: 1199px;
    height: 48px;
    margin: 45px auto;
    background-color: #fff;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    -webkit-box-shadow: 0 2px 10px 0 rgba(67, 102, 176, .16);
    box-shadow: 0 2px 10px 0 rgba(67, 102, 176, .16);
}

.business .business-con .icon-source_client {
    width: 926px;
    height: 448px;
}

.business .business-con .icon-intensive {
    width: 958px;
    height: 500px;
}

.business .business-con .xinfang-con {
    width: 1199px;
    height: 426px;
    margin: 0 auto;
    background: #fff;
    -webkit-box-shadow: 0 2px 10px 0 rgba(67, 102, 176, .16);
    box-shadow: 0 2px 10px 0 rgba(67, 102, 176, .16);
    border-radius: 8px;
}

.business .business-con .icon-xinfang {
    width: 1125px;
    height: 326px;
}

.business .business-con .icon-bargain {
    width: 597px;
    height: 486px;
}

/*业务管理 end*/

/*营销获客 start*/
.market .bg-1 {
    background-color: #fff;
    padding-bottom: 110px;
}

.market .dict-con_list {
    text-align: center;
}

.market .dict-con_desc .icon-bg_1 {
    width: 1045px;
    height: 444px;
}

.market .organization .icon-bg_2 {
    width: 1202px;
    height: 620px;
}

.market .market-con .icon-bg_3 {
    width: 1026px;
    height: 500px;
}

.market .market-con .icon-bg_4 {
    width: 830px;
    height: 570px;
}

.market .market-con .icon-bg_5 {
    width: 847px;
    height: 501px;
}

.market .market-con .icon-bg_6 {
    width: 950px;
    height: 527px;
}

.market .organization .video-btn {
    margin-top: 20px;
    width: 120px;
    height: 120px;
}

.market .icon-bg {
    width: 100%;
    height: 750px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(/image/icon-market_bg_7.png);
    background-position: 50%;
}

/*营销获客 end*/

/*移动办公 start*/
.office .dict-con_list {
    text-align: center;
}

.office .store-con_desc_img {
    width: 797px;
    height: 583px;
    position: relative;
    margin: 0 auto;
}

.office .store-con_desc_img .video-btn {
    width: 80px;
    height: 80px;
    position: absolute;
    z-index: 10;
    top: 75px;
    right: 30px;
}

.office .store-con_desc_img .icon-bg_1 {
    width: 100%;
    height: 100%;
}

.office .organization .icon-bg_2 {
    width: 874px;
    height: 445px;
}

.office .office-con .icon-bg_3 {
    width: 958px;
    height: 552px;
}

.office .office-con .icon-bg_4 {
    width: 975px;
    height: 389px;
}

.m-office .dict-con .m-icon-bg_1,
.m-office .organization .m-icon-bg_2,
.m-office .office-con .m-icon-bg_3,
.m-office .office-con .m-icon-bg_4 {
    display: none;
}

.office .sign-bg {
    background-image: url(/image/icon-office_bg2.png);
}

.office .icon-bg {
    width: 100%;
    height: 750px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(/image/icon-office_bg1.png);
    background-position: 50%;
}

/*移动办公 end*/

/*运营分析 start*/
.operation .bg-1 {
    background-color: #fff;
    padding-bottom: 110px;
}

.operation .dict-con_list {
    text-align: center;
}

.operation .dict-con_desc .icon-bg_1 {
    width: 674px;
    height: 478px;
}

.operation .organization .icon-bg_2 {
    width: 966px;
    height: 570px;
}

.operation .operation-con .icon-bg_3 {
    width: 810px;
    height: 546px;
}

.operation .operation-con .icon-bg_4 {
    width: 773px;
    height: 438px;
}

.operation .icon-bg {
    width: 100%;
    height: 750px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(/image/icon-pm-bg.png);
    background-position: 50%;
}

.operation .dict-con_list {
    position: relative;
    width: 1210px;
    margin: 70px auto 0;
}

.operation .dict-con_list .dict-list_item {
    padding: 19px 22px 18px 35px;
    width: 303px;
    min-height: 146px;
    background: #fff;
    font-size: 16px;
    border-radius: 8px;
    -webkit-box-shadow: 0 3px 20px 0 rgba(140, 149, 168, .24);
    box-shadow: 0 3px 20px 0 rgba(140, 149, 168, .24);
    border: 1px solid rgba(140, 149, 168, .4);
    text-align: left;
}

.operation .dict-con_list .dict-list_item .tit {
    font-size: 20px;
}

.operation .dict-con_list .list_item_1 {
    position: absolute;
    top: -40px;
    left: -32px;
}

.operation .dict-con_list .list_item_2 {
    position: absolute;
    top: -40px;
    right: 16px;
}

.operation .dict-con_list .list_item_3 {
    position: absolute;
    bottom: 38px;
    left: -32px;
}

.operation .dict-con_list .list_item_4 {
    position: absolute;
    bottom: 30px;
    right: 12px;
}

.m-operation .dict-con .m-icon-bg_1,
.m-operation .organization .m-icon-bg_2,
.m-operation .operation-con .m-icon-bg_3,
.m-operation .operation-con .m-icon-bg_4 {
    display: none;
}

/*运营分析 end*/

/*客户服务 start*/
.customer .services-steps {
    padding-bottom: 80px;
}

.customer .timeline {
    margin: 0;
    font-size: 14px;
    list-style: none;
}

.customer .timeline-item {
    position: relative;
    padding-bottom: 20px;
}

.customer .timeline-item__tail {
    position: absolute;
    left: 4px;
    height: 100%;
    border-left: 2px solid #dfe4ed;
}

.customer .timeline-item__node--normal {
    left: -1px;
    width: 12px;
    height: 12px;
}

.customer .timeline-item__node {
    position: absolute;
    background-color: #dfe4ed;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.customer .timeline-item__wrapper {
    position: relative;
    padding-left: 28px;
    top: -3px;
}

.customer .timeline-item__timestamp.is-top {
    margin-bottom: 8px;
    padding-top: 4px;
}

.customer .timeline-item__timestamp {
    color: #909399;
    line-height: 1;
    font-size: 13px;
}

.customer .timeline-item__content {
    color: #303133;
}

.customer .card {
    border-radius: 4px;
    border: 1px solid #e6ebf5;
    background-color: #fff;
    overflow: hidden;
    color: #303133;
    -webkit-transition: .3s;
    transition: .3s;
}

.customer .services-steps .servers-bg_1 {
    background-image: url(/image/icon-service1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
}

.customer .services-steps .servers-bg_2 {
    background-image: url(/image/icon-service2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
}

.customer .services-steps .servers-bg_3 {
    background-image: url(/image/icon-service3.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
}

.customer .services-steps .icon-box {
    width: 1119px;
    height: 180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.customer .card__body {
    padding: 20px;
    display: flex;
}

.customer .card__body .card__body-title {
    margin-right: 70px;
}

.customer .services-steps .icon-box .text {
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    color: #fff;
}

.customer .services-steps .icon-box .icon-tel {
    width: 22px;
    height: 22px;
    margin-right: 7px;
    background-image: url(/image/icon-tel.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.customer .services-steps .icon-box .tel-number {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.customer .services-steps .icon-box .title {
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

/*客户服务 end*/

/*试用 start*/
.apply .header-con {
    position: relative;
    width: 100%;
    height: 1240px;
}

.apply .header-con .back-video {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    min-height: 1000px;
}

.apply .form-con {
    position: absolute;
    top: 50%;
    left: 50%;
    padding-top: 70px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.apply .form-con .title {
    margin-bottom: 50px;
    font-size: 56px;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.apply .form-con .save-con {
    padding-top: 69px;
}

.apply .form-con .save-con .save-btn {
    width: 470px;
    height: 48px;
    font-size: 20px;
    font-weight: 500;
    background: #3d72f6;
    border-radius: 24px;
    color: #fff;
    border: none;
}

.apply .form-con .save-con .hint-info {
    padding-top: 27px;
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}

.apply .form {
    font-size: 14px;
}

.apply .form-item {
    margin-bottom: 22px;
    position: relative;
}

.apply .form-item .error-message {
    position: absolute;
    left: 10px;
}

.apply .form-con .input-con,
.apply .form-con .select-con {
    width: 470px;
    height: 48px;
    line-height: 36px;
    padding-left: 32px;
    background: #fff;
    transition: none;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 400;
    border: none;
    appearance: none;
    -moz-appearance: none;
}

.apply .form-item.plan {
    margin-bottom: 0;
    width: 100%
}

/*试用 end*/

/*报错 end*/
.error {
    background-color: #F2F4F8;
    height: 100%;
    width: 100%;
    padding-top: 80px;
}

.error img {
    height: 400px;
}
/*报错 end*/
/*百度推广页 start*/
.promotion .promotion-banner{
    padding: 80px 0 0;
    position: relative;
    width: 100%;
    height: 901px;
    background-image: url(/image/promotion-banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
}
.promotion .promotion-banner img{
    width: 1182px;
    height: 507px;
}
.promotion .promotion-banner h1{
    font-weight: 700;
    font-size: 48px;
    color: #FFFFFF;
    line-height: 70px;
    margin-top: 80px;
}
.promotion .promotion-banner h2{
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 38px;
}
.promotion .promotion-banner .promotion-banner_h2{
    margin-bottom: 55px;
}
.promotion .promotion-banner .promotion-banner_h2_m{
    display: none;
}
.promotion .promotion-banner .icon-bg_m{
    display: none;
}

.promotion .promotion-banner .banner-input_box{
    display: none;
}

.promotion .promotion-banner .banner-input-group{
    display: inline-block;
    position: relative;
    padding-bottom: 16px;
}
.promotion .promotion-banner .banner-input-group .error-message {
    font-size: 12px;
    position: absolute;
    left: 0;
}
.promotion .promotion-banner .banner-input-group input{
    width: 210px;
    height: 48px;
    line-height: 36px;
    padding-left: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 282px 282px 282px 282px;
    border: 2px solid rgba(255,255,255,0.4);
}

.promotion .promotion-banner .banner-input-group1{
    display: block;
}
.promotion .promotion-banner .banner-input-group3{
    margin-left: 12px;
}
.promotion .promotion-banner .banner-input-group1 input{
    display: block;
    width: 438px;
    height: 48px;
}

.promotion .promotion-banner .banner-input-group input[type="text"] {
    color: #fff;
}
.promotion .promotion-banner .banner-input-group input[type="number"] {
    color: #fff;
}
.promotion .promotion-banner .banner-input-group input::placeholder {
    color: #fff;
}
.promotion .promotion-banner .banner-input-group2{
    position: absolute;
    right: 0;
    bottom: 0;
    margin-bottom: 0;
}
.promotion .promotion-banner .banner-input-group2 .save-btn{
    width: 210px;
    height: 48px;
    background: #FF9718;
    border-radius: 282px 282px 282px 282px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 38px;
    text-align: center;
}

.promotion .channel,
.promotion .pattern,
.promotion .lifecycle{
    width: 1400px;
    margin: 0 auto;
}
.promotion .channel .channel-con,
.promotion .pattern .pattern-con,
.promotion .lifecycle .lifecycle-con,
.promotion .cooperation .cooperation-con{
    width: 100%;
    padding: 40px 0 0;
}

.promotion .channel-con h4,
.promotion .pattern-con h4,
.promotion .lifecycle-con h4,
.promotion .cooperation-con h4{
    font-size: 36px;
    color: #000;
    text-align: center;
}

.promotion .channel-con .info,
.promotion .pattern-con .info,
.promotion .lifecycle-con .info,
.promotion .cooperation-con .info{
    font-size: 18px;
    color: #8c95a8;
    font-weight: 400;
    text-align: center;
    padding: 5px 0;
}

.promotion .channel-list_item {
    width: 445px;
    height: 316px;
    background: #FFFFFF;
    margin-bottom: 24px;
    padding: 32px 40px;
    flex-direction: column;
    -webkit-box-shadow: 0 2px 30px 0 rgba(67, 102, 176, .1);
    box-shadow: 0 2px 30px 0 rgba(67, 102, 176, .1);
    border-radius: 16px;
    border: 1px solid rgba(140, 149, 168, .31);
}
.promotion .channel-list_item .icon-channel_box {
    width: 56px;
    height: 56px;
}
.promotion .channel-list_item .tit {
    font-weight: bold;
    font-size: 28px;
    color: #3D3D3D;
    line-height: 41px;
}

.promotion .channel-list_item .txt {
    font-weight: 500;
    font-size: 16px;
    color: #3D3D3D;
    line-height: 30px;
}

.promotion .channel-tryout{
    justify-content: center;
    margin-bottom: 32px;
}
.promotion .channel-tryout,
.promotion .channel-list_item .channel-list_tryout{
    font-weight: 400;
    font-size: 20px;
    color: #3D72F6;
    line-height: 29px;
    display: flex;
    align-items: center;
}
.promotion .channel-tryout img,
.promotion .channel-list_item .channel-list_tryout img{
    margin-left: 8px;
    width: 20px;
    height: 20px;
}

.promotion .port,
.promotion .advantage{
    width: 1400px;
    margin: 0 auto;
}

.promotion .port-con,
.promotion .advantage-con{
    background: linear-gradient( 90deg, #1B55E8 0%, #487CFF 100%);
    border-radius: 16px 16px 16px 16px;
    height: 100%;
    padding: 32px 40px;
    color: #fff;
    margin-top: 8px;
}

.promotion .port-con h4 {
    font-weight: 500;
    font-size: 28px;
    color: #FFFFFF;
    line-height: 41px;
}

.promotion .port-con .info {
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 30px;
    margin-bottom: 34px;
}
.promotion .port-con .port-list_left{
    display: flex;
    flex-wrap: wrap;
}
.promotion .port-con .list-left_item{
    width: 134px;
    height: 97px;
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 29px;
    margin-bottom: 32px;
}
.promotion .port-con .list-left_item img{
    width: 56px;
    height: 56px;
}

.promotion .port-con .port-list_right_m{
    display: none;
}

.promotion .port-con .port-list_right img{
    width: 619px;
    height: 246px;
}


.promotion .pattern-list_item{
    width: 445px;
    height: 475px;
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    padding: 40px 24px;
}
.promotion .pattern-list_item .item-top{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.promotion .pattern-list_item .item-top img{
    width: 140px;
    height: 140px;
}

.promotion .pattern-list_item .item-top h5{
    font-weight: bold;
    color: #000000;
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    margin: 6px 0;
}
.promotion .pattern-list_item .item-top p{
    color: #444A55;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 6px;
}
.promotion .pattern-list_item .item-bottom .tit{
    font-weight: 700;
    font-size: 16px;
    color: #3D3D3D;
    line-height: 30px;
}
.promotion .pattern-list_item .item-bottom .txt{
    font-size: 16px;
    color: #3D3D3D;
    line-height: 30px;
}
.promotion .advantage-con{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.promotion .advantage-con .advantage-list{
    width: 100%;
    flex-wrap: wrap;
    position: relative;
}
.promotion .advantage-con .advantage-list .list-item{
    background: #FFFFFF;
    border-radius: 16px 16px 16px 16px;
    opacity: 0.9;
    padding: 28px 21px;
    display: flex;
    margin-bottom: 30px;
    margin-left: 30px;
}
.promotion .advantage-con .advantage-list .list-item .item-left_img{
    display: none;
}
.promotion .advantage-con .advantage-list .list-item_left{
    text-align: right;
}
.promotion .advantage-con .advantage-list .list-item_left p{
    margin-left: 0;
    margin-right: 10px;
}
.promotion .advantage-con .advantage-list .list-item1{
    width: 428px;
    height: 120px;
}
.promotion .advantage-con .advantage-list .list-item2{
     width: 382px;
     height: 120px;
}
.promotion .advantage-con .advantage-list .list-item3{
    margin-left: 100px;
}
.promotion .advantage-list .list-item p{
    font-weight: 700;
    font-size: 18px;
    color: #444A55;
    line-height: 32px;
    margin-left: 10px;
}
.promotion .advantage-list .list-item span{
    color: #3D72F6;
}

.promotion .advantage-con .advantage-banner{
    width: 674px;
    height: 94px;
}
.promotion .advantage-list .list-item img{
    width: 64.13px;
    height: 64px;
}
.promotion .advantage-list .advantage-list_con{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 620px;
    height: 432px;
}

.promotion .lifecycle-nav .nav-item{
    width: 260px;
    height: 80px;
    background: #FFFFFF;
    box-shadow: 0px 2px 10px 0px rgba(78,89,117,0.1);
    border-radius: 8px 8px 8px 8px;
    text-align: center;
    margin-bottom: 16px;
}
.promotion .lifecycle-nav .nav-item img{
    width: 28px;
    height: 28px;
}
.promotion .lifecycle-nav .nav-item p{
    font-weight: 500;
    font-size: 20px;
    color: #3D3D3D;
    line-height: 24px;
    text-align: center;
    margin-left: 8px;
}
.promotion .lifecycle-business{
    width: 1400px;
    height: 120px;
    background: #FFFFFF;
    box-shadow: 0px 2px 10px 0px rgba(78,89,117,0.1);
    border-radius: 8px 8px 8px 8px;
    padding: 10px;
    margin-top: 16px;
    margin-bottom: 32px;
}
.promotion .lifecycle-ability,
.promotion .lifecycle-serve{
    height: 80px;
}
.promotion .lifecycle-business .business-left{
    width: 160px;
    height: 100px;
    line-height: 100px;
    background: #5594FA;
    border-radius: 8px 8px 8px 8px;
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
    text-align: center;
}
.promotion .lifecycle-ability .business-left{
    height: 60px;
    line-height: 60px;
    background-color: #23CF65;
}
.promotion .lifecycle-serve .business-left{
    height: 60px;
    line-height: 60px;
    background-color: #F7B500;
}

.promotion .lifecycle-business .business-right{
    width: 1210px;
    padding: 9px 10px 9px 65px;
}
.promotion .lifecycle-business .business-right p{
    min-width: 140px;
    height: 26px;
    font-weight: 500;
    font-size: 18px;
    color: #3D3D3D;
    line-height: 26px;
}
.promotion .lifecycle-banner{
    width: 1400px;
    height: 638px;
    background: #FFFFFF;
    border-radius: 16px 16px 16px 16px;
    padding: 0 16px;
    margin-bottom: 32px;
}
.promotion .lifecycle-banner img{
    width: 1374px;
    height: 638px;
}
.promotion .cooperation{
    padding-top: 0;
    height: 1200px;
    background-image: url(/image/cooperation-bg.png);
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}
.promotion .cooperation .cooperation-con{
    width: 1400px;
    margin: 0 auto;
}
.promotion .cooperation .cooperation-con h4,
.promotion .cooperation .cooperation-con .info{
    color: #fff;
}
.promotion .cooperation .channel-tryout{
    color: #fff;
}
.promotion .bottom-list_item{
    width: 684px;
    height: 316px;
    background: #FFFFFF;
    border-radius: 16px 16px 16px 16px;
    overflow: hidden;
    margin-bottom: 32px;
}
.promotion .bottom-list_item .item-left{
    width: 342px;
    padding: 32px 24px;
    font-size: 28px;
}
.promotion .bottom-list_item .item-left img{
    width: 56px;
    height: 56px;
}


.promotion .bottom-list_item .item-left .tit{
    font-weight: bold;
    font-size: 28px;
    color: #3D3D3D;
    line-height: 41px;
    margin: 12px 0;
}
.promotion .bottom-list_item .item-left .item-txt1{
    margin-bottom: 12px;
}
.promotion .bottom-list_item .item-left .txt{
    font-weight: 500;
    font-size: 16px;
    color: #3D3D3D;
    line-height: 30px;
}
.promotion .bottom-list_item .item-left .item-txt2{
    display: none;
}
.promotion .bottom-list_item .channel-list_tryout{
    font-weight: 400;
    font-size: 20px;
    color: #3D72F6;
    line-height: 29px;
    display: flex;
    align-items: center;
}
.promotion .bottom-list_item .channel-list_tryout img{
    margin-left: 8px;
    width: 20px;
    height: 20px;
}
.promotion .bottom-list_item .item-img{
    width: 342px;
    height: 316px;
    opacity: 0.8;
}

.promotion .apply{
    width: calc(100% - 15px);
    position: fixed;
    left: 0;
    bottom: 0;
    height: 130px;
    z-index: 99;
    background-color: #3D72F6;
}

.promotion .apply .apply-list{
    width: 1400px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.promotion .apply .apply-save,
.promotion .apply .apply-item{
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}

.promotion .apply .apply-save .save-btn{
    width: 210px;
    height: 48px;
    background: #FF9718;
    border-radius: 282px 282px 282px 282px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 38px;
    text-align: center;
    position: absolute;
    right: 0;
}

.promotion .apply .apply-list input,
.promotion .apply .apply-list select{
    width: 210px;
    height: 48px;
    color: #fff;
    line-height: 36px;
    padding-left: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 282px 282px 282px 282px;
    border: 2px solid rgba(255,255,255,0.4);
}
.promotion .apply .apply-list input[type="text"] {
    color: #fff;
}
.promotion .apply .apply-list input[type="number"] {
    color: #fff;
}
.promotion .apply .apply-list input::placeholder {
    color: #fff;
}
.promotion .apply .apply-save input{
    width: 438px;
    height: 48px;
}
.promotion .apply .apply-item .error-message {
    font-size: 12px;
    position: absolute;
    left: 0;
    bottom: -24px;
}
/*.promotion .txt:before {*/
/*    position: absolute;*/

/*    top: 7px;*/
/*    left: 0;*/
/*    content: "";*/
/*    width: 12px;*/
/*    height: 12px;*/
/*    background-image: url(/image/icon-left.png);*/
/*    background-size: cover;*/
/*    background-repeat: no-repeat;*/
/*}*/
/*百度推广页 end*/






/* 小屏幕  768px-992px  屏幕宽度在768px以上显示的颜色*/
@media (max-width: 768px) {
    /*h5顶部 start */
    .header {
        width: 100%;
        height: 4.25rem;
        position: relative;
    }

    .nav {
        display: none;
    }

    .m-nav {
        background-color: #3d72f6;
        height: 2.85rem;
        width: 100%;
        padding: 0 0.8125rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        z-index: 9999;
    }

    .m-nav .m-logo {
        width: 6.625rem;
    }
    .m-nav .m-nav_icon {
        width: 1rem;
    }

    .m-nav .m-nav-lsit{
        position: absolute;
        width: 100%;
        background-color: #fff;
        top: 100%;
        right: 0;
        z-index: 999;
        color: #000;
        width: 100%;
        padding: 0 1.25rem;
        box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
        transition: height 0.5s ease-out;
        overflow: hidden;
        font-size: 0.875rem;
        line-height: 2.25rem;
        height: 0;
    }
    .m-nav .m-nav-lsit.show{
        height: 20.625rem;
    }
    .m-nav .m-nav-lsit .m-nav-lsit_text{
        display: flex;
    }
    .m-nav .m-nav-lsit .m-nav-lsit_text text{
        padding: 0 0.5625rem;
    }

    .header-nav {
        display: flex;
    }

    /*h5顶部 end */
    /*h5底部 start */
    .footer {
        display: none;
    }

    .m-footer {
        display: block;
    }

    .m-footer .quickly-nav .icon-show1,
    .m-footer .quickly-nav .icon-show2 {
        width: 3.4375rem;
        height: 3.125rem;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .m-footer .quickly-nav .icon-show1 {
        display: block;
    }

    .m-footer .quickly-nav .icon-show2 {
        display: none;
    }

    .m-footer .quickly-nav.active .icon-show1 {
        display: none;
    }

    .m-footer .quickly-nav.active .icon-show2 {
        display: block;
    }

    .m-footer .quickly-nav {
        height: 3.125rem;
        width: 21.9375rem;
        border-radius: 1.5625rem;
        position: fixed;
        right: -18.5375rem;
        bottom: 5.625rem;
        background-color: #fff;
        z-index: 9;
    }

    .m-footer .quickly-nav.active {
        right: 0.75rem;
    }

    .m-footer .quickly-nav .nav-type {
        width: 18.4375rem;
    }

    .m-footer .quickly-nav .icon-box {
        width: 1.25rem;
        height: 1.25rem;
    }

    .m-footer .quickly-nav .text {
        font-size: 0.6875rem;
        color: #1c1d1d;
    }


    .m-footer .apply-con {
        width: 100%;
        height: 8rem;
        background-image: url(/image/icon-appy_bg.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50%;
    }

    .m-footer .apply-con .apply-btn {
        width: 8rem;
        height: 2.125rem;
        line-height: 2.125rem;
        font-size: 0.875rem;
        color: #3d72f6;
        background: #fff;
        text-align: center;
        -webkit-box-shadow: 0 .03rem .21rem 0 rgba(61, 114, 246, .4);
        box-shadow: 0 .03rem .21rem 0 rgba(61, 114, 246, .4);
        border-radius: 40px;
    }

    .m-footer .apply-con img {
        width: 21.875rem;
        height: 1.25rem;
        margin-bottom: 0.625rem;
    }

    .m-footer .footer-top {
        height: 9.6875rem;
        padding: 0 2.1875rem;
        background-color: #1f263b;
    }

    .m-footer .footer-top .footer-left {
        flex: 3;
    }

    .m-footer .footer-top .footer-right {
        flex: 2;
    }

    .m-footer .footer-left .text {
        margin-bottom: 5px;
        font-size: 0.8125rem;
        color: #8c95a8;
    }

    .m-footer .footer-left .label-txt {
        color: #fff;
    }

    .m-footer .footer-right img {
        width: 4.625rem;
        height: 4.625rem;
        border-radius: 5px;
        margin-bottom: 6px;
    }

    .m-footer .footer-top .wechat-txt {
        width: 4.625rem;
        text-align: center;
        font-size: 0.8125rem;
        color: #fff;
    }

    .m-footer .footer-bottom {
        height: 4.75rem;
        background-color: #0d1326;
        margin-bottom: 3rem;
    }

    .m-footer .footer-bottom p {
        font-size: 0.75rem;
        color: #8c95a8;
    }

    .m-footer .navigation {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 3.75rem;
        background-color: #f1f3f7;
        z-index: 999;
    }

    .m-footer .navigation .menu-con {
        position: relative;
        height: 3.75rem;
        line-height: 3.75rem;
        flex: 1;
    }

    .m-footer .navigation .text {
        font-weight: 500;
        font-size: 0.875rem;
    }

    .m-footer .navigation .icon-more {
        width: 0.75rem;
        height: 0.75rem;
        margin-right: 0.3125rem;
    }

    .m-footer .more-menu {
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translate(-50%, -100%);
        transform: translate(-50%, -100%);
        width: 6.25rem;
        background: #f1f3f7;
        -webkit-box-shadow: 0 .03rem .11rem 0 rgba(0, 0, 0, .16);
        box-shadow: 0 .03rem .11rem 0 rgba(0, 0, 0, .16);
        border-radius: 0.25rem;
        display: none;
    }

    .m-footer .more-menu_item {
        height: 2.78125rem;
        line-height: 2.78125rem;
        text-align: center;
        font-size: 0.875rem;
        color: #1c1d1d;
        font-weight: 500;
        border-bottom: 1px solid rgba(0, 0, 0, .1);
        flex: 1;
    }

    .m-footer .more-menu_item:last-child {
        border-bottom: none;
    }

    .m-footer .menu-con > a {
        width: 100%;
        height: 100%;
        text-align: center;
    }

    .m-footer .more-menu_item a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .more-menu.show {
        display: block;
    }

    /*h5底部 end */
    /*h5首页 start */
    .home {
        display: none;
    }

    .m-home {
        display: block;
    }

    .m-home .m-home-banner {
        overflow: hidden;
        width: 100%;
        position: relative;
        height: 25rem;
    }
    .m-home .m-header-con{
        height: 100%;
    }
    .m-home .m-carousel-slide {
        height: 100%;
        display: none;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    .m-home .m-carousel-slide.active {
        display: flex;
        opacity: 1;
    }
    .m-home .m-banner1{
        height: 100%;
        background-image: url(/wap/icon-main_banner.png);
        background-position: 50%;
        background-size: cover;
        background-repeat: no-repeat;
        overflow: hidden;
    }
    .m-home .m-banner2{
        height: 100%;
        background-image: url(/wap/icon-banner_2.png);
        background-position: 50%;
        background-size: cover;
        background-repeat: no-repeat;
        overflow: hidden;
        position: relative;
    }
    .m-home .m-banner2 .sw-btn {
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 5.875rem;
        height: 2.125rem;
        line-height: 2.125rem;
        margin: 0 auto;
        text-align: center;
        background: #3d72f6;
        border-radius: 1rem;
        font-weight: 700;
        font-size: 0.75rem;
        color: #fff;
    }




    .m-home-banner .m-header-con {
        font-size: 1rem;
        color: #ffffff;
        height: 100%;
    }

    .m-home-banner .icon-banner_txt {
        width: 15.75rem;
        height: 1.875rem;
    }

    .m-home-banner .title {
        font-size: 2.6625rem;
        line-height: 3.5625rem;
    }

    .m-home-banner .count-box {
        width: 100%;
        padding: 0 1.5rem;
    }

    .m-header-con .count-box_item {
        width: 6.5rem;
        height: 3rem;
        background: hsla(0, 0%, 100%, .16);
        border-radius: 0.25rem;
        border: 1px solid #fff;
    }

    .m-header-con .count-box_item .text {
        font-size: 0.5625rem;
    }

    .m-header-con .count-box_item .number-txt {
        line-height: 2.0625rem;
        font-size: 1.375rem;
        color: #fff;
        font-weight: 700;
    }

    .m-header-con .count-box_item .number-plus {
        font-size: 0.8125rem;
        color: #fff;
    }

    .m-home .m-server-intro,
    .m-home .m-service-con,
    .m-home .m-about-con,
    .m-home .m-new-con,
    .m-home .m-cooperation {
        padding-top: 1.6875rem;
    }

    .m-home .m-header-top {
        margin-bottom: 0.75rem;
    }

    .m-home .m-header-top .title {
        margin-bottom: 0.125rem;
        font-size: 1.25rem;
        color: #000;
        font-weight: 500;
    }

    .m-home .m-header-top .desc {
        font-size: 0.8125rem;
        color: #8c95a8;
    }

    .m-home .server-list {
        padding: 0 0.75rem;
    }

    .m-home .server-list_item {
        width: 10.625rem;
        height: 9.375rem;
        margin-bottom: 0.75rem;
        background: #fff;
        -webkit-box-shadow: 0 2px 30px 0 rgba(67, 102, 176, .1);
        box-shadow: 0 2px 30px 0 rgba(67, 102, 176, .1);
        border-radius: 8px;
        border: 1px solid rgba(140, 149, 168, .31);
    }

    .m-home .server-list_item .icon-server_box {
        width: 1.9375rem;
        height: 1.9375rem;
        margin-bottom: 0.5rem;
    }

    .m-home .server-list_item .tit {
        margin-bottom: 0.3125rem;
        font-size: 0.875rem;
        font-weight: 700;
        color: #4e5975;
    }

    .m-home .server-list_item .txt {
        line-height: 1.25rem;
        font-size: 0.6875rem;
        color: #8c95a8;
    }

    .m-home .m-model-btn {
        padding: 0.625rem 0.75rem;
    }

    .m-home .m-model-btn .model-btn_item {
        width: 6.9375rem;
        height: 2.5rem;
        line-height: 2.5rem;
        text-align: center;
        background: #fff;
        border-radius: 0.25rem;
        border: 1px solid #8c95a8;
        font-size: 0.9375rem;
        font-weight: 700;
        color: #4e5975;
    }

    .m-home .m-model-btn .model-btn_item.active {
        color: #fff;
        background: #3d72f6;
        border: 1px solid #3d72f6;
    }

    .m-home .m-service-con {
        width: 100%;
        background-color: #fff;
        padding-bottom: 1px;
    }

    .m-home .service-info .icon {
        width: 19.375rem;
        height: 13.5rem;
    }

    .m-home .service-info .text-desc {
        padding: 0 0.75rem;
    }

    .m-home .text-desc .title {
        font-size: 0.9375rem;
        color: #4e5975;
        font-weight: 700;
        margin-bottom: 1.125rem;
    }

    .m-home .text-desc .desc-info .tit {
        margin-bottom: 0.5rem;
        font-size: 0.875rem;
        color: #4e5975;
        font-weight: 700;
    }

    .m-home .text-desc .desc-info .text-con {
        margin-bottom: 1.5625rem;
        font-size: 0.8125rem;
        line-height: 1.25rem;
        color: #4e5975;
    }

    .m-home .m-about-con {
        padding-bottom: 0.9375rem;
    }

    .m-home .m-about-con .icon {
        width: 18.4375rem;
        height: 12.5rem;
    }

    .m-home .about-con_desc .text-desc {
        padding: 0.75rem;
        font-size: 0.875rem;
        text-indent: 2em;
        font-weight: 400;
        color: #1c1d1d;
        line-height: 1.5rem;
    }

    .m-home .m-new-con {
        background-color: #ffffff;
    }

    .m-home .m-new-con .news-nav {
        height: 4.5rem;
        padding: 0 1.5625rem;
        background-color: #fff;
    }

    .m-home .m-new-con .news-nav_item {
        height: 2.25rem;
        line-height: 2.25rem;
        font-size: 0.875rem;
        font-weight: 400;
        color: #676767;
        border: 1px solid #8c95a8;
        border-radius: 0.25rem;
        flex: 1;
    }

    .m-home .m-new-con .news-nav_item:first-child {
        margin-right: 0.6875rem;
    }

    .m-home .m-new-con .news-nav_item.active {
        font-weight: 700;
        color: #fff;
        border-color: #3d72f6;
        background-color: #3d72f6;
    }

    .m-home .m-new-con .m-news-list {
        padding: 0.46875rem 1.78125rem 1.5rem 1.875rem;
    }

    .m-home .m-news-list .news-list_item {
        margin-bottom: 0.375rem;
        font-size: 0.875rem;
        color: #4e5975;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .m-home .m-cooperation .m-cooperation-list {
        padding: 0 0.625rem 0.625rem;
    }

    .m-home .m-cooperation .cooperation-list_item {
        width: 6.875rem;
        height: 3.125rem;
        margin-bottom: 0.75rem;
    }

    /*h5首页 end */
    /*业务管理 start*/
    .m-business .header-con,
    .m-office .header-con,
    .m-market .header-con,
    .m-operation .header-con,
    .m-customer .header-con {
        width: 100%;
        height: 15.625rem;
        padding-top: 0;
        display: flex;
        align-items: center;
    }

    .m-business .banner-con,
    .m-office .banner-con,
    .m-market .banner-con,
    .m-operation .banner-con,
    .m-customer .banner-con {
        padding-top: 0;
    }

    .m-business .header-con .title,
    .m-office .banner-con .title,
    .m-market .banner-con .title,
    .m-operation .banner-con .title,
    .m-customer .banner-con .title {
        font-size: 1.75rem;
        font-weight: 700;
        text-align: center;
        margin: 0;
    }

    .m-business .header-con .info,
    .m-office .banner-con .info,
    .m-market .banner-con .info,
    .m-operation .banner-con .info,
    .m-customer .banner-con .info {
        display: none;
    }

    .m-business .header-con .title {
        font-size: 1.75rem;
        font-weight: 700;
        text-align: center;
        margin: 0;
    }

    .m-business .header-con .info {
        display: none;
    }

    .m-business .dict-con,
    .m-business .organization,
    .m-business .business-con,
    .m-office .dict-con,
    .m-office .organization,
    .m-office .office-con,
    .m-market .dict-con,
    .m-market .organization,
    .m-market .market-con,
    .m-operation .dict-con,
    .m-operation .organization,
    .m-operation .operation-con {
        width: 100%;
        padding-top: 1.6875rem;
        padding-bottom: 0.9375rem;
        height: auto;
    }

    .m-business .header-top .title,
    .m-office .header-top .title,
    .m-market .header-top .title,
    .m-operation .header-top .title {
        font-size: 1.125rem;
        line-height: 1.25rem;
        color: #000;
        font-weight: 500;
        margin-bottom: 0.53125rem;
    }

    .m-business .header-top .desc,
    .m-office .header-top .desc,
    .m-market .header-top .desc,
    .m-market .market-con .desc-con,
    .m-operation .header-top .desc {
        font-size: 0.8125rem;
        line-height: 1.25rem;
        color: #8c95a8;
        padding: 0 1.5625rem;
    }

    .m-business .dict-con .dict-con_desc {
        display: none;
    }

    .m-business .dict-con .m-dict-con_desc {
        display: block;
        width: 100%;
        padding: 0 0.75rem 0.5625rem;
    }

    .m-business .m-dict-con_desc .m-icon-bg_1 {
        width: 15.625rem;
        height: 15.625rem;
    }

    .m-business .dict-con .m-dict-con_desc .dict-list_item {
        position: relative;
        width: 10.625rem;
        height: 6.625rem;
        margin-bottom: 0.75rem;
        padding: 0.9375rem 0.9375rem 0;
        background: #fff;
        border-radius: 0.25rem;
        border: 1px solid rgba(140, 149, 168, .22);
    }

    .business .organization .icon-org,
    .business .business-con .icon-source_client,
    .business .business-con .icon-intensive,
    .business .business-con .icon-xinfang,
    .business .business-con .icon-bargain {
        display: none;
    }

    .m-business .organization .m-icon-org,
    .m-business .business-con .m-icon-source_client,
    .m-business .business-con .m-icon-intensive,
    .m-business .business-con .m-icon-xinfang,
    .m-business .business-con .m-icon-bargain {
        display: block;
    }

    .m-business .organization .m-icon-org {
        width: 21.75rem;
        height: 19.8125rem;
    }

    .m-business .business-con .m-icon-source_client {
        width: 22.96875rem;
        height: 11.25rem;
    }

    .m-business .business-con .m-icon-intensive {
        width: 23.125rem;
        height: 15.625rem;
    }

    .m-business .business-con .m-icon-xinfang {
        width: 22.1875rem;
        height: 12.5625rem;
    }

    .m-business .business-con .m-icon-bargain {
        width: 21.09375rem;
        height: 17rem;
    }

    .m-business .business-con .desc-con {
        width: 21.9375rem;
        height: 2.5rem;
        line-height: 2.5rem;
        margin: 1rem auto;
        background-color: #fff;
        border-radius: 0.25rem;
        font-size: 0.8125rem;
        font-weight: 500;
        color: #000;
        -webkit-box-shadow: 0 2px 10px 0 rgba(67, 102, 176, .16);
        box-shadow: 0 2px 10px 0 rgba(67, 102, 176, .16);
    }

    .m-business .business-con .xinfang-con {
        width: 21.9375rem;
        height: auto;
    }

    /*业务管理 end*/
    /*移动办公 start*/
    .m-office .dict-con .video-btn {
        display: none;
    }

    .m-office .dict-con .m-icon-bg_1,
    .m-office .organization .m-icon-bg_2,
    .m-office .office-con .m-icon-bg_3,
    .m-office .office-con .m-icon-bg_4 {
        display: block;
    }

    .m-office .dict-con .icon-bg_1,
    .m-office .organization .icon-bg_2,
    .m-office .office-con .icon-bg_3,
    .m-office .office-con .icon-bg_4 {
        display: none;
    }

    .m-office .dict-con .m-icon-bg_1 {
        width: 21.125rem;
        height: 15.375rem;
    }

    .m-office .organization .m-icon-bg_2 {
        width: 18.4375rem;
        height: 13.375rem;
    }

    .m-office .office-con .m-icon-bg_3 {
        width: 22.9375rem;
        height: 24.8125rem;
    }

    .m-office .office-con .m-icon-bg_4 {
        width: 22.9375rem;
        height: 11.4375rem;
    }

    .m-office .store-con_desc_img {
        width: auto;
        height: auto;
    }

    /*移动办公 end*/
    /*营销获客 start*/
    .m-market .organization .video-btn {
        display: none;
    }

    .m-market .dict-con .m-icon-bg_1,
    .m-market .organization .m-icon-bg_2,
    .m-market .market-con .m-icon-bg_3,
    .m-market .market-con .m-icon-bg_4,
    .m-market .market-con .m-icon-bg_5,
    .m-market .market-con .m-icon-bg_6 {
        display: block;
    }

    .m-market .dict-con .icon-bg_1,
    .m-market .organization .icon-bg_2,
    .m-market .market-con .icon-bg_3,
    .m-market .market-con .icon-bg_4,
    .m-market .market-con .icon-bg_5,
    .m-market .market-con .icon-bg_6 {
        display: none;
    }

    .m-market .dict-con .m-icon-bg_1 {
        width: 22.65625rem;
        height: 8.53125rem;
    }

    .m-market .organization .m-icon-bg_2 {
        width: 21.9375rem;
        height: 16.5625rem;
    }

    .m-market .market-con .m-icon-bg_3 {
        width: 15.625rem;
        height: 15.625rem;
    }

    .m-market .market-con .m-icon-bg_4 {
        width: 21.625rem;
        height: 16.375rem;
    }

    .m-market .market-con .m-icon-bg_5 {
        width: 21rem;
        height: 12.8125rem;
    }

    .m-market .market-con .m-icon-bg_6 {
        width: 21.25rem;
        height: 11.78125rem;
    }

    /*营销获客 end*/
    /*运营分析 start*/
    .m-operation .dict-con .dict-list_item {
        display: none;
    }

    .m-operation .dict-con .dict-con_list {
        margin: 0;
        width: 100%;
    }

    .m-operation .dict-con .m-icon-bg_1,
    .m-operation .organization .m-icon-bg_2,
    .m-operation .operation-con .m-icon-bg_3,
    .m-operation .operation-con .m-icon-bg_4 {
        display: block;
    }

    .m-operation .dict-con .icon-bg_1,
    .m-operation .organization .icon-bg_2,
    .m-operation .operation-con .icon-bg_3,
    .m-operation .operation-con .icon-bg_4 {
        display: none;
    }

    .m-operation .dict-con .m-icon-bg_1 {
        width: 21.0625rem;
        height: 14.9375rem;
        margin: 0 auto;
    }

    .m-operation .organization .m-icon-bg_2 {
        width: 23.125rem;
        height: 13.5rem;
    }

    .m-operation .operation-con .m-icon-bg_3 {
        width: 21.0625rem;
        height: 14.1875rem;
    }

    .m-operation .operation-con .m-icon-bg_4 {
        width: 21.1875rem;
        height: 12rem;
    }

    /*运营分析 end*/
    /*客户服务 start*/
    .m-customer .header-con {
        margin-bottom: 0;
    }

    .m-customer .services-steps {
        padding-bottom: 1.75rem;
    }

    .m-customer .timeline-item {
        padding-top: 1.6875rem;
        padding-bottom: 0;
    }

    .m-customer .timeline-item__tail,
    .m-customer .timeline-item__node {
        display: none;
    }

    .m-customer .timeline-item__wrapper {
        padding: 0;
    }

    .m-customer .services-steps .icon-box {
        width: 21.9375rem;
        height: 9rem;
        padding: 0.6875rem 0 0 1.125rem;
    }

    .m-customer .timeline-item__timestamp {
        line-height: 1.4375rem;
        font-size: 1.125rem;
        color: #000;
        font-weight: 500;
        text-align: center;
    }

    .m-customer .timeline-item__timestamp.is-top {
        padding: 0;
        margin: 0 auto 1.4375rem;
    }

    .m-customer .card__body {
        padding: 0;
    }

    .m-customer .services-steps .servers-bg_1 {
        background-image: url(/wap/icon-service1.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50%;
    }

    .m-customer .services-steps .servers-bg_2 {
        background-image: url(/wap/icon-service2.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50%;
    }

    .m-customer .services-steps .servers-bg_3 {
        background-image: url(/wap/icon-service3.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50%;
        height: 12rem;
    }

    .m-customer .services-steps .icon-box .text {
        font-size: 0.875rem;
        font-weight: 200;
        line-height: 1.5rem;
        color: #fff;
    }

    .m-customer .services-steps .icon-box .tel-number {
        color: #fff;
        font-size: 1.125rem;
    }

    .m-customer .services-steps .icon-box .icon-tel {
        width: 1.25rem;
        height: 1.25rem;
    }

    .m-customer .servers-bg_3 .card__body {
        height: 100%;
        padding: 0;
        display: flex;
        flex-flow: column;
        justify-content: space-around
    }

    .m-customer .card__body .card__body-title {
        margin-right: 0;
    }

    .m-customer .card__body .card__body-title .title {
        font-size: 0.875rem;
        line-height: 1rem;
        margin-bottom: 0;
    }

    /*客户服务 end*/
    /*车位系统 end*/
    .m-parking .banner {
        display: none;
    }

    .m-parking .m-banner {
        height: 31.25rem;
        background-image: url(/wap/parking-banner.png);
        width: 101%;
        background-size: cover;
        background-position: 50%;
    }

    .m-parking .store,
    .m-parking .project,
    .m-parking .client,
    .m-parking .pact,
    .m-parking .stats {
        padding: 1.375rem 0;
        height: auto;
    }

    .m-parking .header-top {
        margin-bottom: 1rem;
        width: 100%;
        text-align: center;
        font-size: 1.25rem;
        color: #000;
        line-height: 2rem;
    }

    .m-parking .section-con {
        width: 100%;
    }

    .m-parking .header-top .title-bg {
        text-align: center;
        font-size: 1.75rem;
        font-weight: 400;
        color: #8c95a8;
        line-height: 2rem;
        margin-top: -2rem;
        opacity: .2;
    }

    .m-parking .fun-list {
        width: 100%;
        padding: 0 0 0 0.1875rem;
        justify-content: start;
    }

    .m-parking .store .fun-list_item {
        padding: 1.25rem;
    }

    .m-parking .store .fun-list_item img {
        width: 2.9375rem;
        height: 2.9375rem;
    }

    .m-parking .store .fun-list_item p {
        font-size: 0.8125rem;
        font-weight: 400;
        color: #3d3d3d;
        line-height: 1.875rem;
    }

    .m-parking .project .project_item,
    .m-parking .client .client_item,
    .m-parking .pact .pact_item,
    .m-parking .stats .stats_item {
        flex-flow: column;
        align-items: center;
    }

    .m-parking .project_item_left,
    .m-parking .client_item_right,
    .m-parking .stats_item_right,
    .m-parking .pact_item_left {
        padding: 0 0.9375rem;
    }

    .m-parking .project .title,
    .m-parking .client .title,
    .m-parking .pact .title,
    .m-parking .stats .title {
        font-size: 1.0625rem;
        color: #000;
        line-height: 1.25rem;
        text-align: center;
    }

    .m-parking .project .text,
    .m-parking .client .text,
    .m-parking .pact .text,
    .m-parking .stats .text {
        width: 100%;
        margin-top: 0.6875rem;
        font-size: 0.9375rem;
        line-height: 1.75rem;
        color: #3d3d3d;
    }

    .m-parking .project img {
        width: 12.375rem;
        height: 13.6875rem;
        margin-top: 0.6875rem;
    }

    .m-parking .client img,
    .m-parking .stats img {
        display: none;
    }

    .m-parking .client .client_img,
    .m-parking .stats .stats_img,
    .m-parking .pact img {
        display: block;
        width: 18.0625rem;
        height: 12.5625rem;
        margin-top: 0.6875rem;
    }

    .m-parking .pact .title-bg {
        font-size: 1.55rem;
    }

    .m-parking .pact .title,
    .m-parking .pact .text {
        color: #fff;
    }

    /*车位系统 end*/
    /*直营门店 start*/
    .m-store .header-con,
    .m-join .header-con,
    .m-rental .header-con {
        width: 100%;
        height: 15.625rem;
        padding-top: 0;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
    }

    .m-store .header-con .title,
    .m-rental .header-con .title,
    .m-join .header-con .title {
        padding-top: 0;
        font-size: 1.75rem;
        font-weight: 700;
        color: #fff;
        text-shadow: 0 2px 13px rgba(23, 59, 147, .6);
    }

    .m-store .header-con .company-intro,
    .m-rental .header-con .company-intro,
    .m-join .header-con .company-intro {
        font-size: 0.875rem;
        line-height: 1.5rem;
    }

    .m-store .store-con,
    .m-rental .store-con,
    .m-join .store-con {
        padding: 1.6875rem 0.75rem 0.9375rem;
        height: auto;
    }

    .m-store .header-top .title,
    .m-rental .header-top .title,
    .m-join .header-top .title {
        width: 15rem;
        height: auto;
        text-align: center;
        font-size: 1.125rem;
        color: #000;
        line-height: 1.3125rem;
    }

    .m-store .store-con .store-con_modal,
    .m-rental .store-con .store-con_modal,
    .m-join .store-con .store-con_modal {
        width: 100%;
        flex-wrap: wrap;
    }

    .m-store .store-con .modal-con,
    .m-rental .store-con .modal-con,
    .m-join .store-con .modal-con {
        width: 21.9375rem;
        border-radius: 0.375rem;
        overflow: hidden;
        margin: 0 auto 0.75rem;
    }

    .m-store .store-con_desc .model-bg,
    .m-store .store-con_desc .office-bg,
    .m-rental .store-con_desc .model-bg,
    .m-rental .store-con_desc .office-bg,
    .m-join .store-con_desc .model-bg,
    .m-join .store-con_desc .office-bg {
        height: 12.4375rem;
    }

    .m-store .store-con_desc .title,
    .m-rental .store-con_desc .title,
    .m-join .store-con_desc .title {
        font-size: 1.3125rem;
        line-height: 1.9375rem;
    }

    .m-store .store-con_desc .text,
    .m-rental .store-con_desc .text,
    .m-join .store-con_desc .text {
        font-size: 0.8125rem;
        line-height: 1.25rem;
    }

    .m-store .store-con .store-con_list,
    .m-rental .store-con .store-con_list,
    .m-join .store-con .store-con_list {
        padding: 1.3125rem 1rem 0.5625rem;
    }

    .m-store .store-con .store-list_item,
    .m-rental .store-con .store-list_item,
    .m-join .store-con .store-list_item {
        width: 9.375rem;
        height: 2.25rem;
        line-height: 2.25rem;
        font-size: 0.875rem;
    }

    .m-store .header-top.case .title,
    .m-rental .header-top.case .title,
    .m-join .header-top.case .title {
        width: 13.625rem;
    }

    .m-store .case-con,
    .m-rental .case-con,
    .m-join .case-con {
        padding: 1.6875rem 0 0;
        height: auto;
    }

    .m-store .case-con .case-bg,
    .m-rental .case-con .case-bg,
    .m-join .case-con .case-bg {
        width: 100%;
        height: auto;
        padding: 1.5625rem 0.75rem;
        background-image: url(/wap/icon-case_bg.png);
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 0;
    }

    .m-store .case-con .case-con_bg,
    .m-rental .case-con .case-con_bg,
    .m-join .case-con .case-con_bg {
        height: auto;
        padding: 1.1875rem 1.4375rem 1.25rem;
        border-radius: 0.5rem;
    }

    .m-store .case-con .case-bg img,
    .m-rental .case-con .case-bg img,
    .m-join .case-con .case-bg img {
        display: none;
    }

    .m-store .case-con .case-con_bg .tit,
    .m-rental .case-con .case-con_bg .tit,
    .m-join .case-con .case-con_bg .tit {
        font-size: 0.8125rem;
        line-height: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .m-store .case-con .case-con_bg .text,
    .m-rental .case-con .case-con_bg .text,
    .m-join .case-con .case-con_bg .text {
        font-size: 0.8125rem;
        line-height: 1.25rem;
        padding-top: 1.25rem;
    }

    /*直营门店 end*/
    /*加盟模式 start*/
    .m-join .header-top {
        margin-bottom: 1.6875rem;
    }

    .m-join .header-nav,
    .m-rental .header-nav,
    .m-store .header-nav {
        display: flex;
        height: 2.9375rem;
        background-color: #fff;
        position: sticky;
        top: 0;
    }

    .m-join .header-nav .header-nav-item,
    .m-rental .header-nav .header-nav-item,
    .m-store .header-nav .header-nav-item {
        height: 100%;
        font-size: 0.9375rem;
        color: #444A55;
    }

    .m-join .header-nav .header-nav-item a,
    .m-rental .header-nav .header-nav-item a,
    .m-store .header-nav .header-nav-item a {
        display: block;
        width: 100%;
        height: 100%;
        line-height: 2.9375rem;
    }

    .m-join .header-nav .header-nav-item.open,
    .m-rental .header-nav .header-nav-item.open,
    .m-store .header-nav .header-nav-item.open {
        color: #3D72F6;
        border-bottom: 1px solid #3D72F6;
    }

    /*加盟模式 end*/
    /*租售中心 start*/
    .m-rental .store-con .store-con_modal .modal-con {
        width: 21.9375rem;
        margin: 0 auto 1.5rem;
    }

    /*租售中心 end*/
    /*关于我们 start*/
    .m-about .banner-con {
        width: 100%;
        height: 15.625rem;
        padding-top: 0;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
    }

    .m-about .banner-con .title {
        padding-top: 0;
        font-size: 2.6875rem;
        line-height: 4.125rem;
        font-weight: 700;
        color: #000;
        text-shadow: 0 2px 13px rgba(23, 59, 147, .6);
    }

    .m-about .banner-con .info {
        font-size: 0.875rem;
        line-height: 1.5rem;
    }

    .m-about .header-top {
        padding: 0;
    }

    .m-about .about-info {
        padding: 1.6875rem 0 0.9375rem;
        height: auto;
    }

    .m-about .contact-info {
        display: none;
    }

    .m-about .about-info .title {
        width: 8.40625rem;
        height: auto;
        text-align: center;
        font-size: 1.125rem;
        color: #000;
        line-height: 1.3125rem;
        margin: 0 auto 0.75rem;
    }

    .m-about .about-con_desc {
        flex-flow: column;
    }

    .about .icon {
        display: none;
    }

    .m-about .about-con_desc .m-icon {
        display: block;
        width: 16.25rem;
        height: 11.25rem;
        margin-bottom: 0.9375rem;
    }

    .m-about .about-con_desc .about-con_desc-con {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.875rem;
        color: #1c1d1d;
    }

    /*关于我们 end*/
    /*新闻中心 start*/
    .m-new .new-title,
    .m-new-detail .new-title {
        width: 100%;
        height: 15.625rem;
        padding-top: 0;
        display: flex;
        flex-flow: column;
        align-items: center;
    }

    .m-new .new-title .title,
    .m-new-detail .new-title .title {
        font-size: 1.75rem;
        font-weight: 700;
        text-align: center;
        margin: 0;
    }

    .m-new .new-title .info,
    .m-new-detail .new-title .info {
        font-size: 0.875rem;
        line-height: 1.5rem;
    }

    .m-new .m-news-list {
        padding: 0.75rem;
        height: auto;
    }

    .m-new .news-list_item {
        width: 100%;
        padding: 0.75rem;
        margin-bottom: 0.75rem;
        background-color: #fff;
        cursor: pointer;
        border-radius: 0.25rem;
    }

    .m-new ul {
        width: 100%;
    }

    .m-new .news-list_item .news-cover {
        width: 6.875rem;
        height: 5.15625rem;
        margin: 0 0.53125rem 0 0;
    }

    .m-new .news-list_item > a {
        align-items: center;
    }

    .m-new .news-list_item .news-info {
        height: 6.875rem;
        width: 13rem;
    }

    .m-new .news-list_item .title {
        font-size: 0.875rem;
    }

    .m-new .news-list_item .con-info {
        line-height: 1rem;
        font-size: 0.6875rem;
    }

    .m-new .news-list_item .date-text {
        font-size: 0.625rem;
    }

    .m-new .page-con {
        display: none;
    }

    .m-new .m-page-con {
        display: block;
        width: 100%;
    }

    .m-new .m-page-con .pagination {
        padding: 0;
        margin: 0 15px 15px 15px;
    }

    .m-new .m-page-con .pagination > a,
    .m-new .m-page-con .pagination > span {
        width: 5.1875rem;
        height: 1.75rem;
        line-height: 1.75rem;
        color: #212529;
        font-size: 0.75rem;
        text-align: center;
        background: #fff;
        border-radius: 2px;
        border: 1px solid #d9d9d9;
        margin: 0;
    }

    .m-new .m-page-con .pagination .pages {
        font-size: 0.8125rem;
        font-weight: 400;
        color: #676767;
    }

    .m-new .news-list {
        padding: 16px;
    }

    /*新闻中心 end*/
    /*新闻详情 end*/
    .m-new-detail {
        padding-bottom: 0;
    }

    .m-new-detail .new-title {
        display: block;
    }

    .m-new-detail .banner-con {
        display: none;
    }

    .m-new-detail .publish-info .title {
        display: block;
    }

    .m-new-detail .news-desc {
        width: 100%;
        padding: 0;
        border-radius: 0;
        background-color: #fff;
    }

    .m-new-detail .news-desc .publish-info {
        margin-bottom: 0;
        padding: 0.9375rem 0.75rem;
        text-align: center;
        border: 1px solid #d8dde7;
    }

    .m-new-detail .publish-info .title {
        font-size: 0.9375rem;
        padding: 0 1.875rem;
        color: #1c1d1d;
        font-weight: 700;
    }

    .m-new-detail .publish-info span {
        padding-top: 0.75rem;
        font-size: 0.825rem;
        font-weight: 400;
        color: #676767;
    }

    .m-new-detail .news-desc_con {
        padding: 1.25rem;
        margin: 0;
    }

    .m-new-detail .news-desc_con img {
        max-width: 21.875rem;
        margin: 0 auto;
    }

    .m-new-detail .preornext {
        display: none;
    }

    .m-new-detail .m-preornext {
        display: flex;
        padding: 0.375rem 0.75rem 1rem;
    }

    .m-new-detail .m-preornext .item span {
        display: block;
        width: 5.1875rem;
        height: 1.75rem;
        line-height: 1.75rem;
        color: #212529;
        font-size: 0.75rem;
        text-align: center;
        background: #fff;
        border-radius: 2px;
        border: 1px solid #d9d9d9;
    }

    /*新闻详情 end*/
    /*申请试用  start*/
    .m-apply .header-con {
        height: auto;
        padding: 3.375rem 0 1.75rem;
        display: flex;
        justify-content: center;
        background-image: none;
        background-color: #f2f6ff;
    }

    .m-apply .header-con .back-video {
        display: none;
    }

    .m-apply .form-con {
        position: relative;
        top: 0;
        left: 0;
        padding-top: 0;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .m-apply .form-item {
        margin-bottom: 1rem;
        position: relative;
    }

    .m-apply .form-con .title {
        margin-bottom: 2.34375rem;
        padding: 0;
        font-size: 1.5rem;
        color: #000;
        font-weight: 700;
        text-align: center;
        text-shadow: none;
    }

    .m-apply .form-con .input-con,
    .m-apply .form-con .select-con {
        width: 12.625rem;
        height: 2.25rem;
        line-height: 2.25rem;
        padding-left: 1.875rem;
        font-size: 0.8125rem;
        border-radius: 0.25rem;
        border: 1px solid #dcdfe6;
    }

    .m-apply .form-item.plan {
        display: none;
    }

    .apply .form-con .save-con {
        padding-top: 2.8125rem;
    }

    .apply .form-con .save-con .save-btn {
        width: 14.6875rem;
        height: 2.75rem;
        font-size: 0.9375rem;
        font-weight: 500;
        background: #3d72f6;
        border-radius: 1.325rem;
        color: #fff;
        border: none;
    }

    .apply .form-con .save-con .hint-info {
        padding-top: 1.25rem;
        font-size: 0.6875rem;
        line-height: 2.25rem;
        color: #8c95a8;
        font-weight: 400;
    }

    .apply .form-con .error-message {
        font-size: 0.75rem;
        position: absolute;
        left: 0;
    }

    /*申请试用 end*/
    /*企业微信 start*/
    .m-wechat {
        position: relative;
    }

    .m-wechat .wechat-bg {
        width: 100%;
        padding: 2.0625rem 1.6875rem 0;
        height: calc(100vh - 4.25rem);
        position: absolute;
        top: 0;
        left: 0;
        background-color: #f2f6ff;
        z-index: 1000;
    }

    .m-wechat .wechat-bg img {
        max-width: 100%;
        margin-bottom: 1.25rem;
    }

    .m-wechat .wechat-bg .text {
        color: #8c95a8;
        width: 100%;
        font-size: 0.9375rem;
        text-align: center;
    }

    /*企业微信 end*/



    /*百度推广页 start*/
    .m-promotion .promotion-banner{
        width: 100%;
        height: 49.08rem;
        background-image: url(/image/promotion-banner_m.png);
        padding: 2.85rem 1.25rem 1.25rem;
    }
    .m-promotion .promotion-banner h1{
        font-size: 1.75rem;
        color: #FFFFFF;
        line-height: 2.38rem;
    }
    .m-promotion .promotion-banner h2{
        margin-top: 1.22rem;
        font-weight: 500;
        font-size: 0.94rem;
        color: #FFFFFF;
        line-height: 1.31rem;
    }
    .m-promotion .promotion-banner .promotion-banner_h2{
        display: none;
    }
    .m-promotion .promotion-banner .promotion-banner_h2_m{
        display: block;
    }
    .m-promotion .promotion-banner .icon-bg{
        display: none;
    }
    .m-promotion .promotion-banner .icon-bg_m{
        display: block;
        width: 100%;
        height: 16.66rem;
        margin-top: 2.28rem;
    }
    .m-promotion .promotion-banner .banner-input_box{
        display: block;
        width: 100%;
    }
    .m-promotion .promotion-banner .banner-input-group{
        width: 100%;
        display: block;
        padding-bottom: 1rem;
    }
    .m-promotion .promotion-banner .banner-input-group input{
        width: 100%;
        height: 2.5rem;
    }
    .m-promotion .promotion-banner .banner-input-group2{
        position: relative;
    }
    .m-promotion .promotion-banner .banner-input-group2 .save-btn{
        width: 100%;
        height: 2.5rem;
        margin-top: 0.5rem;
        color: #FFFFFF;
        background: #FF9718;
        border-radius: 8.81rem 8.81rem 8.81rem 8.81rem;
        border: 0.06rem solid #F7B500;
    }
    .m-promotion .promotion-banner .banner-input-group3{
        margin-left: 0;
    }
    .m-promotion .promotion-banner .banner-input-group .error-message {
        font-size: 0.75rem;
        position: absolute;
        left: 0;
    }
    .m-promotion .channel,
    .m-promotion .pattern,
    .m-promotion .lifecycle{
        width: 100%;
        padding: 1.25rem 0.75rem 0.75rem;
    }
    .m-promotion .channel .channel-con,
    .m-promotion .pattern .pattern-con,
    .m-promotion .lifecycle .lifecycle-con,
    .m-promotion .cooperation .cooperation-con{
        padding: 0;
    }

    .m-promotion .channel-con h4{
        font-size: 1.25rem;
        color: #000000;
        line-height: 1.81rem;
    }
    .m-promotion .channel-con .info{
        font-size: 0.87rem;
        color: #818B9D;
        line-height: 1.28rem;
    }
    .m-promotion .channel-tryout,
    .m-promotion .channel-list_item .channel-list_tryout{
        font-size: 1rem;
        color: #3D72F6;
        line-height: 1.44rem;
        display: flex;
        align-items: center;
        margin-bottom: 0.75rem;
    }
    .m-promotion .channel-tryout img,
    .m-promotion .channel-list_item .channel-list_tryout img{
        width: 1.02rem;
        height: 1.02rem;
        margin-left: 0.22rem;
    }

    .m-promotion .channel-list_item{
        width: 100%;
        height: 13.06rem;
        padding: 1rem;
        margin-bottom: 0.75rem;
    }

    .m-promotion .channel-list_item .icon-channel_box {
        width: 2.75rem;
        height: 2.75rem;
    }

    .m-promotion .channel-list_item .tit {
        font-size: 1.13rem;
        color: #3D3D3D;
        line-height: 1.63rem;
    }

    .m-promotion .channel-list_item .txt {
        font-size: 0.88rem;
        color: #3D3D3D;
        line-height: 1.38rem;
    }

    .m-promotion .port,
    .m-promotion .advantage,
    .m-promotion .cooperation{
        width: 100%;
        margin: 0;
    }

    .m-promotion .port-con,
    .m-promotion .advantage-con{
        background: linear-gradient( 90deg, #1B55E8 0%, #487CFF 100%);
        border-radius: 0;
        height: 100%;
        padding: 1.25rem 0.75rem 0.75rem;
        text-align: center;
    }

    .m-promotion .channel-con h4,
    .m-promotion .pattern-con h4,
    .m-promotion .lifecycle-con h4,
    .m-promotion .cooperation-con h4{
        font-weight: 500;
        font-size: 1.25rem;
        color: #000000;
        line-height: 1.81rem;
    }

    .m-promotion .channel-con .info,
    .m-promotion .pattern-con .info,
    .m-promotion .lifecycle-con .info,
    .m-promotion .cooperation-con .info{
        font-size: 0.88rem;
        color: #818B9D;
        line-height: 1.28rem;
        margin-bottom: 0.75rem;
    }

    .m-promotion .port-con .port-list{
        display: block;
    }

    .m-promotion .port-con .port-list_right{
        display: none;
    }

    .m-promotion .port-con .port-list_right_m{
        display: block;
    }

    .m-promotion .port-con .port-list_right_m img{
        width: 100%;
        height: 8.53rem;
    }
    .m-promotion .port-con .port-list_left{
        justify-content: space-between;
        margin-top: 1.75rem;
    }

    .m-promotion .port-con .list-left_item{
        width: 4.19rem;
        height: 3.22rem;
        font-size: 0.75rem;
        color: #FFFFFF;
        line-height: 1.09rem;
    }

    .m-promotion .port-con .list-left_item img{
        width: 1.75rem;
        height: 1.75rem;
    }

    .m-promotion .pattern-list_item{
        width: 100%;
        height: 23rem;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 0.74rem;
    }
    .m-promotion .pattern-list_item .item-top{
        width: 100%;
        height: 7.44rem;
        background: #5594FA;
        padding: 0.75rem;
    }
    .m-promotion .pattern-list_item .item-top h5{
        font-weight: 500;
        font-size: 1.25rem;
        color: #FFFFFF;
        line-height: 1.81rem;
        text-align: center;
    }
    .m-promotion .pattern-list_item .item-top p{
        font-size: 0.88rem;
        color: #FFFFFF;
        line-height: 1.38rem;
    }

    .m-promotion .pattern-list_item .item-bottom{
        background: #fff;
        height: 15.56rem;
        padding: 0.75rem;
    }
    .m-promotion .pattern-list_item .item-bottom .title{
        font-weight: 700;
        font-size: 1rem;
        color: #3D3D3D;
        line-height: 1.44rem;
    }
    .m-promotion .pattern-list_item .item-bottom .tit{
        font-weight: 700;
        font-size: 0.88rem;
        color: #3D3D3D;
        line-height: 1.5rem;
    }
    .m-promotion .pattern-list_item .item-bottom .txt{
        font-size: 0.85rem;
        color: #3D3D3D;
        line-height: 1.5rem;
    }
    .m-promotion .advantage-con{
        padding: 0.75rem;
    }

    .m-promotion .advantage-con .advantage-banner{
        width: 21.06rem;
        height: 2.94rem;
        margin-top: 0.75rem;
    }
    .m-promotion .advantage-list .list-item img{
        width: 2.75rem;
        height: 2.75rem;
    }
    .m-promotion .advantage-con .advantage-list .list-item,
    .m-promotion .advantage-con .advantage-list .list-item1,
    .m-promotion .advantage-con .advantage-list .list-item2,
    .m-promotion .advantage-con .advantage-list .list-item3{
        opacity: 0.9;
        padding: 0.88rem 0.75rem;
        margin-bottom: 0.75rem;
        width: 21.94rem;
        height: 4.5rem;
        background: #FFFFFF;
        border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
        text-align: left;
        margin-left: 0;
    }
    .m-promotion .advantage-con .advantage-list .list-item .item-left_img{
        display: block;
    }
    .m-promotion .advantage-con .advantage-list .list-item .item-right_img{
        display: none;
    }
    .m-promotion .advantage-con .advantage-list .list-item_left{
        text-align: left;

    }
    .m-promotion .advantage-con .advantage-list .list-item_left p{
        margin: 0;
    }

    .m-promotion .advantage-con .advantage-list_con{
        display: none;
    }
    .m-promotion .advantage-list .list-item p{
        font-weight: 700;
        font-size: 0.88rem;
        color: #444A55;
        line-height: 1.5rem;
    }

    .m-promotion .lifecycle-nav .nav-item{
        width: 10.47rem;
        height: 2.5rem;
        background: #FFFFFF;
        box-shadow: 0rem 0.06rem 0.31rem 0rem rgba(78,89,117,0.1);
        border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    .m-promotion .lifecycle-nav .nav-item img{
        width: 1.13rem;
        height: 1.13rem;
    }
    .m-promotion .lifecycle-nav .nav-item p{
        font-weight: 500;
        font-size: 0.88rem;
        color: #3D3D3D;
        line-height: 0.75rem;
        text-align: center;
        margin-left: 8px;
    }
    .m-promotion .lifecycle-business{
        width: 100%;
        height: 9.38rem;
        background: #FFFFFF;
        box-shadow: 0rem 0.06rem 0.31rem 0rem rgba(78,89,117,0.1);
        border-radius: 0.25rem 0.25rem 0.25rem 0.25rem;
        padding: 0.31rem;
        margin-bottom: 0.75rem;
    }
    .m-promotion .lifecycle-business .business-left{
        width: 5rem;
        height: 8.75rem;
        background: #5594FA;
        border-radius: 0.25rem 0.25rem 0.25rem 0.25rem;
        padding: 3.09rem 1.53rem;
        font-weight: 500;
        font-size: 0.88rem;
        color: #FFFFFF;
        line-height: 1.28rem;
        text-align: center;
    }
    .m-promotion .lifecycle-ability,
    .m-promotion .lifecycle-serve{
        height: 5.16rem;
    }
    .m-promotion .lifecycle-ability .business-left{
        width: 5rem;
        height: 4.53rem;
        padding: 0.97rem 1.53rem;
        background: #23CF65;
        border-radius: 0.25rem 0.25rem 0.25rem 0.25rem;
    }
    .m-promotion .lifecycle-serve .business-left{
        width: 5rem;
        height: 4.53rem;
        padding: 0.97rem 1.53rem;
        background: #F7B500;
        border-radius: 0.25rem 0.25rem 0.25rem 0.25rem;
    }

    .m-promotion .lifecycle-business .business-right{
        width: 16rem;
        padding: 0.31rem;
    }
    .m-promotion .lifecycle-business .business-right p{
        min-width: 5.12rem;
        height: 1.09rem;
        font-weight: 500;
        font-size: 0.75rem;
        color: #3D3D3D;
        line-height: 1.09rem;
    }
    .m-promotion .lifecycle-banner{
        display: none;
    }
    .m-promotion .bottom-list_item{
        width: 100%;
        height: 9.88rem;
        background: #FFFFFF;
        border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
        overflow: hidden;
        margin-bottom: 1rem;
    }
    .m-promotion .bottom-list_item .item-left{
        width: 10.69rem;
        padding: 1rem;
        font-size: 1.28rem;
    }
    .m-promotion .bottom-list_item .item-left img{
        width: 1.75rem;
        height: 1.75rem;
    }
    .m-promotion .bottom-list_item .item-left .tit{
        font-weight: 500;
        font-size: 0.88rem;
        color: #3D3D3D;
        line-height: 1.28rem;
    }
    .m-promotion .bottom-list_item .item-left .txt{
        font-weight: 500;
        font-size: 0.63rem;
        color: #3D3D3D;
        line-height: 0.94rem;
    }
    .m-promotion .bottom-list_item .item-left .item-txt1{
        display: none;
    }
    .m-promotion .bottom-list_item .item-left .item-txt2{
        display: block;
    }
    .m-promotion .bottom-list_item .item-img{
        width: 10.69rem;
        height: 9.88rem;
        opacity: 0.8;
    }
    .m-promotion .bottom-list_item .channel-list_tryout{
        font-size: 0.63rem;
        color: #3D72F6;
        line-height: 0.63rem;
        margin-top: 0.31rem;
    }
    .m-promotion .bottom-list_item .channel-list_tryout img{
        margin-left: 8px;
        width: 0.61rem;
        height: 0.61rem;
    }
    .m-promotion .cooperation{
        padding: 0.78rem;
        width: 100%;
        height: 37.5rem;
        background-image: url(/image/cooperation-bg.png);
        background-position: 50%;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .m-promotion .cooperation .cooperation-con{
        width: 100%;
    }
    .m-promotion .cooperation .cooperation-con h4,
    .m-promotion .cooperation .cooperation-con .info{
        color: #fff;
    }
    .m-promotion .cooperation .info{
        margin-bottom: 0;
    }
    .m-promotion .cooperation .channel-tryout{
        color: #fff;
        margin-bottom: 0;
    }
    .m-promotion .cooperation .cooperation-list{
        width: 21.5rem;
        margin: 0 auto;
    }
    .m-promotion .cooperation .cooperation-list > div{
        width: 156.125rem;
    }
    .m-promotion .cooperation .cooperation-list div img{
        width: 85.0625rem;
        height: 3.8125rem;
    }

    .m-promotion .apply{
        display: none;
    }

    /*百度推广页 end*/

}
