@charset "UTF-8";
@font-face {
    font-family: 'DINPro-Bold';
    src: url('../fonts/DINPro-Bold.eot');
    src: local('☺'), url('../fonts/DINPro-Bold.woff') format('woff'), url('../fonts/DINPro-Bold.ttf') format('truetype'), url('../fonts/DINPro-Bold.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'DINPro-Medium';
    src: url('../fonts/DINPro-Medium.eot');
    src: local('☺'), url('../fonts/DINPro-Medium.woff') format('woff'), url('../fonts/DINPro-Medium.ttf') format('truetype'), url('../fonts/DINPro-Medium.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'DINPro-Regular';
    src: url('../fonts/DINPro-Regular.eot');
    src: local('☺'), url('../fonts/DINPro-Regular.woff') format('woff'), url('../fonts/DINPro-Regular.ttf') format('truetype'), url('../fonts/DINPro-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Avenir Next';
    src: url('../fonts/AvenirNext-Medium.eot');
    src: url('../fonts/AvenirNext-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/AvenirNext-Medium.woff2') format('woff2'),
    url('../fonts/AvenirNext-Medium.woff') format('woff'),
    url('../fonts/AvenirNext-Medium.ttf') format('truetype'),
    url('../fonts/AvenirNext-Medium.svg#AvenirNext-Medium') format('svg');
    font-style: normal;
}





.font-din {
    font-family: 'DINPro-Regular';
}
.font-din.bold {
    font-family: 'DINPro-Bold';
}
.font-din.medium {
    font-family: 'DINPro-Medium';
}
.font-avenir {
    font-family: 'Avenir Next';
}
.clear {
    clear: both;
}
.clearfix {
    zoom: 1;
}
.clearfix:after {
    content: "";
    clear: both;
    overflow: hidden;
    height: 0;
    width: 100%;
    display: block;
    zoom: 1;
}
img {
    max-width: 100%;
    height: auto;
}

.animated {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes scaleOut {
    0% { -webkit-transform: scale(0.6); opacity: 0; }
    100% { -webkit-transform: scale(1.00); opacity: 1.0; }
}
@keyframes scaleOut {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1.00); opacity: 1.0; }
}

.scaleOut {
    -webkit-animation: scaleOut 0.3s ease-in-out both;
    animation: scaleOut 0.3s ease-in-out both;
}

@-webkit-keyframes scaleIn {
    0% { -webkit-transform: scale(1.0); opacity: 1.0; }
    100% { -webkit-transform: scale(0.6); opacity: 0; }
}
@keyframes scaleIn {
    0% { transform: scale(1.0); opacity: 1.0; }
    100% { transform: scale(0.6); opacity: 0; }
}

.scaleIn {
    -webkit-animation: scaleIn 0.3s ease-in-out both;
    animation: scaleIn 0.3s ease-in-out both;
}
@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    -webkit-animation: slideInDown 0.3s ease-in-out both;
    animation: slideInDown 0.3s ease-in-out both;
}
@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    -webkit-animation: slideInUp 0.3s ease-in-out both;
    animation: slideInUp 0.3s ease-in-out both;
}


@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation: fadeInDown 0.5s  both;
    animation: fadeInDown 0.5s  both;
}
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
.fadeIn {
    -webkit-animation: fadeIn 0.5s ease-in-out both;
    animation: fadeIn 0.5s ease-in-out both;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@-webkit-keyframes fadeIn2 {
    from {
        opacity: 0;
        /*-webkit-transform: translate3d(0, 20px, 0);*/
        /*transform: translate3d(0, 20px, 0);*/
    }

    to {
        opacity: 1;
        /*-webkit-transform: none;*/
        /*transform: none;*/
    }
}

@keyframes fadeIn2 {
    from {
        opacity: 0;
        /*-webkit-transform: translate3d(0, 20px, 0);*/
        /*transform: translate3d(0, 20px, 0);*/
    }

    to {
        opacity: 1;
        /*-webkit-transform: none;*/
        /*transform: none;*/
    }
}

.fadeInUp {
    -webkit-animation: fadeInUp 0.5s both;
    animation: fadeInUp 0.5s both;
}

.fl {
    float: left;
}
.fr {
    float: right;
}
.relative {
    position: relative;
}
.swiper-pagination span.swiper-pagination-bullet,
.swiper-pagination a {
    width: 14px;
    display: inline-block;
    height: 14px;
    border-radius: 100%;
    background-color: #fff;
    opacity: 0.3;
    transition: all 0.5s;
    margin: 0 10px!important;
    text-indent: -20px;
    overflow: hidden;
}
.swiper-pagination span.swiper-pagination-bullet-active,
.swiper-pagination a.activeSlide {
    opacity: 1;
    background-color: #fff;
}
/* 以上为公共样式 */


#layer { /*透明遮罩层*/
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    filter: alpha(opacity=70);
    opacity: 0.7;
    z-index: 11;
    top: 0;
    left: 0;
    display: none;
}
.header {
    padding: 17px 0;
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    transition: all 0.3s;
    /*box-shadow: 0 6px 9px rgba(220,220,220,0.21);*/
    border-bottom: 1px solid #ececec;
}
body.front .header {
    position: relative;
}
body.front .header-right {
    position: absolute;
}

.header-right {
    overflow: hidden;
    position: fixed;
    top: 17px;
    right: calc((100% - 1180px)/2);
    z-index: 11;
    transition: all 0.3s;
}
.call-num {
    font-size: 24px;
    line-height: 100%;
    padding: 13px 0 8px;
    color: #333;
    display: block;
    float: left;
    margin-right: 61px;
    position: relative;
}
.header-right .call-num {
    padding-top: 14px;
}

span.ad-txt {
    display: block;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 49px;
    left: 0;
    font-size: 12px;
    line-height: 18px;
    color: #999;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.button-apply span.ad-txt {
    top: 50.5px;
}
.call-num:after {
    content: '';
    display: block;
    width: 1px;
    height: 42px;
    background: #f0f0f0;
    overflow: hidden;
    position: absolute;
    right: -30px;
    top: 2px;
}
.banner-bottom-right .call-num:after {
    height: 64px;
    background: #e3e3e3;
    top: 3px;
}
.call-btn {
    border: 1px solid #b1b2b3;
    height: 46px;
    display: block;
    width: 166px;
    font-size: 14px;
    color: #333;
    line-height: 44px;
    text-align: center;
    float: left;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}
.call-btn span {
    position: relative;
    z-index: 3;
}

.call-btn.blue,
.call-btn:hover {
    color: #fff;
    background-color: #4581fb;
    border: 1px solid #4581fb;
}
.call-btn.blue:hover {
    background-color: #2769ed;
    border: 1px solid #2769ed;
}

.subnav ul {
    padding-left: 133px;
}
.subnav li {
    float: left;
    display: block;
    padding-left: 50px;
    transition: all 0.5s;
}
.subnav ul.menu li {
    margin: 0;
}
.subnav li a {
    font-size: 14px;
    line-height: 60px;
    color: #333;
    transition: all 0.3s;
    display: block;
    float: left;
}
.subnav li a.active,
.subnav li a:hover {
    color: #4581fb;
}
.home-banner {
    overflow: hidden;
    /*display: none;*/
}
.home-banner .swiper-pagination {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 20px;
    z-index: 10;
}
.home-banner img {
    width: 100%;
    height: auto;
}
.home-banner-bottom {
    height: 150px;
    background: #f5f5f5;
    padding: 45px 0 0;
    overflow: hidden;
    color: #333;
}

.box {
    padding: 77px 0;
    background-color: #fff;
    /*overflow-x: hidden;*/
}
.box.front-last,
.box.business-objective {
    overflow: hidden;
}
.box.front-banner {
    padding-bottom: 20px;
    display: none;
}
.box.gray {
    background-color: #f9f9f9;
}
.box.gradient-gray {
    text-align: center;
    background-image: -moz-linear-gradient( -90deg, rgb(40,46,51) 0%, rgb(98,105,111) 100%);
    background-image: -webkit-linear-gradient( -90deg, rgb(40,46,51) 0%, rgb(98,105,111) 100%);
    background-image: -ms-linear-gradient( -90deg, rgb(40,46,51) 0%, rgb(98,105,111) 100%);
}
.box.gradient-gray h2.title {
    color: #fff;
}
.box.gradient {
    background-color: #fff;
    background: -webkit-linear-gradient(180deg, #FFFFFF 50%, #F7F8FA 100%); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(180deg, #FFFFFF 50%, #F7F8FA 100%); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(180deg, #FFFFFF 50%, #F7F8FA 100%); /* Firefox 3.6 - 15 */
    background: linear-gradient(180deg, #FFFFFF 50%, #F7F8FA 100%);
}
.box.gradient2 {
    background-color: #FFFFFF;
    background: -webkit-linear-gradient(0deg, #FFFFFF 50%, #F7F8FA 100%); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(0deg, #FFFFFF 50%, #F7F8FA 100%); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(0deg, #FFFFFF 50%, #F7F8FA 100%); /* Firefox 3.6 - 15 */
    background: linear-gradient(0deg, #FFFFFF 50%, #F7F8FA 100%);
}
.box.gradient-blue {
    background-color: #4581fb;
    background: -webkit-linear-gradient(52deg, #182FEC 0%, #0D6AF2 39%, #00C1DF 100%); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(52deg, #182FEC 0%, #0D6AF2 39%, #00C1DF 100%); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(52deg, #182FEC 0%, #0D6AF2 39%, #00C1DF 100%); /* Firefox 3.6 - 15 */
    background: linear-gradient(52deg, #182FEC 0%, #0D6AF2 39%, #00C1DF 100%);
}

.box.pb0 {
    padding-bottom: 0;
}
.box.pb20 {
    padding-bottom: 20px;
}
.box.pt0 {
    padding-top: 0;
}
.box.select-industry {
    background-image: url("../images/bgHangye.jpg");
    background-position: center bottom;
    background-size: 1200px;
    background-repeat: no-repeat;
}

.m1200 {
    width: 1240px;
    padding: 0 30px;
    margin: 0px auto;
}
.m1200:after {
    content: '';
    display: block;
    width: 100%;
    height: 0;
    overflow: hidden;
    clear: both;
}
.box .m1200 {
    position: relative;
}
.banner-left {
    width: 45%;
    float: left;
}
.banner-right {
    width: 50%;
    height: 100%;
    float: right;
    overflow: hidden;
    position: relative;
}
.front-banner .banner-right {
    height: 480px;
}
.bottom-img {
    width: 100%;
    height: 80%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    overflow: hidden;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background-repeat: no-repeat;
    background-position: 0 center;
    background-size:cover;
    transition: all 5s linear;
    background-image: url("../images/1-final.jpg");
}
.swiper-slide-active .bottom-img {
    background-position: right center;
}
.bottom-img:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.bmain {
    width: 298px;
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;
    overflow: hidden;
    /*display: none;*/
}
.bmain img {
    width: 100%;
    float: left;
}
.page-banner .banner-left {
    width: 50%;
}
.page-banner .banner-right {
    width: 531px;
    height: 344px;
}
.banner-right .swiper-container {
    height: 100%;
    width: 100%;
}
.banner-right img {
    max-width: 100%!important;
    height: auto!important;
}
.box h2.title,
.box h2.title2 {
    font-size: 44px;
    color: #333333;
    line-height: 64px;
    margin-bottom: 20px;
    position: relative;
}
.box h2.title2 {
    text-align: center;
    font-size: 24px;
    line-height: 36px;
    width: 72%;
    margin: 0px auto 60px;
}

.box.gradient-blue h2.title {
    color: #fff;
}
.tiyan-app  h2.title {
    margin-bottom: 0;
    line-height: 100px;
}
.tiyan-app .apps {
    position: absolute;
    top: 0;
    right: 40px;
    padding-right: 50px;
}
.tiyan-app .apps2 {
    padding-right: 0;
}
.apps a {
    margin: 0 50px;
    font-size: 18px;
    line-height: 36px;
}
.apps2 a {
    margin: 0 10px;
}
.apps .cj-app img {
    max-width: 68px;
}
.box h2.title.txt-center {
    text-align: center;
}
.page-banner .banner-left h2.title {
    padding-top: 60px;
}
.page-banner .banner-left h2.title.pt0 {
    padding-top: 0;
}
.page-banner .banner-left h2.title.pt30 {
    padding-top: 30px;
}
.box p.main {
    font-size: 18px;
    color: #666666;
    line-height: 24px;
    margin-bottom: 10px;
}
.banner-left p.main {
    min-height: 100px;
}
.why {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding-bottom: 130px;
    padding-top: 80px;
}

.why-box {
    padding-top: 105px;
    text-align: left;
}
.why-box.full {
    width: 100%;
    clear: both;
    text-align: center;
    padding-top: 78px;
}
.why-box.why-box2 {
    width: 470px;
    float: left;
}
.why-box.why-box3 {
    width: 510px;
    float: right;
}
.why-box-img {
    text-align: center;
    width: 100%;
    position: relative;
    height: 190px;
}
.why-box.full .why-box-img {
    height: 393px;
    background-image: url("../images/why-bg.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100%;
    overflow: hidden;
    transition: all 1.5s;
}
.why-box.full.current .why-box-img {
    opacity: 1;
}
.why-box.full .why-box-img .why-icon {
    position: absolute;
    z-index: 2;
    text-align: center;
}
.why-icon img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}
.why-icon span {
    display: inline-block;
    font-size: 16px;
    color: #8b8b8b;
    text-align: center;
    line-height: 18px;
    position: relative;
}

.why-icon.nuomi {
    left: 95px;
    top: 96px;
    width: 122px;
    padding-top: 112px;
}
.why-icon.tieba {
    left: 210px;
    top: 160px;
    width: 119px;
    padding-top: 109px;
}
.why-icon.liulanqi {
    left: 287px;
    top: 26px;
    width: 119px;
    padding-top: 109px;
}
.why-icon.liulanqi span,
.why-icon.iqiyi span,
.why-icon.zhidao span {
    background: #f8f7f7;
}
.why-icon.map {
    left: 386px;
    top: 128px;
    width: 154px;
    padding-top: 144px;
}
.why-icon.shoubai {
    left: 526px;
    top: 58px;
    width: 154px;
    padding-top: 144px;
}
.why-icon.iqiyi {
    left: 680px;
    top: 30px;
    width: 119px;
    padding-top: 109px;
}
.why-icon.baike {
    left: 774px;
    top: 117px;
    width: 154px;
    padding-top: 144px;
}
.why-icon.zhidao {
    left: 904px;
    top: 51px;
    width: 119px;
    padding-top: 109px;
}
.why-icon.yunpan {
    left: 982px;
    top: 170px;
    width: 119px;
    padding-top: 109px;
}
.why-box.full .why-icon img {
}
.why-box.full.current .why-icon img {
    animation: scrollTop 0.25s ease-in-out both;
/**/
}
.why-box.full.current .why-icon span {
    animation: fadeIn 1s ease-in-out both;
}
.why-box-img img.f {
    top: inherit;
    bottom: 0;
    left: 0;
    transition: all 0.5s;
}
.why-box.full.current img.f {
    opacity: 1;
    /*animation: scrollTop 1s ease-in-out both;*/
}
.why-box.full.current .nuomi span,
.why-box.full.current .nuomi img { animation-delay: 0.08s}
.why-box.full.current .tieba span,
.why-box.full.current .tieba img { animation-delay: 0.16s}
.why-box.full.current .liulanqi span,
.why-box.full.current .liulanqi img { animation-delay: 0.24s}
.why-box.full.current .map span,
.why-box.full.current .map img { animation-delay: 0.32s}
.why-box.full.current .shoubai span,
.why-box.full.current .shoubai img { animation-delay: 0.4s}
.why-box.full.current .iqiyi span,
.why-box.full.current .iqiyi img { animation-delay: 0.48s}
.why-box.full.current .baike span,
.why-box.full.current .baike img { animation-delay: 0.56s}
.why-box.full.current .zhidao span,
.why-box.full.current .zhidao img { animation-delay: 0.64s}
.why-box.full.current .yunpan span,
.why-box.full.current .yunpan img { animation-delay: 0.72s}
@keyframes scrollTop {
    from {
        transform: translate3d(0,80px,0);
        opacity: 0;
    }
    to {
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.why-box h3 {
    font-size: 36px;
    line-height: 46px;
    clear: both;
    padding: 0 0 14px;
}
.why-box h3 span {
    margin-right: 5px;
}
.why-box h3 span img {
    width: auto;
    height: 34px;
    display: inline-block;
    position: relative;
    top: 5px;
}

.why-box p {
    font-size: 14px;
    color: #999;
    line-height: 24px;
    padding-bottom: 50px;
}
.why-box.full p {
    width: 544px;
    margin: 0px auto;
    padding-bottom: 62px;
    text-align: center;
}
.why-box2 p,
.why-box3 p {
    padding-bottom: 50px;
}

.why-box h3 a {
    color: #333;
    padding-right: 24px;
    background: url("../images/moreArrow.png") no-repeat right center;
    background-size: 18px;
}

.pager-load-more a,
.line-blue-btn,
.line-white-btn,
.blue-btn {
    width: 166px;
    height: 46px;
    border: none;
    color: #fff;
    line-height: 46px;
    font-size: 14px;
    display: inline-block;
    text-align: center;
    position: relative;
    background-color: #4581fb;
    transition: all 0.75s ease;
}

.blue-btn:hover {
    background-color: #2769ed;
}

.pager-load-more a {
    margin: 0px auto;
}

.line-white-btn {
    border: 1px solid #fff;
    line-height: 44px;
    background: none;
    transition: all 0.25s ease-in;
}
.line-white-btn:hover {
    background: #fff;
    color: #4581fb;
}
.pager-load-more a,
.line-blue-btn {
    border: 1px solid #4581fb;
    border-radius: 100px;
    color: #4581fb;
    background: #fff;
}
.pager-load-more a:hover,
.line-blue-btn:hover {
    color: #fff;
    background-color: #4581fb;
    background-image: -webkit-linear-gradient(52deg, #182FEC 0%, #00C1DF 39%, #0D6AF2 120%); /* Safari 5.1 - 6.0 */
    background-image: -o-linear-gradient(52deg, #182FEC 0%, #00C1DF 39%, #0D6AF2 120%); /* Opera 11.1 - 12.0 */
    background-image: -moz-linear-gradient(52deg, #182FEC 0%, #00C1DF 39%, #0D6AF2 120%); /* Firefox 3.6 - 15 */
    background-image: linear-gradient(52deg, #182FEC 0%, #00C1DF 39%, #0D6AF2 120%);
}
/*.line-blue-btn:before,
.blue-btn:before {
    content: '';
    display: block;
    width: 150%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-linear-gradient(52deg, #0D6AF2 0%, #00C1DF 39%, #182FEC 100%); !* Safari 5.1 - 6.0 *!
    background: -o-linear-gradient(52deg, #0D6AF2 0%, #00C1DF 39%, #182FEC 100%); !* Opera 11.1 - 12.0 *!
    background: -moz-linear-gradient(52deg, #0D6AF2 0%, #00C1DF 39%, #182FEC 100%); !* Firefox 3.6 - 15 *!
    background: linear-gradient(52deg, #0D6AF2 0%, #00C1DF 39%, #182FEC 100%);
    opacity: 0;
    transition: all 0.75s ease;
}*/
.blue-btn.disabled {
    opacity: 0.2;
    cursor: not-allowed;
}
.blue-btn.disabled:before {
    display: none;
}
/*.line-blue-btn:hover:before,
.blue-btn:hover:before {
    opacity: 1;
    transform: translate3d(-25%,0,0);
    !*left: -45%;*!
}*/
.other-apply {
    padding-top: 30px;
}
.other-apply p {
    font-size: 18px;
    color: #666666;
    line-height: 24px;
    padding-bottom: 10px;
}
.other-apply .font-din {
    font-size: 24px;
    color: #4581fb;
    letter-spacing: 0.56px;
    line-height: 26px;
}
.select {
    text-align: center;
    position: relative;
    z-index: 5;
}
.select-industry .select {
    margin-bottom: 40px;
}
.select label {
    display: inline-block;
    padding-right: 20px;
    position: relative;
    font-size: 16px;
    color: #666;
    line-height: 24px;
    height: 24px;
}
.select label.focus {
    color: #333;
}
.select label:after {
    content: '';
    display: block;
    width: 10px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url("../images/arrowUp.svg");
    background-size: 10px;
    background-position: right center;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    transition: all 0.4s;
}
.select.down label:after {
    transform: rotate(0deg);
}
.select ul {
    display: none;
    background: #FFFFFF;
    box-shadow: 0 10px 20px 0 rgba(37,39,95,0.06);
    border-radius: 6px;
    width: 160px;
    position: absolute;
    top: 40px;
    left: 50%;
    margin-left: -80px;
    padding: 10px 0;
    text-align: center;
}
.select.down ul {

}
.select li {
    font-size: 16px;
    color: #333333;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
.select li:hover {
    color: #4581fb;
}
.select li.selected {
    color: #4581fb;
}
.using-num {
    font-size: 34px;
    color: #333333;
    line-height: 66px;
    text-align: center;
}
.using-num.size32 {
    font-size: 32px;
}
.using-num span.font-din {
    font-weight: 400;
    font-size: 44px;
    position: relative;
    top: 4px;
    margin-right: 3px;
}
.using-phone {
    float: right;
    position: relative;
    padding-right: 25px;
    margin-right: 25px;
    text-align: center;
}
.using-phone:after {
    content: '';
}
.using-phone .font-din {
    font-size: 24px;
    line-height: 46px;
    color: #333;
}
.banner-bottom-apply {
    float: right;
}

.objectives {
    position: relative;
    padding-top: 23px;
}
.objectives .tabs {
    width: 100%;
    padding-bottom: 30px;
}
.objectives .tabs a {
    font-size: 18px;
    color: #87878A;
    line-height: 36px;
    margin-right: 40px;
    display: inline-block;
    position: relative;
    transition: all 0.3s;
}
.objectives .tabs a:last-of-type {
    margin-right: 0;
}
.objectives .tabs a:hover,
.objectives .tabs a.active {
    color: #fff;
}
.objectives .tabs a.active:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

.objective {
    height: 567px;
    position: relative;
    background-color: rgba(27,27,27,.3);
}
.objective-content {
    width: calc(100% - 525px);
    float: right;
    padding: 45px 83px;
    color: #fff;
    text-align: left;

    height: 100%;
}
.objective-content .h2s {
    height: 50px;
    margin-bottom: 13px;
    /*overflow: hidden;*/
    position: relative;
}
.objective-content .sub-con {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.75s ease-in-out;
}
.objective-content .sub-con:nth-of-type(2) {
    /*transform: translate3d(0,100%,0);*/
    opacity: 0;
}
.objective-content h2 {
    font-size: 36px;
    line-height: 50px;
}
.objective-content .ps {
    height: 56px;
    /*overflow: hidden;*/
    margin-bottom: 40px;
    position: relative;
}
.objective-content p {
    font-size: 14px;
    line-height: 28px;
    color: #858789;
    position: relative;
}
.objective-content a {
    color: #fff;
}
.objective-content-wrapper {
    width: 100%;
    position: relative;
    /*overflow: hidden;*/
}

.objective-img {
    width: 525px;
    height: 100%;
    float: left;
    position: relative;
    overflow: hidden;
}
.objective-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.objective.object1 .sub-con:nth-of-type(1) {
    z-index: 3;
    /*transform: translate3d(0,0,0);*/
    opacity: 1;
    /*animation: fadeIn2 1s linear both;*/
}

.objective.object1 .sub-con:nth-of-type(2) {
    z-index: 2;
    opacity: 0;
    /*animation: scrollToTop 0.2s ease-out both;*/
    /*transform-origin: center center;*/
}
.objective.object2 .sub-con:nth-of-type(2) {
    z-index: 3;
    /*transform: translate3d(0,0,0);*/
    opacity: 1;
    /*animation: fadeIn2 1s linear both;*/
}
.objective.object2 .sub-con:nth-of-type(1) {
    z-index: 2;
    /*animation: scrollToTop 0.2s ease-out both;*/
    opacity: 0;
    /*transform-origin: center center;*/
}
/*.objective.object1 .h2s .sub-con:nth-of-type(1) {
    animation-delay: 0.1s;
}
.objective.object1 .ps .sub-con:nth-of-type(1) {
    animation-delay: 0.2s;
}
.objective.object1 .charts-data .sub-con:nth-of-type(1) {
    animation-delay: 0.3s;
}
.objective.object2 .h2s .sub-con:nth-of-type(2) {
    animation-delay: 0.1s;
}
.objective.object2 .ps .sub-con:nth-of-type(2) {
    animation-delay: 0.2s;
}
.objective.object2 .charts-data .sub-con:nth-of-type(2) {
    animation-delay: 0.3s;
}*/
.objective.object1 .objective-img img:nth-of-type(1) {
    z-index: 3;
    animation: scrollFromRight 0.75s ease-out both;
}
.objective.object1 .objective-img img:nth-of-type(2) {
    z-index: 2;
    animation: scrollToLeft 5s ease-out both;
}
.objective.object2 .objective-img img:nth-of-type(2) {
    z-index: 3;
    animation: scrollFromRight 0.75s ease-out both;
}
.objective.object2 .objective-img img:nth-of-type(1) {
    z-index: 2;
    animation: scrollToLeft 5s ease-out both;
}
@keyframes scrollFromRight {
    from {
        transform: translate3d(100%,0,0)  scale(1);
    }
    to {
        transform: translate3d(0,0,0) scale(1);
    }
}
@keyframes scrollToLeft {
    from {
        transform: translate3d(0,0,0) scale(1);
    }
    to {
        transform: translate3d(-100%,0,0)  scale(0.75);
    }
}
@keyframes scrollFromBottom {
    from {
        transform: translate3d(0,100%,0);
        /*opacity: 0;*/
    }
    to {
        transform: translate3d(0,0,0);
        /*opacity: 1;*/
    }
}
@keyframes scrollToTop {
    from {
        transform: translate3d(0,0,0);
        opacity: 0;
    }
    to {
        transform: translate3d(0,-100%,0);
        opacity: 0;
    }
}
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes slideIn {
    from {
        transform: translate3d(0,-40px,0);
        opacity: 0;
    }
    to {
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}
.objective-box {
    background: #FFFFFF;
    border-radius: 10px;
    width: 250px;
    margin: 0px auto 10px;
    padding: 0 20px;
    overflow: hidden;
}
.charts-title {
    padding-top: 20px;
    padding-bottom: 10px;
    overflow: hidden;
}
.charts-title label {
    font-size: 12px;
    line-height: 24px;
    color: #4581fb;
    float: left;
}
.charts-title .up-num {
    font-size: 18px;
    line-height: 24px;
    color: #4581fb;
    display: inline-block;
    float: right;
    padding-right: 24px;
    background: url("../images/up.svg") no-repeat right center;
    background-size: 16px;
}
.charts-content {
    overflow: hidden;
    padding-bottom: 10px;
}
.charts-content img {
    width: 100%;
    float: left;
}
.objective-box .title-bar {
    padding: 10px 0;
}
.objective-box:first-of-type .title-bar {
    padding-top: 20px;
}
.title-bar label {
    display: inline-block;
    font-size: 12px;
    color: #9CA4C3;
    padding-left: 15px;
    position: relative;
    background: url("../images/pointer.svg") no-repeat left center;
    background-size: 10px;
    line-height: 24px;
}
.title-bar .font-din {
    font-size: 12px;
    color: #4581fb;
    line-height: 24px;
}
.prograss {
    height: 6px;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}
.prograss:before {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 2.5px;
    background: #EAF1FF;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 1px;
}
.prograss .bar {
    height: 100%;
    position: absolute;
    left: 0;
    z-index: 3;
    width: 0;
    border-radius: 6px;
    background-color: #4581fb;
    background: -webkit-linear-gradient(52deg, #182FEC 0%, #0D6AF2 39%, #00C1DF 100%); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(52deg, #182FEC 0%, #0D6AF2 39%, #00C1DF 100%); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(52deg, #182FEC 0%, #0D6AF2 39%, #00C1DF 100%); /* Firefox 3.6 - 15 */
    background: linear-gradient(52deg, #182FEC 0%, #0D6AF2 39%, #00C1DF 100%);
    /*transition: all 2.5s;*/
}

.view-more a,
.title-more {
    font-size: 14px;
    color: #4581fb;
    line-height: 55px;
    position: absolute;
    right: 40px;
    top: 0;
    padding-right: 21px;
    background: url("../images/moreArrow.svg") no-repeat right center;
    background-size: 14px;
    display: block;
}
.view-more a {
    position: static;
    line-height: 20px;
    display: inline-block;
}
.box.front-last {
    padding: 140px 0 134px;
 }
.box.say-box {
    padding-top: 96px;
    padding-bottom: 70px;
}
.box.business-objective {
    padding-bottom: 90px;
    padding-top: 66px;
}
.front-last .m1200 {
    position: relative;
}
.front-last-left {
    float: left;
    width: 410px;
}
.front-last-left h2.title {
    margin-bottom: 50px;
    line-height: 100%;
}
.front-last-charts {
    width: 680px;
    float: right;
    position: relative;
}
.chart-icons {
    height: 85px;
    width: 100%;
    clear: both;
}
.chart-icons span {
    font-size: 14px;
    line-height: 100%;
    margin-bottom: 15px;
    color: #999;
    padding-right: 25px;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 12px;
    display: block;
    float: right;
    clear: both;
}
.chart-icons span.red {
    background-image: url("../images/c-red.svg");
}
.chart-icons span.blue {
    background-image: url("../images/c-blue.svg");
}
.front-last-charts .ab-gif {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.front-last-charts img.vhidden {
    position: static;
}
.front-last-charts img {
    width: 100%;
    height: auto;
}

.front-last-left p.main {
    color: #999;
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 200px;
}
.front-last-charts .charts-title label {
    float: none;
    display: block;
    clear: both;
}
.front-last-charts .charts-title .up-num {
    float: left;
    display: block;
    clear: both;
}
.front-last-charts .qx {
    transform: translate3d(0,50px,0);
    transition: all 1s ease-in;
}
.front-last-charts .qx.focus {
    transform: translate3d(0,0,0);
}
.say-logo {
    width: 47px;
    height: 47px;
    position: absolute;
    left: 23.5px;
    top: -23.5px;
    border-radius: 100%;
    overflow: hidden;
}
.say-logo img {
    width: 100%;
    border-radius: 100%;
    overflow: hidden;
}

.man-say li {
    width: calc((100% - 96px)/3);
    margin-right: 48px;
    float: left;
    background: #fff;
    border-radius: 4px;
    position: relative;
    padding: 40px 23.5px 30px;
}
.man-say li:nth-of-type(3n) {
    margin-right: 0;
}
.man-say h4 {
    font-size: 14px;
    line-height: 28px;
    color: #d0d0d0;
    clear: both;
}
.man-say h4 span {
    color: #666;
    margin-right: 5px;
}
.man-say p {
    font-size: 14px;
    line-height: 24px;
    color: #666;
    clear: both;
    margin-bottom: 13px;
}
.apply-form {
    padding: 0;
    width: 100%;
    position: relative;
    padding-right: 166px;
}
.footer-apply .apply-form .apply-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 166px;
}
.apply-form ul {
    overflow: hidden;
    padding-bottom: 20px;
}
.apply-form li {
    height: 45px;
    float: left;
    margin-right: 20px;
    /*padding-right: 20px;*/
    /*padding-left: 110px;*/
    position: relative;
    margin-bottom: 30px;
    transition: all 0.5s;
}
.footer-apply .apply-form li {
    width: calc(25% - 20px);
}
.footer-apply .apply-form li input {
    width: 100%;
}
.footer-apply .apply-form li.selects select {
    width: 100%;
    margin-right: 0;
}
.footer-apply .apply-form.have-city li:not(.selects) {
    width: calc(20% - 20px);
}
.footer-apply .apply-form.have-city li.selects {
    width: calc(40% - 20px);
}
.footer-apply .apply-form.have-city li.selects select {
    margin-right: 20px;
    width: calc((100% - 20px)/2);
}
.footer-apply .apply-form.have-city li select:last-of-type {
    margin-right: 0;
    width: calc((100% - 20px)/2);
}


.box.footer-apply {
    padding-bottom: 79px;
    padding-top: 86px;
    background: #fff;
}
.box.footer-apply .m1200 {
    position: relative;
}
.footer-apply h2.title{
    margin-bottom: 43px;
}
.footer-apply h3 {
    font-size: 14px;
    color: #666;
    margin-bottom: 17px;
}

.service-call {
    font-size: 14px;
    color: #666;
    line-height: 28px;
}
.service-call a {
    display: inline-block;
    /*padding-left: 55px;*/
    font-size: 36px;
    color: #333;
    line-height: 46px;
    transition: all 0.5s ease-in 0.5s;
    /*background: url("../images/iconPhone.svg") no-repeat left 7px;*/
}
.service-call.font-blue a {
    color: #4581fb;
}
.footer-bottom {
    padding: 52px 0;
    background: #1a1a1a;
}
.footer-bottom dl {
    width: 16.66%;
    float: left;
}
.footer-bottom dt {
    font-size: 16px;
    color: #fff;
    line-height: 18px;
    margin-bottom: 15px;
}
.footer-bottom dd {
    color: #b1b1b1;
}
.footer-bottom dd a {
    font-size: 14px;
    color: #b1b1b1;
    line-height: 30px;
    transition: all 0.3s;
}
.footer-bottom dd a.cloud-baidu {
    color: #fff;
    opacity: 0.5;
}
.footer-bottom dd a.cloud-baidu:hover {
    opacity: 1;
}
.footer-bottom dd a.wx,
.footer-bottom dd a.wb {
    display: block;
    width: 27px;
    height: 27px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    float: left;
}
.footer-bottom dd a.wx {
    background-image: url("../images/iconWx.svg?v=2");
    position: relative;
    margin-right: 10px;
}
.footer-bottom dd a.wx span {
    width: 129px;
    height: 149px;
    position: absolute;
    left: 0;
    bottom: 30px;
    display: none;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.footer-bottom dd a.wx:hover span {
    display: block;
}
.footer-bottom dd a.wx span img {
    width: 100%;
}
.footer-bottom dd a.wb {
    background-image: url("../images/iconWb.svg?v=2");
}
.footer-bottom dd a:hover {
    color: #fff;
}
.footer-bottom dd a.font-din {
    color: #b1b1b1;
}
.footer {
    background: #000;
    text-align: center;
    font-size: 12px;
    color: #7f7f7f;
    line-height: 24px;
    padding: 15px 0;
}
.footer a {
    color: #7f7f7f;
}
.right-float-bar {
    width: 56px;
    position: fixed;
    right: 20px;
    bottom: 3%;
    z-index: 12;
}
.right-float-bar a.emi,
.right-float-bar a.hd {
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    background-size: 100%;
}
.right-float-bar a.emi {
    height: 87px;
    background-image: url("../images/iconEmi.png");
    margin-bottom: 20px;
}
.right-float-bar a.hd {
    height: 77px;
    background-image: url("../images/iconHd.png");
}
.right-float-bar a.emi span {
    display: block;
    background: rgba(255,255,255,1);
    box-shadow: 5px 15px 40px 0 rgba(39,43,157,0.20);
    border-radius: 25px 25px 0 25px;
    position: absolute;
    height: 50px;
    width: 162px;
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 50px;
    left: -170px;
    bottom: 50%;
    margin-bottom: -25px;
    transform: scale(0);
    transform-origin: right bottom;
    transition: all 0.25s ease-in ;
}
.right-float-bar a.emi:hover span {
    transform: scale(1);
}
.dialog {
    background: #FFFFFF;
    border-radius: 6px;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 12;
    display: none;
}

.fixed-msg {
    position: absolute;
    top: 40px;
    padding: 10px 0;
    left: 110px;
}
.submit-success h2 {
    font-size: 30px;
    color: #333;
    padding-top: 80px;
    text-align: center;
    background: url("../images/duigou.svg") no-repeat top center;
    background-size: 64px;
    margin-top: 10%;
}
.submit-success p {
    width: 62%;
    margin: 30px auto 0;
    font-size: 16px;
    line-height: 24px;
    color: #666;
    text-align: center;
}
.submit-success p .font-din {
    color: #4581fb;
}
.apply-page {
    width: 450px;
    margin: 40px auto 0;
}
.apply-page.have-activity {
    width: 680px;
    margin: 40px auto 0;
}

.apply-page h2 {
    font-size: 40px;
    color: #333333;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 10px;
}
.apply-page h3 {
    text-align: center;
    font-size: 18px;
    color: #666;
    line-height: 24px;
    margin-bottom: 15px;
}
.activity-img {
    text-align: center;
    margin-bottom: 20px;
}
.activity-img img {
    max-width: 100%!important;
    height: auto!important;
    max-height: 100px!important;
}

.cell10 li {
    width: 10%;
    float: left;
}
.cell6 li {
    width: 16.66%;
    float: left;
}
.cell5 li {
    width: 20%;
    float: left;
}
.cell4 li {
    width: 25%;
    float: left;
}
.cell3 li {
    width: 33.33%;
    float: left;
}
.cell2 li {
    width: 50%;
    float: left;
    padding-right: 40px;
}
.cell2 li:nth-of-type(2n) {
    padding-left: 40px;
    padding-right: 0;
}
.box-content {
    padding-top: 40px;
}
.scene-tab {
    margin-bottom: 20px;
}
.scene-tab li {
    text-align: center;
}
.scene-tab a {
    font-size: 16px;
    color: #87878A;
    line-height: 36px;
    display: inline-block;
    position: relative;
    transition: all 0.5s;
}
.scene-tab a:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #4581fb;
    overflow: hidden;
    height: 1px;
    width: 0;
    transition: all 0.5s;
}
.scene-tab a:hover,
.scene-tab a.active {
    color: #4581fb;
}
.scene-tab a:hover:after,
.scene-tab a.active:after {
    width: 100%;
}
.scene-main {
    padding: 60px 0;
    background: #FFF;
    border: 1px solid #E7E7E7;
    border-radius: 6px;
    overflow: hidden;
}
.scene-main li {
    position: relative;
    text-align: center;
    height: 120px;
    overflow: hidden;
}
.scene-main li .app {
    transition: all 0.3s ease-in;
}
.scene-main li:hover .app {
    transform: translate3d(0,-50px,0);
}
.scene-main li:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 60px;
    margin-top: -30px;
    background: #E7E7E7;
    overflow: hidden;
}
.scene-main li:first-of-type:after {
    display: none;
}
.scene-main li .app-icon {
    height: 60px;
    text-align: center;
    opacity: 1;
    transition: all 0.3s ease-in;
}
.scene-main li:hover .app-icon {
    opacity: 0;
}
.scene-main li .app-icon img {
    height: 100%;
}
.scene-main li h3 {
    font-size: 16px;
    color: #333333;
    line-height: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.scene-main li p {
    font-size: 16px;
    color: #87878A;
    opacity: 0;
    transition: all 0.3s ease-in;
}
.scene-main li:hover p {
    opacity: 1;
}
.advantage2 li {
    overflow: hidden;
}
.advantage3 li {
    width: calc((100% - 160px)/3);
    padding-top: 220px;
    background-repeat: no-repeat;
    background-position: left top;
    margin-bottom: 20px;
    margin-right: 80px;
    float: left;
}
.advantage3 li:last-of-type {
    margin-right: 0;
}
.advantage3 li h3,
.right-info h3 {
    font-size: 24px;
    color: #393939;
    line-height: 32px;
    margin-bottom: 16px;
}
.advantage3 li p,
.right-info p {
    font-size: 16px;
    color: #87878A;
    line-height: 24px;
}
.advantage2 .right-info p {
    min-height: 120px;
}
.advantage3 li p {
    min-height: inherit;
    margin-bottom: 40px;
}
.screen2 li {
    margin-bottom: 25px;
}
.screen2 li:nth-of-type(3),
.screen2 li:nth-of-type(4) {
    margin-bottom: 0;
}
.screen2 .right-info p {
    min-height: 72px;
}
.advantage3 li:last-of-type p {
    margin-bottom: 0;
}
.ad-tr {
    position: absolute;
    top: 0;
    right: 40px;
    font-size: 18px;
    color: #393939;
    line-height: 27px;
    width: 50%;
}
.left-icon {
    width: 68px;
    text-align: center;
    float: left;
}
.left-icon img {
    max-width: 100%;
}
.right-info {
    width: calc(100% - 108px);
    float: right;
}
.advantage3 li.ad3-1 {
    background-image: url("../images/ad3-1.gif");
    background-size: 250px;
}
.advantage3 li.ad3-2 {
    background-image: url("../images/ad3-2.gif");
    background-size: 300px;
}
.advantage3 li.ad3-3 {
    background-image: url("../images/ad3-3.gif");
    background-size: 300px;
}
.gg-type {
    height: 382px;
    margin-bottom: 30px;
    display: block!important;
}
.gg-type2 {
    overflow: hidden;
    display: block!important;
}
.gg-type li {
    width: 50%;
    padding: 40px;
    height: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    float: left;
}
.gg-type li a {
    display: block;
    width: 100%;
    height: 100%;
    float: left;
    color: #fff;
}
.gg-type li:first-of-type {
    background-image: url("../images/ggtype-img1.jpg");
}
.gg-type li:last-of-type {
    background-image: url("../images/ggtype-img2.jpg");
}
.gg-type-bottom {
    position: absolute;
    bottom: 20px;
    left: 40px;
    right: 40px;
}
.gg-type-bottom h3 {
    font-size: 24px;
    margin-bottom: 20px;
}
.gg-type-bottom p {
    font-size: 16px;
    line-height: 24px;
}
.gg-type-bottom span.more {
    display: block;
    width: 60px;
    height: 32px;
    background: url("../images/arrow_right_white.svg") no-repeat;
    background-position: right center;
    background-size: 26px;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 0;
    right: 0;
}
.gg-type2 li {
    width: calc((100% - 80px)/3);
    margin-right: 40px;
    height: 100%;
    float: left;
    min-height: 610px;
    border-radius: 6px;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid #E7E7E7;
}
.gg-type2 li:last-of-type {
    margin-right: 0;
}
.gg-type-pic {
    height: 436px;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    background-color: #eee;
}
.gg-type2 li:first-of-type .gg-type-pic {
    background-image: url("../images/ggtype-img3.jpg");
}
.gg-type2 li:nth-of-type(2) .gg-type-pic {
    background-image: url("../images/ggtype-img4.jpg");
}
.gg-type2 li:last-of-type .gg-type-pic {
    background-image: url("../images/ggtype-img5.jpg");
}
.gg-type-text {
    text-align: left;
    padding: 0 40px 20px;
    position: relative;
}
.gg-type-text h3 {
    font-size: 24px;
    color: #333333;
    line-height: 36px;
    margin-bottom: 15px;
    padding-top: 20px;
}
.gg-type-text h3 small {
    display: inline-block;
    height: 26px;
    font-size: 14px;
    line-height: 26px;
    padding: 0 5px;
    background: rgba(236,236,236,0.55);
    border-radius: 2px;
    color: #87878A;
    position: relative;
    top: -2px;
}
.gg-type-text p {
    font-size: 16px;
    color: #87878A;
    line-height: 24px;
    min-height: 96px;
}
.gg-type-text span.more {
    display: block;
    width: 60px;
    height: 32px;
    background: url("../images/arrow_right.svg") no-repeat;
    background-position: right center;
    background-size: 26px;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 20px;
    right: 40px;
}
.info-flow1 {
    overflow: hidden;
}
.info-flow1 dl {
    text-align: center;
    float: left;
    margin-right: 60px;
}
.info-flow1 dl:last-of-type {
    margin-right: 0;
}
.info-flow1 dt {
    font-size: 12px;
    color: #4581fb;
}
.info-flow1 dt strong{
    font-size: 24px;
}
.info-flow1 dd {
    font-size: 12px;
    color: #87878A;
    line-height: 18px;
    padding-top: 10px;
}
.show-position {
    padding-top: 40px;
    overflow: hidden;
}
.show-position-pic {
    width: calc(100% - 500px);
}
.show-position-pic.fl {
    margin-right: 40px;
}
.show-position-pic video,
.show-position-pic img {
    max-width: 100%;
}
.show-position-pic.img-center {
    text-align: center;
    background-position: center center;
}
.center {
    text-align: center;
}
.center img {
    max-width: 100%;
}
.box-content .center {
    margin-bottom: 40px;
}
.show-position-pic.img-right {
    text-align: right;
    background-position: right center;
}
.show-position-txt {
    width: 460px;
    padding-top: 80px;
}
.show-position-txt h3 {
    font-size: 40px;
    line-height: 50px;
    color: #333;
    margin-bottom: 20px;
}
.show-position-txt h4 {
    font-size: 16px;
    color: #87878A;
    line-height: 24px;
    margin-bottom: 5px;
}
.show-position-txt p {
    font-size: 18px;
    color: #333;
    line-height: 28px;
    margin-bottom: 40px;
}
.screen-list {
    width: 100%;
    overflow: hidden;
}
.screen-list li {
    width: calc((100% - 40px)/5);
    float: left;
    margin-right: 10px;
    border: 1px solid #E7E7E7;
    text-align: center;
}
.screen-list li:last-of-type {
    margin-right: 0;
}
.screen-list li h3{
    font-size: 16px;
    color: #333333;
    line-height: 24px;
    margin-bottom: 5px;
}
.screen-list li p {
    font-size: 16px;
    color: #87878A;
    line-height: 24px;
    padding: 0 20px;
}
.screen-icon {
    overflow: hidden;
}
.screen-icon img {
    width: 100%;
    float: left;
}
.screen-text {
    padding: 30px 10px;
    text-align: center;
}
.screen-list li .screen-text p {
    font-size: 12px;
    color: #87878A;
    padding: 0;
}

.open-screen-list li {
    width: 50%;
    float: left;
    text-align: center;
}
.open-screen-list li h3 {
    font-size: 24px;
    color: #393939;
    line-height: 36px;
}
.open-screen-list li img {
    max-width: 80%;
}
.case-filter {
    padding-bottom: 40px;
}
.case-filter .select {
    float: left;
    margin-right: 60px;
}
.case-list {
    width: calc((100% - 80px)/3);
    background: #FFFFFF;
    box-shadow: 0 10px 20px 0 rgba(37,39,95,0.06);
    border-radius: 6px;
    margin-right: 40px;
    margin-bottom: 40px;
    float: left;
    position: relative;
    border: 1px solid #E7E7E7;
    overflow: hidden;
    transition: all 0.5s;
}
.case-list:hover {
    box-shadow: 0 10px 20px 0 rgba(37,39,95,0.26);
}
.case-list:nth-of-type(3n) {
    margin-right: 0;
}
.case-list a.play {
    display: block;
    width: 54px;
    height: 54px;
    position: absolute;
    top: 193px;
    right: 40px;
    background: url("../images/play.svg") no-repeat;
    background-size: 54px;
    border-radius: 100%;
    box-shadow: 0 3px 9px rgba(39,43,157,0.2);
    transition: all 0.3s;
}
.case-list a.play:hover {
    transform: scale(1.10);
}
.case-pic {
    height: 220px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.case-pic:after {
    content:"";
    display: block;
    width: 150%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #4581fb;
    background-image: -webkit-linear-gradient(52deg, #0D6AF2 0%, #00C1DF 59%, #182FEC 100%); /* Safari 5.1 - 6.0 */
    background-image: -o-linear-gradient(52deg, #0D6AF2 0%, #00C1DF 59%, #182FEC 100%); /* Opera 11.1 - 12.0 */
    background-image: -moz-linear-gradient(52deg, #0D6AF2 0%, #00C1DF 59%, #182FEC 100%); /* Firefox 3.6 - 15 */
    background-image: linear-gradient(52deg, #0D6AF2 0%, #00C1DF 59%, #182FEC 100%);
    opacity: 0;
    transition: all 0.5s ease;
}
.case-list:hover .case-pic:after {
    opacity: 0.5;
    transform: translate3d(-25%,0,0);
}
.case-content {
    padding: 10% 10% 30px;
    height: 170px;
    overflow: hidden;
}
.case-content h3 {
    font-size: 20px;
    color: #333333;
    line-height: 30px;
    height: 60px;
    overflow: hidden;
    margin-bottom: 15px;
}
.case-content p {
    font-size: 16px;
    color: #87878A;
    line-height: 24px;
}
.relative-case .case-content {
    height: 210px;
}
.case-tongji {
    border-top: 1px solid #E7E7E7;
    padding: 20px 0;
    margin: 0 10%;
}
.case-tongji ul {
    display: flex;
    -webkit-justify-content: space-between; /* Safari */
    justify-content: space-between;
    -webkit-justify-content: space-around; /* Safari */
    justify-content: space-around;
}
.case-tongji li {
    text-align: center;
}

.case-tongji li span {
    font-size: 18px;
    color: #4581fb;
    line-height: 24px;
    display: inline-block;
    padding-bottom: 5px;
}
.case-tongji li label {
    font-size: 12px;
    color: #87878A;
    line-height: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-center .line-blue-btn,
.activities-center .line-blue-btn,
.cases-list .line-blue-btn {
    margin: 20px auto;
}
.case-banner {
    height: 450px;
    background-color: #4581fb;
    background-image: -webkit-linear-gradient(224deg, #00C1DF 0%, #0D6AF2 53%, #182FEC 100%); /* Safari 5.1 - 6.0 */
    background-image: -o-linear-gradient(224deg, #00C1DF 0%, #0D6AF2 53%, #182FEC 100%); /* Opera 11.1 - 12.0 */
    background-image: -moz-linear-gradient(224deg, #00C1DF 0%, #0D6AF2 53%, #182FEC 100%); /* Firefox 3.6 - 15 */
    background-image: linear-gradient(224deg, #00C1DF 0%, #0D6AF2 53%, #182FEC 100%);
    color: #fff;
    text-align: center;
}
.case-banner h2.title {
    padding-top: 75px;
    font-size: 40px;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 50px;
}
.case-banner h3 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 20px;
    color: #fff;
}
.case-banner p.main {
    font-size: 18px;
    color: #FFFFFF;
    line-height: 28px;
}
.case-banner .case-tongji {
    width: 60%;
    border-top: none;
    position: relative;
    margin: 40px auto 0;
    padding-top: 40px;
}
.case-banner .case-tongji label,
.case-banner .case-tongji span {
    color: #fff;
}
.case-banner .case-tongji:before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.5);
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -20px;
}
.news-main,
.case-main {
    padding: 60px;
    background: #fff;
    margin-top: -140px;
}
.news-main {
    margin-top: -210px;
}
.news-main h3,
.case-main h3 {
    font-size: 24px;
    color: #393939;
    line-height: 36px;
    margin-bottom: 20px;
    clear: both;
}
.news-main li,
.case-main li,
.news-main p,
.case-main p {
    font-size: 18px;
    color: #393939;
    line-height: 28px;
    clear: both;
    margin-bottom: 1.5em;
}
.case-main ol {
    margin-left: 1.5em;
    list-style: decimal;
    margin-bottom: 1.5em;
}
.case-main ol:last-of-type {
    margin-bottom: 0;
}
.news-main li,
.case-main li {
    margin-bottom: 5px;
}
.news-main ol,
.news-main ul,
.case-main ul {
    margin-left: 1.5em;
    list-style: disc;
    margin-bottom: 1.5em;
}
.news-main ol {
    list-style: decimal;
}
.news-main img {
    max-width: 100%;
    margin: 0px auto;
    display: block;
}
.flex-paragraph {
    display: -webkit-flex; /* Safari */
    display: flex;
}
.paragraph {
    padding-bottom: 50px;
}
.flex-paragraph .paragraph {
    flex: 1;
}
.paragraph h3 {
    color: #4581fb;
}
.news-main h3 {
    color: #4581fb;
}
.paragraph ul:last-of-type,
.paragraph p:last-of-type {
    margin-bottom: 0;
}
.share {
    padding: 40px 0 0;
    overflow: hidden;
}
.share label {
    font-size: 16px;
    color: #393939;
    line-height: 32px;
    float: left;
}
.share a {
    width: 32px!important;
    height: 32px!important;
    background-size: 100%!important;
    background-repeat: no-repeat;
    background-position: 0 0!important;
    margin: 0 10px 0 0!important;
}
.share a.bds_weixin {
    background-image: url("../images/s-wx.svg");
}
.share a.bds_tsina {
    background-image: url("../images/s-wb.svg");
}
.share a.bds_douban {
    background-image: url("../images/s-db.svg");
}
.share a.bds_sqq {
    background-image: url("../images/s-qq.svg");
}
.help-main {
    background: #FFFFFF;
    border: 1px solid #E7E7E7;
    border-radius: 2px;
    padding: 0;
    overflow: hidden;
}
.help-main h2.title {
    font-size: 24px;
    color: #333;
    line-height: 28px;
    padding: 20px 60px;
    text-align: left;
    position: relative;
    margin-bottom: 0;
}
.help-main h2.title:after {
    content: '';
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: rgba(0,0,0,0.2);
    bottom: 0;
    left: 0;
    transform: scaleY(0.5);
}
.ques-left {
    width: 360px;
    float: left;
    border-right: 1px solid #E7E7E7;
    padding: 0;
}
.ques-right {
    width: calc(100% - 359px);
    float: right;
    margin-left: -1px;
    border-left: 1px solid #E7E7E7;
    padding: 60px;
}
.ques-right h2 {
    font-size: 24px;
    color: #333333;
    line-height: 32px;
    margin-bottom: 40px;
}
.ques-right .content,
.ques-right p {
    font-size: 16px;
    color: #666;
    line-height: 24px;
    margin-bottom: 20px;
}
.ques-right p a {
    color: #4581fb;
}
.ques-right .answer {
    display: none;
}
.ques-right .red-text {
    color: #4581fb;
}
.ques-right img {
    max-width: 100%;
}
.ques-list li {
    padding-right: 25px;
}
.ques-list li span {
    font-size: 18px;
    color: #333333;
    line-height: 28px;
    padding: 15px 0 15px 60px;
    display: block;
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
}
.ques-list li span:before,
.ques-list li span:after {
    content: '';
    display: block;

    position: absolute;
    background: #C6C6C6;
    overflow: hidden;
    transition: all 0.3s;
}
.ques-list li span:before {
    width: 10px;
    height: 2px;
    top: 50%;
    margin-top: -1px;
    left: 26px;
}
.ques-list li span:after {
    width: 2px;
    height: 10px;
    top: 50%;
    margin-top: -5px;
    left: 30px;
}
.ques-list li.slidedown {
    background: #F7F8FA;
}
.ques-list li.slidedown span {
    color: #4581fb;
}
.ques-list li.slidedown span:before,
.ques-list li.slidedown span:after {
    background: #4581fb;
    transform: rotate(45deg);
}
.answer .container .list {
    overflow: hidden;
    margin-bottom: 20px;
}
.answer .container .list img {
    float: left;
    margin-right: 20px;
}
.ques-link {
    padding-left: 80px;
    padding-bottom: 20px;
    display: none;
    overflow: hidden;
}
.ques-list li.slidedown .ques-link {
    display: block;
}
.ques-link a {
    display: block;
    clear: both;
    font-size: 14px;
    color: #87878A;
    line-height: 24px;
    padding: 5px 0;
    /*transition: all 0.3s;*/
    -webkit-animation: slideInUp 0.3s ease-in-out both;
    animation: slideInUp 0.3s ease-in-out both;
}
.ques-list li.slidedown .ques-link a {
    -webkit-animation: slideInDown 0.3s ease-in-out both;
    animation: slideInDown 0.3s ease-in-out both;
}
.ques-link a.active,
.ques-link a:hover {
    color: #4581fb;
}
.ques-right ol {
    list-style: decimal;
    margin-left: 1.5em;
    margin-bottom: 20px;
}
.ques-right ol.cell3 {
    list-style: none;
    margin-left: 0;
}
.ques-right li {
    font-size: 16px;
    color: #666;
    line-height: 24px;
}
dl.dt-left {
    padding-left: 112px;
    position: relative;
    min-height: 92px;
    margin-bottom: 40px;
    overflow: hidden;
}
dl.dt-left dt {
    width: 92px;
    height: 92px;
    position: absolute;
    top: 0;
    left: 0;
}
dl.dt-left dt img {
    width: 100%;
}
dl.dt-left dd {
    padding-top: 10px;
}
dl.dt-left dd h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.ques-right ul {
    margin-bottom: 20px;
    list-style: disc;
    margin-left: 1.5em;
}
.ques-right ul.cell2 {
    list-style: none;
}
.ques-right li {
    margin-bottom: 1em;
}
.ques-right h4 {
    font-size: 18px;
    color: #222;
    margin-top: 30px;
    margin-bottom: 10px;
    clear: both;
}
.diff-text {
    padding-left: 5em;
    margin-bottom: 10px;
    font-size: 13px;
}
.diff-text label {
    position: absolute;
    left: 0;
    top: 0;
}

.activities-center li,
.news-center li {
    width: calc((100% - 40px)/2);
    float: left;
    margin-right: 40px;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}
.news-center li {
    height: 180px;
}
.activities-center li a,
.news-center li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 40px;
    border: 1px solid #E7E7E7;
    border-radius: 6px;
    background-color: #fff;
    transition: all 0.5s;
    /*overflow: hidden;*/
    position: relative;
}
.activities-center li a {
    padding-top: 228px;
}

.news-center li a:before {
    content: '';
    display: block;
    width: 150%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0D6AF2;
    background-image: -webkit-linear-gradient(214deg, #0D6AF2 0%, #00C1DF 39%, #182FEC 100%); /* Safari 5.1 - 6.0 */
    background-image: -o-linear-gradient(214deg, #0D6AF2 0%, #00C1DF 39%, #182FEC 100%); /* Opera 11.1 - 12.0 */
    background-image: -moz-linear-gradient(214deg, #0D6AF2 0%, #00C1DF 39%, #182FEC 100%); /* Firefox 3.6 - 15 */
    background-image: linear-gradient(214deg, #0D6AF2 0%, #00C1DF 39%, #182FEC 100%);
    opacity: 0;
    transition: all 0.5s ease-in;
}
.news-center li a:hover {
    color: #fff;
    box-shadow: 0 10px 20px 0 rgba(37,39,95,0.06);
}
.news-center li a:hover:before {
    opacity: 1;
    transform: translate3d(-25%,0,0);
    /*left: -50%;*/
}
.activities-center li:nth-of-type(2n),
.news-center li:nth-of-type(2n) {
    margin-right: 0;
}
.activities-center li h2,
.news-center li h2 {
    font-size: 24px;
    color: #333;
    line-height: 36px;
    height: 72px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s;
}
.news-center li h2 {
    white-space: nowrap;
    height: 36px;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    z-index: 3;
    transition: all 0.3s;
}
.news-center li h3 {
    font-size: 16px;
    color: #87878A;
    line-height: 24px;
    position: relative;
    z-index: 3;
}
.activities-center li span.time,
.news-center li span.time {
    font-size: 16px;
    color: #87878A;
    line-height: 24px;
    transition: all 0.3s;
}
.activities-center li span.overdue {
    display: block;
    position: absolute;
    right: 40px;
    bottom: 40px;
    background: rgba(236,236,236,0.55);
    border-radius: 2px;
    font-size: 14px;
    color: #87878A;
    width: 80px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}
.news-center li a:hover h2,
.news-center li a:hover h3,
.news-center li a:hover span {
    color: #fff;
    /*position: relative;*/
    z-index: 3;
}
.activities-center li a:hover h2 {
    color: #4581fb;
}
.activities-center .activity-banner {
    height: 188px;
    overflow: hidden;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.news-main p.center {
    text-align: center;
}
.related-news li {
    width: calc((100% - 80px)/3);
    margin-right: 40px;
    background: #FFFFFF;
    border-radius: 6px;
}
.related-news li:nth-of-type(2n) {
    margin-right: 40px;;
}
.related-news li:nth-of-type(3n) {
    margin-right: 0;
}
.related-news li h2 {
    font-size: 20px;
    line-height: 36px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.related-news li h3 {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-center li span.time {
    font-size: 14px;
    position: absolute;
    bottom: 40px;
    left: 40px;
}
.video-box {
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}
#videoPop {
    width: 60%;
    left: 20%;
}
#videoPop .video-box {
    height: 100%!important;
    margin-bottom: 0;
}
.map-main {
    height: 600px;
    width: 100%;
    border: 1px solid #dfdfdf;
    overflow: hidden;
    border-radius: 6px;
}
.map-left {
    width: 320px;
    height: 100%;
    float: left;
    overflow: hidden;
}
.map-right {
    float: right;
    height: 100%;
    width: calc(100% - 320px);
}
.dls-list {
    height: 510px;
    overflow: hidden;
    overflow-y: auto;
    position: relative;
    padding-top: 15px;
}
.jspHorizontalBar {
    display: none;
}
.dls {
    border: 1px solid #E7E7E7;
    margin: 0 10px 10px;
    background: #fff;
    overflow: hidden;
    clear: both;
    border-radius: 6px;
}
.dls dt {
    font-size: 16px;
    height: 38px;
    color: #3D3D3D;
    line-height: 38px;
    padding: 0 10px;
    background: #f8f8f8;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.dls dt .num {
    display: inline-block;
    width: 17px;
    height: 17px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    margin-right: 5px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background: #ff2727;
    float: left;
    margin-top: 10px;
    display: none;
}
.dls dt .field-title {
    width: 100%;
    /*float: left;*/
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.dls.focus dt .num {
    background: #0079ff;
}
.dls dt a {
    display: block;
    position: absolute;
    width: 88px;
    height: 28px;
    top: 5px;
    right: 8px;
    font-size: 14px;
    text-align: center;
    color: #fff;
    background: #1977df;
    line-height: 28px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    visibility: hidden;
}
.dls dd {
    padding: 0 10px;
}
.dls dd p {
    line-height: 18px;
    padding: 8px 0;
    font-size: 14px;
    overflow: hidden;
    word-break: break-all;
}
.dls dd p.last {
    border-bottom: none;
    color: #3D3D3D;
}
.dls dd p.last a {
    color: #1977df;
    text-decoration: underline;
}
.dls dd p label {
    color: #87878A;
    float: left;
}
.dls dd p span {
    float: right;
    color: #333;
    max-width: 68%;
}
.cj h3 {
    font-size: 28px;
    color: #333333;
    line-height: 38px;
    margin-top: 50px;
    margin-bottom: 25px;
}
.cj-pic {
    height: 360px;
    width: 100%;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
    position: relative;
    padding: 45px 0 0 140px;
    transition: all 0.5s;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #000;
}
.cj-pic-box {
    position: relative;
}
.cj-pic h4 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #FFFFFF;
}
.app-inline {
    height: 34px;
    margin-bottom: 15px;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 34px;
}
.app-inline .app-icon {
    width: 34px;
    height: 34px;
    overflow: hidden;
    float: left;
    display: block;
    border-radius: 8px;
    margin-right: 10px;
}
#offline .app-inline .app-icon {
    background-color: #fff;
}
.app-inline .app-icon img {
    width: 100%;
}
.app-thumb {
    border-radius: 6px;
    /*background-color: #fff;*/
    overflow: hidden;
    float: left;
}
.app-thumb img {
    float: left;
    border-radius: 6px;
    margin-right: 10px;
}
.app-thumb img:last-of-type {
    margin-right: 0;
}
.cj-pic img {
    max-width: 100%;
}
.cj-apps {
    padding-top: 20px;
    /*display: table;*/
    /*display: flex;
    -webkit-justify-content: space-between; 
    justify-content: space-between;
    align-items: center;*/
    width: 100%;
    /*table-layout: fixed;*/
    overflow-x: auto;
}
.cj-groups {
    display: table;
    /*overflow-x: auto;*/
    width: 100%;
}
.cj-group {
    display: table-cell;
    text-align: center;
    width: auto;
    padding: 0 20px;
    position: relative;
    box-sizing: border-box;
    white-space: nowrap;
}
.cj-group:after {
    content: '';
    display: block;
    width: 1px;
    height: 90%;
    position: absolute;
    top: 5%;
    right: 0;
    background: #e7e7e7;
    overflow: hidden;
}
.cj-group:first-of-type {
    padding-left: 0;
}
.cj-group:last-of-type {
    padding-right: 0;
    border-right: none;
}
.cj-group:last-of-type:after {
    display: none;
}
.cj-apps.jcenter .cj-groups {
    width: auto;
    margin: 0px auto;
    max-width: 100%;
}
.cj-app {
    display: inline-block;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    color: #87878A;
    margin: 0 5px;
    transition: all 0.5s;
}
.cj-apps.jcenter .cj-app {
    margin: 0 10px;
}
.screen-text .cj-group {
    margin: 0px auto;
    display: block;
    width: 100%;
    text-align: center;
}
.screen-text .cj-app {
    margin: 0 10px;
    cursor: default;
}
.cj-app.active {
    cursor: default;
    opacity: 0.3;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
}
.cj-app:first-of-type {
    margin-left: 0;
}
.cj-app:last-of-type {
    margin-right: 0;
}
.cj-app img {
    max-width: 34px;
    margin: 0px auto;
}
.cj-app span {
    display: block;
}

.cj-line {
    width: 1px;
    height: 50px;
    background: #E7E7E7;
    overflow: hidden;
}
.advantage-banner {
    border-radius: 6px;
    overflow: hidden;
    padding-top: 20px;
}
.advantage-banner img {
    width: 100%;
    border-radius: 6px;
    float: left;
}
.dx li {
    text-align: center;
    font-size: 18px;
    color: #393939;
    line-height: 28px;
    margin-top: 45px;
    padding-top: 55px;
    background-repeat: no-repeat;
    background-position: center top;
    position: relative;
    cursor: pointer;
    /*overflow: hidden;*/
}
.dx li span {
    display: block;
    width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 20px 0 rgba(39,43,157,0.17);
    font-size: 14px;
    color: #87878A;
    line-height: 21px;
    padding: 25px 40px;
    opacity: 0;
    transform: translate3d(0,-50%,0);
    transition: all 0.3s;
    text-align: left;
}
.dx li:hover span {
    opacity: 1;
    transform: translate3d(0,-10px,0);
}
.dx li.dx-liulan {
    background-image: url("../images/dx-liulan.svg") ;
    background-size: 46px;
}
.dx li.dx-daofang {
    background-image: url("../images/dx-daofang.svg") ;
    background-size: 47px;
    background-position: center 5px;
}
.dx li.dx-tieba {
    background-image: url("../images/dx-tieba.svg") ;
    background-size: 45px;
}
.dx li.dx-dili {
    background-image: url("../images/dx-dlwz.svg") ;
    background-size: 44px;
    background-position: center 4px;
}
.dx li.dx-yidong {
    background-image: url("../images/dx-yidong.svg") ;
    background-size: 44px;
    background-position: center 4px;
}
.dx li.dx-xinxi {
    background-image: url("../images/dx-jbxx.svg") ;
    background-size: 54px;
    background-position: center 3px;
}
.dx li.dx-yonghu {
    background-image: url("../images/dx-yhxq.svg") ;
    background-size: 46px;
    background-position: center 5px;
}
.dx li.dx-shejiao {
    background-image: url("../images/dx-sjgx.svg") ;
    background-size: 63px;
    background-position: center 4px;
}
.search-frame h2.title {
    color: #fff;
    padding: 0 0 44px;
    font-size: 36px;
    line-height: 36px;
    text-align: center;
    position: relative;
}
.search-frame.after h2.title {
    display: none;
}
.search-frame .input-box {
    width: 752px;
    height: 54px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 4px 5px 5px 4px;
    box-shadow: 0px 10px 16px rgba(0,0,0,0.3);
    transition: all ease-out 1s;
    -webkit-transition: all ease-out 0.6s;
    position: relative;
}
.input-box .place {
    margin-top: 11px;
    margin-left: 25px;
    height: 32px;
    text-align: right;
    font-size: 18px;
    color: #016FFF;
    line-height: 32px;
    background: url("../images/down.svg") no-repeat right center;
    padding-right: 20px;
    cursor: pointer;
}
.input-box .place-slide {
    width: 340px;
    border:1px solid #eaeaea;
    border-radius: 3px;
    position: absolute;
    top: 55px;
    left: 0;
    background: #fff;
    padding: 10px;
    z-index: 30;
    overflow: hidden;
    display: none;
}
.input-box .place-slide a {
    width: 52px;
    height: 22px;
    margin: 5px 8px;
    float: left;
    font-size: 14px;
    line-height: 22px;
    background: none;
    color: #161616;
    border: none;
}
.place-slide a:hover,
.place-slide a.active {
    background: #016FFF;
    color: #fff;
    border-radius: inherit;
}
.input-box input {
    width: 430px;
    height: 16px;
    padding: 8px 10px;
    font-size: 16px;
    color: #999;
    border: none;
    border-left: 1px solid #999;
    float: left;
    margin-top: 11px;
    margin-left: 20px;
}
.input-box a {
    width: 162px;
    height: 54px;
    background-color: #182FEC;
    background: -webkit-linear-gradient(49deg, #182FEC 0%, #0D6AF2 53%, #00C1DF 100%); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(49deg, #182FEC 0%, #0D6AF2 53%, #00C1DF 100%); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(49deg, #182FEC 0%, #0D6AF2 53%, #00C1DF 100%); /* Firefox 3.6 - 15 */
    background-image: linear-gradient(49deg, #182FEC 0%, #0D6AF2 53%, #00C1DF 100%);
    border-radius: 0px 4px 4px 0px;
    color: #fff;
    font-size: 18px;
    line-height: 52px;
    display: block;
    float: right;
    text-align: center;
}
.input-box a.loading {
    cursor: default;
}
.input-box a.loading i {
    display: inline-block;
    padding-left: 21px;
    background: url("../images/loading.gif") no-repeat left center;
}
.input-box .alert-msg {
    height: 100%;
    position: absolute;
    right: 174px;
    font-size: 14px;
    line-height: 54px;
    color: #F4595D;
}
.result {
    background: url("../images/wave.png") no-repeat center bottom;
    background-size: contain;
    height: 350px;
    padding-top: 20px;
    padding-bottom: 42px;
    width: 1200px;
    font-size: 24px;
    color: #FFFFFF;
    margin: 0px auto;
}
.result span {
    color: #FFC20C;
}
.sre-title {
    display: none;
    padding-top: 44px;
    font-size: 24px;
    color: #fff;
    line-height: 36px;text-align: center;
}
.search-frame.after .result {
    margin-top: -39px;
}
.search-frame.after .sre-title {
    display: block;
}
.sre-title span {
    color: #FFE728;
    font-size: 34px;
    margin: 0 5px;
}
#cloud {
    width: 800px;
    height: 100%;
    margin: 0px auto;
}
div.jqcloud {
    font-family: "Helvetica", "Arial", sans-serif;
    font-size: 10px;
    line-height: normal;
    color: #FFC20C;
}
div.jqcloud span {
    cursor: pointer;
}
div.jqcloud span.w1 {
    opacity: 0.35;
    font-size: 100%;
}
div.jqcloud span.w2 {
    opacity: 0.4;
    font-size: 110%;
}
div.jqcloud span.w3 {
    opacity: 0.45;
    font-size: 130%;
}
div.jqcloud span.w4 {
    opacity: 0.5;
    font-size: 140%;
}
div.jqcloud span.w5 {
    opacity: 0.55;
    font-size: 150%;
}
div.jqcloud span.w6 {
    opacity: 0.6;
    font-size: 160%;
}
div.jqcloud span.w7 {
    opacity: 0.65;
    font-size: 170%;
}
div.jqcloud span.w8 {
    opacity: 0.8;
    font-size: 180%;
}
div.jqcloud span.w9 {
    opacity: 0.9;
    font-size: 200%;
}
div.jqcloud span.w10 {
    opacity: 1.0;
    font-size: 250%;
}
div.jqcloud span:hover {
    opacity: 1.0!important;
}
.search-tab {
    width: 64%;
    height: 50px;
    min-width: 600px;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
}
.search-tab a {
    display: block;
    width: 20%;
    text-align: center;
    height: 50px;
    float: left;
    font-size: 18px;
    color: #333;
    line-height: 50px;
    border: 1px solid #DEDEDE;
    border-left: none;
}
.search-tab a:first-of-type {
    border-left: 1px solid #dedede;
    border-radius: 2px 0 0 2px;
}
.search-tab a:last-of-type {
    border-radius: 0 2px 2px 0;
}
.search-tab a.active {
    background: #4581fb;
    color: #fff;
    border: 1px solid #4581fb;
}
.xst {
    width: calc((100% - 80px)/3);
    float: left;
    margin-right: 40px;
}
.xst:last-of-type {
    margin-right: 0;
}
.xst h3 {
    font-size: 24px;
    color: #333;
    line-height: 36px;
    margin: 20px 0;
}
.xst h3 span {
    float: left;
    margin-right: 10px;
}
.xst p {
    background: #FFFFFF;
    box-shadow: 0 5px 20px 0 rgba(39,43,157,0.17);
    border-radius: 6px;
    padding: 16px;
}
.xst p img {
    width: 100%;
}
.search-page {
    display: none;
}
.tab {
    height: 50px;
    border-bottom: 1px solid #71a9e8;
}
.tab a {
    width: 50%;
    text-align: center;
    font-size: 18px;
    line-height: 50px;
    color: #3D3D3D;
    position: relative;
    display: block;
    float: left;
    background: #fff;
}
.tab a.active {
    background-color: #4581fb;
    background-image: -webkit-linear-gradient(135deg, #4581fb 0%, #213DF7 51%, #3260F7 100%);
    background-image: -o-linear-gradient(135deg, #4581fb 0%, #213DF7 51%, #3260F7 100%);
    background-image: -moz-linear-gradient(135deg, #4581fb 0%, #213DF7 51%, #3260F7 100%);
    background-image: linear-gradient(135deg, #4581fb 0%, #213DF7 51%, #3260F7 100%);
    color: #fff;
}
.tab a span {
    width: 12px;
    height: 7px;
    position: absolute;
    left: 50%;
    bottom: 0px;
    margin-left: -6px;
    z-index: 3;
    /*background: url("../images/bgTab.gif") no-repeat;*/
    display: none;
}
.dls-list {

}
.address-select {
    height: 40px;
    border-bottom: 1px solid #e7e7e7;
    border-top: 1px solid #e7e7e7;
    position: relative;
    background: #fff;
    z-index: 3;
}
.address-select span {
    display: inline-block;
    padding-left: 25px;
    line-height: 38px;
    background: url("../images/pin.svg") no-repeat 7px center;
    font-size: 14px;
}
.address-select i {
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 7px;
    right: 4px;
    background:  url("../images/arrowUp.svg") no-repeat center center;
    transform: rotate(180deg);
    transition: all 0.4s;
}
.address-select i.down {
    transform: rotate(0deg);
}
.address-pop {
    border: 1px solid #f2f2f2;
    border-bottom: 1px solid #D8D8D8;
    position: absolute;
    top: 38px;
    left: 0;
    display: none;
    width: 100%;
    background: #fff;
}
.address-tab {
    height: 40px;
    margin: 0 20px;
    border-bottom: 1px solid #F2F2F2;
}
.address-tab a {
    display: block;
    padding: 0 20px;
    margin-right: 40px;
    height: 40px;
    text-align: center;
    font-size: 14px;
    line-height: 39px;
    color: #87878A;
    float: left;
    position: relative;
}
.address-tab a:last-of-type {
    margin-right: 0;
}
.address-tab a:after {
    content: '';
    width: 0;
    transition: all .4s;
    display: block;
    height: 3px;
    overflow: hidden;
    border-radius: 2px;
    background: #4581fb;
    position: absolute;
    bottom: 0px;
    left: 0;
    /*transform: scaleX(0);*/
}
.address-tab a.active:after,
.address-tab a:hover:after {
    width: 100%;
    /*transform: scaleX(1);*/
}
.address-tab a.active {
    color: #4581fb;
    font-weight: 600;
}
.address-province {
    padding: 5px;
    background: #fff;
}
.address-province a {
    display: inline-block;
    font-size: 14px;
    float: left;
    width: 25%;
    line-height: 36px;
    text-align: center;
    color: #3D3D3D;
}
.address-province a:hover,
.address-province a.active {
    color: #1977df;
}
.video-embed {
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center center;
}
.video-embed img {
    display: none;
}
.video-embed .img-auto {
    display: none;
}
.video-embed video {
    max-width: 100%;
    display: block;
}
.show-position-pic.img-right video {
    float: right;
}
.center video,
.show-position-pic.img-center video {
    margin: 0px auto;
}
.swiper-container {
    position: relative;
}
.home-banner .swiper-slide {
    overflow: hidden;
}
/*.home-banner  .swiper-slide:not(:first-of-type) {
    display: none;
}*/

.home-banner .swiper-slide img {
    display: block;
    float: left;
}
.ydtg-banner {
    position: relative;
}
.ydtg-banner .img-auto img {
    visibility: hidden;
}
.yd-list {
    width: 20%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 40%;
    transition: all 0.5s ease-out;
}
.yd-list.yd3 {
    opacity: 1;
    z-index: 4;
}
.yd-list.yd1,
.yd-list.yd2,
.yd-list.yd5,
.yd-list.yd5 {
    opacity: 0;
    z-index: 3;
}
.yd-list img {
    width: 100%;
}
.ydtg-banner.active .yd-list.yd1 {
    opacity: 1;
    left: 0%;
}
.ydtg-banner.active .yd-list.yd2 {
    opacity: 1;
    left: 20%;
}
.ydtg-banner.active .yd-list.yd4 {
    opacity: 1;
    left: 60%;
}
.ydtg-banner.active .yd-list.yd5 {
    opacity: 1;
    left: 80%;
}
.accept h3 {
	font-size: 18px;
	font-weight: bold;
	padding: 20px 0;
}
.accept ul,
.accept ol {
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}
.accept ul {
    list-style: disc;
}
.accept ol {
    list-style: decimal;
}
.accept li {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
    padding-left: 8px;
}
.accept li b {
    font-weight: bold;
}
.accept p {
	font-size: 14px;
    line-height: 20px;
    margin-bottom: 1.5em;
}
.cj-btn  {
    padding-top: 20px;
    clear: both;
    overflow: hidden;
}
.t-right {
    text-align: right;
}
.box .t-left,
.box .t-right {
    padding-bottom: 40px;
}
a.more {
    display: inline-block;
    padding-right: 15px;
    color: #333;
    font-size: 14px;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI4IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PGcgc3Ryb2tlPSIjMzMzIj48cGF0aCBkPSJNNC44OCAxLjM5Nkw4IDQgNC44OCA2LjYwNE03LjYxMSAzLjk4OEguMjI2Ii8+PC9nPjwvZz48L3N2Zz4=") no-repeat right center;
}
.agent-filter {
    padding: 100px 0;
}
.agent-filter h2 {
    text-align: center;
    color: #fff;
    font-size: 28px;
    margin-bottom: 40px;
}
.agent-filter .views-widget-filter-title label {
    display: none;
}
.agent-filter .views-filter {
    width: 960px;
    margin: 0px auto 40px;
}
.agent-filter .views-widget-filter-title {
    width: calc(100% - 136px);
    float: left;
    margin: 0;
    padding: 0;
}
.agent-filter .views-widget-filter-title div {
    width: 100%;
}
.agent-filter .views-widget-filter-title input {
    width: 100%;
    box-sizing: border-box;
    height: 46px;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    padding: 10px 20px;
    line-height: 26px;
    background: #fff;
    border: none;
}
.agent-filter .views-submit-button {
    width: 136px;
    float: right;
    margin: 0;
    padding: 0;
    position: relative;
}
.agent-filter .views-submit-button input.form-submit {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 46px;
    /* Rectangle 14: */
    background-color: #4581fb;
    background-image: -webkit-linear-gradient(52deg, #182FEC 0%, #0D6AF2 39%, #00C1DF 150%); /* Safari 5.1 - 6.0 */
    background-image: -o-linear-gradient(52deg, #182FEC 0%, #0D6AF2 39%, #00C1DF 150%); /* Opera 11.1 - 12.0 */
    background-image: -moz-linear-gradient(52deg, #182FEC 0%, #0D6AF2 39%, #00C1DF 150%); /* Firefox 3.6 - 15 */
    background-image: linear-gradient(52deg, #182FEC 0%, #0D6AF2 39%, #00C1DF 150%);
    transition: all 0.75s ease;
    text-align: center;
    font-size: 18px;
    color: #FFFFFF;
    border: none;
    border-radius: 0 4px 4px 0;
}

.agent-filter .views-submit-button input.form-submit:hover {
    background-image: -webkit-linear-gradient(52deg, #182FEC 0%, #00C1DF 39%, #0D6AF2 120%); /* Safari 5.1 - 6.0 */
    background-image: -o-linear-gradient(52deg, #182FEC 0%, #00C1DF 39%, #0D6AF2 120%); /* Opera 11.1 - 12.0 */
    background-image: -moz-linear-gradient(52deg, #182FEC 0%, #00C1DF 39%, #0D6AF2 120%); /* Firefox 3.6 - 15 */
    background-image: linear-gradient(52deg, #182FEC 0%, #00C1DF 39%, #0D6AF2 120%);
}
.agent-filter .views-submit-button input.absolute-btn {
    position: absolute;
    top: 0;
    left: 0;
}
.agent-filter p.error-msg {
    color: #fff;
    font-size: 12px;
    line-height: 24px;
}


.agent li {
    margin-bottom: 20px;
}
.agent-box {
    background: #FFFFFF;
    border-radius: 6px;
    padding: 40px;
    overflow: hidden;
    display: flex;
    width: 100%;
}
.agent-logo {
    width: 30%;
    float: left;
    border-right: 1px solid #E7E7E7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    text-align: center;
}
.agent-logo img {
    max-width: 150px;
    height: auto;
}
.agent-info {
    width: 70%;
    float: right;
    flex: 3;
    padding-left: 5%;
}
.agent-info dt {
    font-size: 24px;
    color: #222222;
    margin-bottom: 20px;
}
.agent-info dd {
    margin-bottom: 10px;
    font-size: 18px;
    overflow: hidden;
}
.agent-info dd li {
    margin-bottom: 0;
}
.agent-info dd label {
    width: 5em;
    font-size: 18px;
    float: left;
    color: #87878A;
    display: block;
    justify-content: space-between;
    margin-right: 10px;
    position: relative;
}

.agent-info dd span {
    display: block;
    float: left;
    width: calc(100% - 100px);
    color: #222222;
}
.no-val, .alert-info, .agent-filter .loading {
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    padding-top: 20px;
}
.alert-info a {
    color: #fff;
}
.no-val strong {
    color: #FF7B00;
}
.agent-filter .loading i {
    display: inline-block;
    padding-left: 21px;
    background: url("../images/loading.gif") no-repeat left center;
}
.cloud-baidu {
    display: block;
    width: auto;
    padding-top: 60px;
    text-align: center;
    background: url("../images/cloud_baidu.png") no-repeat center top;
    background-size: auto 50px;
    float: right;
}
.public-files {
    margin-left: 1.5em;
    list-style: disc;
}
.public-files li {
    margin-bottom: 5px;
}
.public-files a {
    font-size: 16px;
    color: #333;
}
.charts-data {
    margin: 0 0 31px;
    height: 135px;
    /*overflow: hidden;*/
    position: relative;
}
.charts-data ul {
    height: 100%;
    padding-top: 12px;
    /*overflow: hidden;*/
    display: flex;
    justify-content: space-between;
}
.charts-data li {
    text-align: center;
    width: 84px;
}
.chart {
    width: 40px;
    height: 57px;
    margin: 0px auto 5px;
    position: relative;
}
.chart span {
    display: block;
    position: absolute;
    bottom: 8px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all 0.75s ease-in-out;
}
.chart span:before,
.chart span:after {
    content: '';
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    background-size: 100%;
    background-repeat: no-repeat;
}
.chart span.old {
    left: 0;
    width: 17px;
    height: 5px;
    background-image: url("../images/zhiqian.png");
}
.chart span.old:before {
    height: 12px;
    top: -12px;
    background-position: center bottom;
    background-image: url("../images/zhiqian-top.png");
}
.chart span.old:after {
    height: 6px;
    bottom: -6px;
    background-position: center top;
    background-image: url("../images/zhiqian-bottom.png");
}
.chart span.new {
    right: 0;
    width: 20px;
    height: 10px;
    background-image: url("../images/new.png");
}
.chart span.new:before {
    height: 12px;
    top: -12px;
    background-position: center bottom;
    background-image: url("../images/new-top.png");
}
.chart span.new:after {
    height: 8px;
    bottom: -8px;
    background-position: center top;
    background-image: url("../images/new-bottom.png");
}
.chart img {
    width: 100%;
}
h4.chart-data {
    font-size: 26px;
    line-height: 100%;
}
.data-label {
    font-size: 12px;
    line-height: 18px;
    color: #b1b2b4;
}
.data-labels {
    overflow: hidden;
    position: relative;
    height: 20px;
    margin-bottom: 65px;
}
.data-labels span {
    margin-right: 20px;
    float: left;
    display: block;
    color: #b1b2b4;
}
.data-labels span img {
    position: relative;
    float: left;
    margin-right: 10px;
}
.ab-why {
    width: 267px;
    height: 190px;
    position: relative;
    margin: 0px auto;
    /*position: absolute;
    top: 0;
    left: 50%;
    margin-left: -133.5px;*/
}
.ab-why img {
    position: absolute;
}
.ab-why img.why2-1 {
    top: 128px;
    left: 0;
    z-index: 1;
}
.ab-why img.why2-2 {
    top: 96px;
    left: 46px;
    z-index: 2;
}
.ab-why img.why2-3 {
    top: 69px;
    left: 55px;
    animation: whys 0.75s ease-out both;
    z-index: 3;
}
.ab-why img.why2-4 {
    top: 41px;
    left: 61px;
    animation: whys 0.75s ease-out both;
    z-index: 4;
}
.ab-why img.why2-5 {
    top: 0px;
    left: 56px;
    animation: whys 0.75s ease-out both;
    z-index: 7;
}
.ab-why img.why2-6 {
    top: 51px;
    left: 19px;
    z-index: 5;
}
.ab-why img.why2-7 {
    left: 104px;
    top: 24px;
    animation: whys 0.75s ease-out both;
    z-index: 6;
}
@keyframes whys {
    from {
        top: 128px;
        opacity: 0;
    }
}
.pane-user-login {
    width: 1240px;
    padding: 60px 30px 100px;
    margin: 0px auto;
}
.pane-user-login h2 {
    font-size: 44px;
    color: #333333;
    line-height: 64px;
    margin-bottom: 40px;
}
.pane-user-login input.form-text {
    width: 300px;
}
@media screen and (max-width: 1024px){
    .header {
        padding: 15px;
    }
    .nav li {
        padding-left: 30px;
    }
    .subnav li {
        padding-left: 0;
        padding-right: 20px;
    }
    .show-position-txt {
        padding-top: 20px;
    }
    .page-banner .banner-left h2.title {
        padding-top: 10px;
    }
    .page-banner .banner-left {
        width: 50%;
    }
    .box-content {
        padding-top: 20px;
    }
    .why1-pic {
        width: 60%;
    }
    .quan {
        transform: scale(0.8);
    }
    .why1-pic.current .f-iqiyi {
        left: 20%;
    }
    .result {
        width: 100%;
    }
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min-device-pixel-ratio: 1.5) {
    .why-box.full .why-box-img {
        background-image: url("../images/why-bg@2x.png");
    }
}
