<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*@charset "UTF-8";*/
/*宽屏1920px*/
/*html5*/

article, aside, dialog, footer, header, section, footer, nav, figure, menu {
    display: block
}

@font-face {
    font-family: "museo-light";
    src: url('../fonts/museo-light.woff'),
    url('../fonts/museo-light.ttf'),
    url('../fonts/museo-light.svg');
}

.museo-light {
    font-family: "museo-light" !important
}

.icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: "Microsoft YaHei", "微软雅黑", Arial, Helvetica, sans-serif;
    position: relative;
    background: #fff;
    font-size: 14px;
    color: #000;
    margin: 0 auto;
    width: 100%;
}

.body-wrap {
    display: none;
}

/*默认样式*/
img {
    border: none;
    display: block;
    width: 100%;
}

div {
    display: block;
}

table {
    border-collapse: collapse;
}

a {
    text-decoration: none;
    color: #000;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
}

a:focus {
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

li {
    list-style: none;
}

input, select, button, textarea {
    vertical-align: middle;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, Helvetica, sans-serif;
    border-radius: 0;
    outline: none;
    background: none;
    border: none;
}

textarea {
    resize: vertical;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.block {
    display: block;
}

.w-f {
    width: 100%;
}

/*清除浮动*/
.clear:after, .clearfix:after {
    content: "";
    width: 0;
    height: 0;
    clear: both;
    display: block;
}


/*input高亮*/
.salient-input {
    border: 1px solid #ccc;
    padding: 7px 0 7px 5px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.salient-input:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}

/*单行超出省略*/
.space-over {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*多行超出省略*/
.space-list-over {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #b3b3b3;
}

input:-moz-placeholder, textarea:-moz-placeholder {
    color: #b3b3b3;
}

input::-moz-placeholder, textarea::-moz-placeholder {
    color: #b3b3b3;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #b3b3b3;
}

.page-lable-wrap {
    font-size: 0;
    text-align: center;
    margin-top: 20px;
}

.page-lable-wrap a {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #000;
    margin: 0 5px;
    font-size: 16px;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.page-lable-wrap span {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #0000ff;
    background: #0000ff;
    margin: 0 5px;
    font-size: 16px;
    color: #fff;
}

.page-lable-wrap a:hover {
    border: 1px solid #0000ff;
    background: #0000ff;
    color: #fff;
}

.banner-box {
    background: #000;

}

.xx_tips {
    position: fixed;
    cursor: pointer;
    bottom: 5px;
    right: 8px;
    z-index: 990;
    padding: 0 15px 0 40px;
    font-size: 14px;
    color: #fff;
    height: 42px;
    line-height: 42px;
    white-space: nowrap;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .5);
    background: #f7ab00 url(../images/ico_zx.png) no-repeat 13px center / 20px auto;
}

.xx_top {
    display: none;
    position: fixed;
    cursor: pointer;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(0, 0, 0, .5);
}

.xx_top .inDiv {
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -moz-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

.xx_top .indiv {
    text-align: center;
    width: 200px;
}

.xx_top .indiv .lay_img01 {
    display: block;
    padding: 10px 10px 5px;
    border-radius: 5px;
    background: #fff;
}

.xx_top .lay_img01 .lay_img {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
}

.xx_top .lay_img01 .lay_img img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: auto;
    height: auto;
    -wekbit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.xx_top .lay_img01 p {
    font-size: 14px;
    line-height: 28px;
    color: #333;
    position: relative;
    top: -10px;
}

.xx_top .lay_info01 {
    padding: 8px 10px;
    border-radius: 5px;
    background: #fff;
    margin-top: 10px
}

@media screen and (min-width: 1201px) {
    .wap_banner_index {
        display: none;
    }

    .case_page_box_3 {
        display: none;
    }

    .case_top_title_wap {
        display: none;
    }

    .case_top_title_wap2 {
        display: none;
    }

    .header_black_logo_lnk_wrap {
        display: none;
    }

    .page_news_img_wap {
        display: none;
    }

    .case_wap_chs_banner {
        display: none;
    }

    .case_top_title_wap2_2 {
        display: none;
    }

    .case_ban_wap_re {
        display: none;
    }

    .xx_tips {
        display: none;
    }
}

.banner-box .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background: rgba(255, 255, 255, 1);
    margin: 0 9px !important;
}

.swiper-animation {
    opacity: 0;
}

.banner-box .swiper-pagination-bullet-active {
    background: #52b3b7 !important;
    opacity: 1 !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
}

.cover {
    position: relative;
    height: 0;
    overflow: hidden;
}

.cover img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.center {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.inline {
    display: inline-block;
    vertical-align: top;
}

/*!*滚动条整体部分，可以设置宽度等*!*/
/*::-webkit-scrollbar {*/
/*}*/

/*!*滚动条两端的按钮*!*/

/*::-webkit-scrollbar-button {*/
/*}*/

/*!*外层轨道*!*/
/*::-webkit-scrollbar-track {*/
/*}*/

/*!*内层滚动槽*!*/
/*::-webkit-scrollbar-track-piece {*/
/*}*/

/*!*滚动的滑块*!*/
/*::-webkit-scrollbar-thumb {*/
/*}*/

/*!*边角*!*/
/*::-webkit-scrollbar-corner {*/
/*}*/

/*!*定义右下角拖动块的样式*!*/
/*::-webkit-resizer {*/
/*}*/
.width-auto {
    padding: 0 190px;
    position: relative;
    width: 100%;
}

.header_wrap {
    padding: 0 62px;
    background: #000000;
    position: fixed;
    width: 100%;
    z-index: 999;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.header_wrap h1, .header_wrap h2 {
    font-weight: normal;
}

.header_wrap2 {
    background: #fff;
    -webkit-box-shadow: rgba(0, 0, 0, .05) 0 1px 6px;
    box-shadow: rgba(0, 0, 0, .05) 0 1px 6px;
}

.header_wrap2 .header_nav_black span {
    background: #000;
}

.header_wrap2 .header_nav_li .header_down_li a {
    color: #fff;
}

.header_wrap2 .header_nav_li a {
    color: #000;
}

.header_wrap2 .header_logo_img a img {
    filter: invert(100%);
}

.header_wrap2 .header_logo_slogan {
    color: #000;
}

.header_box {
    position: relative;
    height: 62px;
}

.header_logo_box {
    width: auto;
    position: absolute;
    left: 0;
    top: 17px;
}

.header_logo_img {
    height: 28px;
    overflow: hidden;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
}

.header_logo_img a {
    display: block;
    width: 62px;
}

.header_logo_slogan {
    font-size: 16px;
    margin-left: 22px;
    color: #fff;
    opacity: .4;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.header_logo_img a img {
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.header_nav_wrap {
    text-align: right;
    font-size: 0;
}

.header_nav_ul {
    font-size: 0;
}

.header_nav_li {
    line-height: 62px;
    margin: 0 27px;
    position: relative;
    text-align: center;
}

.header_nav_li a {
    color: #dbdcdc;
    font-size: 16px;
    display: block;
}

.header_nav_black {
    width: 25px;
    margin-left: 20px;
    padding: 20px 0 0 0;
    cursor: pointer;
    display: none;
}

.header_nav_black span {
    height: 2px;
    background: #fff;
    display: block;
    margin-bottom: 7px;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.header_down_nav {
    position: absolute;
    left: -31px;
    width: 180px;
    background: #000000;
    display: none;
    z-index: 19;
}

.header_down_li {
    line-height: 40px;
    padding: 0 31px;
    text-align: left;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.header_down_li a {
    color: #f7f7f7;
}

.header_down_li:hover {
    background: #3e3a39;
}

.swiper_banner_img .cover {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.swiper_banner_img a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.banner_wrap {
    padding: 62px 0 0 0;
}

.banner-box .swiper-pagination {
    left: 90px !important;
    width: 7px;
    top: 50% !important;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    bottom: auto !important;
}

.banner-box .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 8px 0 !important;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.banner-box .swiper-pagination-bullet-active {
    height: 27px;
    background: #fff !important;
}


.case_index_box {
    padding: 0 55px;
}

.case_index_label_wrap {
    padding: 50px 0;
}

.case_index_label_menu {
    /*border-bottom: 1px solid #dedede;*/
    /*margin-bottom: 18px;*/
    /*text-align: center;*/
}

.case_index_label_menu_inner {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.case_index_label_btn {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 25px;
}

.case_index_label_btn:last-child {
    margin: 0 0 0 25px;
}

.case_index_label_btn a {
    color: #666;
    display: inline-block;
    vertical-align: top;
    font-size: 18px;
    line-height: 32px;
    /*padding-bottom: 28px;*/
}

/*.case_index_label_btn a:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 50%;*/
/*    bottom: -1px;*/
/*    width: 0;*/
/*    height: 3px;*/
/*    background: #333;*/
/*    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);*/
/*    transition: all .6s cubic-bezier(.645, .045, .355, 1);*/
/*}*/


.case_index_label_btn.active a:after, .case_index_label_btn:hover a:after {
    width: 100%;
    left: 0;
}

.case_index_label_menu_inner.in_hover .case_index_label_btn.active a:after {
    left: 50%;
    width: 0;
}

.case_index_label_menu_inner.in_hover .case_index_label_btn.active:hover a:after {
    width: 100%;
    left: 0;
}

.case_index_label_btn a, .case_index_label_btn a:hover, .case_index_label_btn a:focus {
    text-decoration: none;
    cursor: pointer;
    outline: none;
}


.case_index_label {
    font-size: 0;
    text-align: right;
}

.case_index_label span {
    padding: 0 23px;
}

.case_index_label span:last-child {
    padding: 0 0 0 23px;
}

.case_index_label_bdy .case_index_label .inline {
    margin-top: 20px;
}

.case_index_label span a {
    font-size: 16px;
    display: block;
    color: #595757;
}

.case_index_label .current a {
    color: #000;
}

.case_index_list {
    font-size: 0;
}

.case_index_list:after {
    content: '';
    display: block;
    height: 0;
    overflow: hidden;
    clear: both;
}

.case_index_li {
    width: 33.333333%;
    position: relative;
    float: left;

}

.iqw_case_index_list .case_index_li {
    width: calc(50% - 10px);
    margin: 0 20px 20px 0;
}

.iqw_case_index_list .case_index_li:nth-child(2n) {
    margin-right: 0;
}

.news_page_li {
    width: 25%;
    position: relative;

}

.case_index_black {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.case_index_img {
    padding-bottom: 83.27%;
}

.iqw_case_index_list .case_index_img {
    padding-bottom: 65.5%;
}

.case_index_img img {
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.case_index_read {
    color: #fff;
    padding: 20px 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.case_index_icon {
    display: none;
    font-size: 14px;

}

.case_index_title {
    font-size: 24px;
    line-height: 26px;
    padding: 8px 0;
}

.case_index_text {
    font-size: 14px;
    font-weight: normal;
}

.news_page_li:hover .case_index_black {
    opacity: 1;
}

.news_page_li:hover .case_index_img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.case_index_li:hover .case_index_black {
    opacity: 1;
}

.case_index_li:hover .case_index_img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.iqw_case_index_list .case_index_li:hover .case_index_img img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.case_more_wrap {
    text-align: center;
    padding: 98px 0;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}


.case_more_box a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    color: #595757;
    font-size: 14px;
    line-height: 44px;
    padding: 0 39px;
    border: 1px solid #959595;
}

.case_more_box a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #f6ca27;
    overflow: hidden;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.case_more_box a.disable {
    border: 1px solid transparent;
    color: transparent;
    font-size: 0;
}

.case_more_box a.disable:before {
    background: transparent;
}

.case_more_box a span {
    position: relative;
    color: #595757;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.case_more_box a.disable span {
    color: transparent;
}

@media screen and (min-width: 1201px) {
    .case_more_box a:hover {
        border-color: #f6ca27;
    }

    .case_more_box a:hover:before {
        width: 100%;
    }

    .case_more_box a:hover span {
        color: #fff;
    }

    .case_more_box a.disable:hover span {
        color: transparent;
    }
}

.case_more_box .morelnk {
    position: relative;
    display: inline-block;
    vertical-align: top;
    color: #595757;
    font-size: 14px;
    line-height: 44px;
    padding: 0 39px;
    border: 1px solid #959595;
    cursor: pointer;
}

.case_more_box .morelnk:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #f6ca27;
    overflow: hidden;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.case_more_box .morelnk.disable {
    border: 1px solid transparent;
    color: transparent;
    font-size: 0;
}

.case_more_box .morelnk.disable:before {
    background: transparent;
}

.case_more_box .morelnk span {
    position: relative;
    color: #595757;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.case_more_box .morelnk.disable span {
    color: transparent;
}

@media screen and (min-width: 1201px) {
    .case_more_box .morelnk:hover {
        border-color: #f6ca27;
    }

    .case_more_box .morelnk:hover:before {
        width: 100%;
    }

    .case_more_box .morelnk:hover span {
        color: #fff;
    }

    .case_more_box .morelnk.disable:hover span {
        color: transparent;
    }
}


.case_list_foot {
    padding: 120px 0;
    text-align: center;
    background: #ebc230;
    color: #000;
}

.case_list_foot .text1 {
    font-size: 54px;
    line-height: 88px;
    margin: 0 12%;
}

.case_list_foot .text2 {
    font-size: 22px;
}

.case_list_foot .text2 span {
    margin: 0 20px;
}

.img_index_box .swiper-slide a {
    padding-bottom: 33.8%;
    display: block;
}

.img_index_box .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 1);
    opacity: 1 !important;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.img_index_box .swiper-pagination-bullet-active {
    width: 27px;
}

.img_index_box .swiper-pagination {
    bottom: 20px !important;
}

.news_index_title, .news_index_title a {
    font-size: 30px;
    font-weight: bold;
    color: #595757;
}

.news_index_title a, .news_index_title a:hover {
    text-decoration: none;
}

.news_index_box {
    padding: 200px 0;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.news_index_list {
    font-size: 0;
    padding: 50px 0 15px 0;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.news_index_li {
    width: 50%;
}

.news_index_li:nth-child(1) {
    padding: 0 70px 0 0;
}

.news_index_li:nth-child(2n) {
    padding: 0 0 0 70px;
}

.news_index_banner a {
    display: block;
    padding-bottom: 38.428%;
}

.news_index_banner a img {
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.news_index_banner a:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.news_sort_top {
    position: relative;
    padding: 0 0 10px 0;
}

.news_index_pd {
    padding: 80px 0 0 0;
}

.news_sort_top:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #b8b8b8;
}

.news_sort_top_no_border:after {
    display: none;
}

.news_sore_title a {
    display: inline-block;
    font-size: 18px;
    color: #3e3a39;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
    font-weight: normal;
}

.news_sore_title a:hover {
    color: #fac034;
}

.news_sore_text {
    font-size: 14px;
    line-height: 28px;
    height: 56px;
    overflow: hidden;
    color: #888;
    margin: 10px 0 0 0;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news_min_list {
    font-size: 0;
    padding: 10px 0 10px 0;
}

.news_min_li {
    width: 25%;
    line-height: 28px;
    height: 28px;
    padding-right: 10px;
}

.news_min_li a {
    font-size: 14px;
    color: #888;
    display: block;
    padding: 0 0 0 15px;
    position: relative;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.news_min_li a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background: #888;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.news_min_li a:hover {
    color: #000;
}

.news_min_li a:hover:after {
    background: #000;
}

.news_index_bd {
    padding: 0 0 66px 0;
}

.footer_wrap {
    background: #000;
    padding: 64px 0 110px 0;
}

.footer_box {
    font-size: 0;
}

.footer_ul:after {
    content: '';
    display: block;
    height: 0;
    overflow: hidden;
    clear: both;
}

.footer_ul::after {
    content: '';
    display: block;
    height: 0;
    overflow: hidden;
    clear: both;
}

.footer_li {
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.footer_li:nth-child(1) {
    width: 22%;
}

.footer_li:nth-child(2) {
    width: 20%;
    margin-left: 13%;
}

.footer_li:nth-child(3) {
    width: 18%;
    margin-left: 13%;
}

.footer_li:nth-child(4) {
    margin-left: 2.8%;
}

@media screen and (min-width: 1201px) {
    .footer_li:nth-child(1) {
        float: left;
    }

    .footer_li:nth-child(2) {
        float: left;
    }

    .footer_li:nth-child(3) {
        float: left;
    }

    .footer_li:nth-child(4) {
        float: right;
    }

    .footer_ul_wap {
        display: none;
    }

    .about_page_back .wap_img {
        display: none;
    }

    .ipo_box_text .wap_text {
        display: none;
    }

    .page_box_text .wap_text {
        display: none;
    }
}

.footer_address {
    margin-bottom: 68px;
    font-size: 0;
}

.footer_address span {
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
    line-height: 26px;
    color: #717071;
    margin-right: 10px;
}

.footer_address span:last-child {
    margin-right: 0;
}

.footer_map, .footer_map a {
    color: #717071;
    font-size: 14px;
    line-height: 26px;
}

.footer_map a {
    margin-right: 10px;
}

.footer_map a:last-child {
    margin-right: 0;
}

.footer_copyright {
    color: #717071;
    font-size: 14px;
    line-height: 26px;
}

.footer_copyright a {
    color: #717071;

}

.footer_link_title {
    color: #717071;
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 44px;
}

.footer_link_list {
    font-size: 0;
    height: 140px;
}

.footer_link_li {
    width: 50%;
    line-height: 28px;
}

.footer_link_li a {
    display: block;
    color: #717071;
    font-size: 14px;
}

.footer_link_list .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background: #ababab;
    width: 1px;
}

.footer_link_list .mCSB_scrollTools .mCSB_draggerRail {
    background: #525252;
    width: 1px;
}

.footer_tel_title {
    font-size: 14px;
    color: #fff;
    line-height: 26px;
}

.footer_tel_number {
    line-height: 40px;
    height: 40px;
    display: block;
    margin-bottom: 40px;
}

.footer_tel_number a {
    color: #fff;
    font-size: 20px;
}

.footer_nav {
    font-size: 0;
    width: 160px;
}

.footer_nav span {
    max-width: 50%;
    width: 80px;
    line-height: 32px;
    height: 32px;
}

.footer_nav span a {
    color: #717071;
    font-size: 14px;
}

.footer_icon {
    line-height: 36px;
    height: 36px;
    display: block;
    font-size: 0;
    margin-bottom: 30px;
    white-space: nowrap;
}

.footer_icon a {
    color: #717071;
    font-size: 30px;
    margin-right: 10px;
}

.footer_icon a:last-child {
    margin: 0;
}

.footer_icon a:nth-child(2), .footer_icon a:nth-child(3) {
    font-size: 35px;
}

.footer_ewm {
    max-width: 135px;
}

.footer_ewm_name {
    color: #717071;
    font-size: 14px;
    line-height: 26px;
    text-align: center;
    padding: 5px 0 0 0;
}

.header_black_wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .9);
    left: 0;
    top: -100%;
    z-index: 999;
    opacity: 0;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.header_black_top {
    top: 0;
    opacity: 1;
}

.header_black_hide {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 40px;
    top: 40px;
    cursor: pointer;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.header_black_hide:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 24px;
    width: 40px;
    height: 2px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.header_black_hide:before {
    content: "";
    position: absolute;
    right: 5px;
    top: 24px;
    width: 40px;
    height: 2px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.header_black_hide:hover {
    background: #fff;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.header_black_hide:hover:after {
    background: #000;
    width: 30px;
    left: 10px;

}

.header_black_hide:hover:before {
    background: #000;
    width: 30px;
    right: 10px;
}

.header_black_nav {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    width: 50%;
    padding: 0 20px;
    text-align: center;
}

.header_black_li {
    line-height: 80px;
    font-size: 48px;
    color: #e9e7e8;
}

.header_black_li a {
    display: block;
    position: relative;
    text-align: center;
    color: #fff;
}

.header_black_li a span {
    display: block;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.header_black_li a span:nth-child(1) {
    text-transform: uppercase;
}

.header_black_li a span:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
}

.header_black_li a:hover span:nth-child(1) {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
}

.header_black_li a:hover span:nth-child(2) {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.about_page_wrap {
    padding-top: 62px;
}

.about_page_swiper {
    height: -webkit-calc(100vh - 62px);
    height: calc(100vh - 62px);
}

.about_page_swiper .swiper-slide:last-child,
.ipo_page_swiper .swiper-slide:last-child,
.plan_page_swiper .swiper-slide:last-child {
    height: 392px;
}

.about_page_back {
    height: 100%;
}


.about_page_swiper .swiper-wrapper, .ipo_page_swiper .swiper-wrapper, .plan_page_swiper .swiper-wrapper {
    -webkit-transition: all 1s cubic-bezier(.645, .045, .355, 1);
    transition: all 1s cubic-bezier(.645, .045, .355, 1);
}

.page_wrap1 {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: 31px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.page_box_title {
    padding-bottom: 130px;
    text-align: center;
}

.page_box_max {
    font-size: 72px;
    font-weight: bold;
    color: #f6ca27;
}

.page_box_min {
    font-size: 60px;
    color: #fff;
}

.page_box_text {
    color: #fff;
    text-align: center;
    font-size: 21px;
    line-height: 42px;
}

.page_wrap2 {
    width: 1300px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: 31px;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    font-size: 0;
}

.whiteFade:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), rgba(255, 255, 255, 1) 50%);
    background: -o-linear-gradient(right, rgba(0, 0, 0, 0), rgba(255, 255, 255, 1) 50%);
    background: -moz-linear-gradient(right, rgba(0, 0, 0, 0), rgba(255, 255, 255, 1) 50%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(255, 255, 255, 1) 50%);
    z-index: 1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.blackFade:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 50%);
    background: -o-linear-gradient(right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 50%);
    background: -moz-linear-gradient(right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 50%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 50%);
    z-index: 1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.orangeFade:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), #f6ca27 50%);
    background: -o-linear-gradient(right, rgba(0, 0, 0, 0), #f6ca27 50%);
    background: -moz-linear-gradient(right, rgba(0, 0, 0, 0), #f6ca27 50%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0), #f6ca27 50%);
    z-index: 1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.blueFade:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), #f7f8f8 50%);
    background: -o-linear-gradient(right, rgba(0, 0, 0, 0), #f7f8f8 50%);
    background: -moz-linear-gradient(right, rgba(0, 0, 0, 0), #f7f8f8 50%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0), #f7f8f8 50%);
    z-index: 1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.blackSlate:after {
    -webkit-animation: whiteSlate 2s forwards cubic-bezier(.645, .045, .355, 1);
    animation: whiteSlate 2s forwards cubic-bezier(.645, .045, .355, 1);
}

.orangeSlate:after {
    -webkit-animation: whiteSlate 2s forwards cubic-bezier(.645, .045, .355, 1);
    animation: whiteSlate 2s forwards cubic-bezier(.645, .045, .355, 1);
}

.blueSlate:after {
    -webkit-animation: whiteSlate 2s forwards cubic-bezier(.645, .045, .355, 1);
    animation: whiteSlate 2s forwards cubic-bezier(.645, .045, .355, 1);
}

.whiteSlate:after {
    -webkit-animation: whiteSlate 2s forwards cubic-bezier(.645, .045, .355, 1);
    animation: whiteSlate 2s forwards cubic-bezier(.645, .045, .355, 1);
}

@keyframes whiteSlate {
    0% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    100% {
        -webkit-transform: translateX(110%);
        transform: translateX(110%);
    }
}

@-webkit-keyframes whiteSlate {
    0% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    100% {
        -webkit-transform: translateX(110%);
        transform: translateX(110%);
    }
}

.page_left {
    width: 28%;
}

.page_right {
    width: 72%;
}

.page_left_title {
    font-size: 87px;
    font-weight: bold;
    color: #040000;
    line-height: 95px;
}

.page_left_en {
    font-size: 21px;
    color: #f6ca27;
    -webkit-transform: rotate(90deg) translateX(-12px) translateY(-15px);
    transform: rotate(90deg) translateX(-12px) translateY(-15px);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    font-weight: bold;

}

.page_left_en i {
    font-style: normal;
}

.page_right_text {
    font-size: 21px;
    line-height: 42px;
    color: #595757;
}

.about_number_wrap {
    width: 1300px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: 31px;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    font-size: 0;
}

.about_number_title {
    text-align: center;
}

.about_number_year {
    font-size: 60px;
    color: #f6ca27;
}

.about_number_text {
    font-size: 36px;
    color: #fff;
    font-weight: bold;
}

.about_number_list {
    font-size: 0;
    padding: 150px 0 150px 0;
}

.about_number_li {
    width: 25%;
    text-align: center;
}

.number_li_title {

    color: #f6ca27;
    font-weight: bold;
}

.number_li_title span:nth-child(1) {
    font-size: 102px;
}

.number_li_title span:nth-child(2) {
    font-size: 48px;
}

.number_li_text {
    font-size: 22px;
    line-height: 32px;
    color: #7f7f80;
}

.page_wrap3 {
    width: 1300px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: 31px;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    font-size: 0;
    text-align: center;
}

.page_wrap3_img {
    max-width: 100%;
    display: inline-block;
    margin: 0 auto;
}

.page_wrap4 {
    width: 1530px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: 31px;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    font-size: 0;
}

.page_wrap_news {
    width: 1530px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: 31px;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    font-size: 0;
    text-align: center;
}

.page_wrap4_left {
    width: 47%;
}

.page_wrap4_right {
    width: 53%;
}

.page_wrap4_title {
    font-size: 36px;
    line-height: 60px;
    font-weight: bold;
    color: #fff;
    padding-top: 30px;
}

.page_wrap4_en {
    font-size: 30px;
    color: #fff;
    padding-bottom: 60px;
}

.page_wrap4_line {
    width: 393px;
    height: 1px;
    background: #fff;
}

.page_wrap4_text {
    font-size: 26px;
    line-height: 40px;
    color: #fff;
    padding: 70px 0 200px 0;
}

.page_wrap4_label {
    font-size: 16px;
    line-height: 34px;
    color: #fff;
}

.page_wrap4_img {
    max-width: 100%;
    display: inline-block;
}

.page_wrap4_back {
    background: #000;
    height: 100%;
    position: relative;
}

.page_wrap5 {
    width: 1530px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: 31px;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    font-size: 0;

}

.page_wrap5_title {
    font-size: 36px;
    line-height: 60px;
    color: #040000;
    text-align: center;
    font-weight: bold;
}

.page_wrap5_en {
    font-size: 30px;
    color: #231815;
    text-align: center;
    padding-bottom: 60px;
}

.page_wrap5_line {
    height: 1px;
    width: 100%;
    background: #231815;
}

.page_wrap5_list {
    font-size: 0;
    padding: 90px 0 0 0;
}

.page_wrap5_li {
    width: 12.57142857%;
    margin: 0 2% 2% 0;
}

.page_wrap5_li:nth-child(7n) {
    margin: 0 0 2% 0;
}

.page_wrap5_li a {
    display: block;
    padding-bottom: 47.7%;
    cursor: default;
}

.about_page_swiper .swiper-pagination-bullet,
.ipo_page_swiper .swiper-pagination-bullet,
.plan_page_swiper .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: #fff;
    opacity: 1;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
    margin: 8px 0 !important;
}

.about_page_swiper .swiper-pagination-bullet-active,
.ipo_page_swiper .swiper-pagination-bullet-active,
.plan_page_swiper .swiper-pagination-bullet-active {
    height: 27px;
    background: #fff;
}

.about_page_swiper .swiper-pagination,
.ipo_page_swiper .swiper-pagination,
.plan_page_swiper .swiper-pagination {
    right: 70px;
    padding: 5px;
    background: rgba(0, 0, 0, .2);
    -webkit-border-radius: 9px;
    border-radius: 9px;
}

.swiper_black .swiper-pagination-bullet {
    background: #fff;
}

.page_banner_wrap {
    padding-top: 62px;
    position: relative;
}

.page_banner_img {
    padding-bottom: 27.083333%;
}

.core_list_box {
    font-size: 0;
    position: relative;
}

.core_list_box:after {
    height: 2px;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #fff;
    width: 100%;
}

.core_li_box {
    width: 25%;
    background: #efefef;
    position: relative;
    text-align: center;
}

.core_li_box:after {
    width: 2px;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    background: #fff;
    height: 100%;
}

.core_li_box:nth-child(4n):after {
    display: none;
}

.core_li_icon {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    font-size: 0;
    z-index: 1;
    /* -webkit-filter: blur(30px);
     filter: blur(30px);
     opacity: 0;
     */
    /*
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
    */
    /* -webkit-transition:opacity .1s ease-out, filter .8s ease-out .1s;
     transition:opacity .1s ease-out, filter .8s ease-out .1s;*/
    opacity: 0;
}

.core_li_box:hover .core_li_icon {
    /*-webkit-filter: blur(0);
    filter: blur(0);*/
    -webkit-transition: opacity 1.8s linear;
    transition: opacity 1.8s linear;
    opacity: 1;
}

.core_li_en {
    font-size: 26px;
    font-weight: bold;
    color: #231815;
    line-height: 32px;
    height: 64px;
    margin: 0 0 10px 0;
}

.core_li_line {
    width: 220px;
    background: #3d3330;
    height: 1px;
    margin: 0 auto;
}

.core_li_title {
    font-size: 21px;
    font-weight: bold;
    color: #231815;
    line-height: 32px;
    height: 64px;
    margin: 10px 0 0 0;
}

.core_li_text {
    font-size: 14px;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
    margin: 0 0 110px 0;
}

.core_li_read {
    position: relative;
    margin: 130px 0 80px 0;
}

.core_li_content {
    position: relative;
    z-index: 2;
}


.page_banner_read {
    position: absolute;
    width: 100%;
    z-index: 2;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}

.page_banner_title {
    font-size: 60px;
    color: #f6ca27;
    font-weight: bold;
}

.page_banner_text {
    font-size: 36px;
    color: #fff;
    font-weight: bold;
}

.view_list_title {
    padding: 70px 0 30px 0;
}

.view_list_cn {
    font-size: 27px;
    color: #000000;
    padding-bottom: 5px;
}

.view_list_en {
    font-size: 16px;
    color: #000000;
}

.view_list_wrap {
    padding-bottom: 80px;
}

.view_list_box {
    font-size: 0;
    padding-bottom: 20px;
}

.view_li_box {
    width: 23.5%;
    margin: 0 2% 3% 0;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.view_li_box:nth-child(4n) {
    margin: 0 0 3% 0;
}

.view_li_img a {
    padding-bottom: 75.62%;
    display: block;
}

.view_li_img a img {
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.view_li_title {
    padding: 25px 0 15px 0;
}

.view_li_title a {
    font-size: 16px;
    color: #595757;
    line-height: 24px;
    display: inline-block;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.view_li_line {
    background: #e2e2e2;
    height: 1px;
}

.view_li_text {
    font-size: 12px;
    line-height: 30px;
    color: #717071;
    padding-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.view_li_box:hover .view_li_img a img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.view_li_box:hover .view_li_title a {
    color: #f6ca27;
}

.view_list_page {
    text-align: center;
    font-size: 0;
}

.view_list_page a, .view_list_page span {
    height: 25px;
    line-height: 23px;
    border: 1px solid #efeff0;
    text-align: center;
    padding: 0 10px;
    display: inline-block;
    font-size: 12px;
    margin: 0 4px;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
    background: #fff;
}

.view_list_page a:hover, .view_list_page a.current, .view_list_page span.current {
    background: #f2ce2a;
    border: 1px solid #f2ce2a;
}

.view_list_page span {
    background: #f2ce2a;
    border: 1px solid #f2ce2a;
}

.view_content_wrap {
    padding: 80px 0 60px 0;
}

.view_content_box {
    padding: 0 90px;
}

.view_content_title {
    font-size: 24px;
    color: #717071;
    margin-bottom: 60px;
    font-weight: normal;
    text-align: center;
}

.view_content_title h1, .view_content_title h2, .view_content_title h3, .view_content_title h4, .view_content_title h5, .view_content_title h6 {
    font-weight: normal;
    font-size: inherit;
}

.view_content_read {
    font-size: 14px;
    line-height: 2.14;
    color: #717071;
    padding-bottom: 40px;
}

.view_content_read h1, .view_content_read h2, .view_content_read h3, .view_content_read h4, .view_content_read h5, .view_content_read h6 {
    font-weight: normal;
}

.view_content_read h1 {
    font-size: 1.4em;
}

.view_content_read h2 {
    font-size: 1.2em;
}

.view_content_read h3 {
    font-size: 1.1em;
}

.view_content_read h4 {
    font-size: 1.1em;
}

.view_content_read h5 {
    font-size: 1.1em;
}

.view_content_read h6 {
    font-size: 1.1em;
}

.view_content_read img {
    max-width: 100%;
    margin: 30px 0;
    display: inline-block;
}

.view_content_read p {
    font-size: 14px;
    line-height: 30px;
    color: #717071;
}

.view_content_line {
    background: #c3c2c2;
    height: 1px;
}

.view_content_page {
    padding: 20px 0;
    line-height: 30px;
    font-size: 0;
}

.view_read_page {
    width: 50%;
}

.view_read_prev {
    text-align: left;
}

.view_read_next {
    text-align: right;
}

.view_read_page a, .view_read_page span {
    display: inline-block;
    font-size: 14px;
    color: #717071;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.view_read_page a:hover {
    color: #f6ca27;
}

.ipo_page_swiper, .plan_page_swiper {
    height: -webkit-calc(100vh - 62px);
    height: calc(100vh - 62px);
}

.ipo_page_swiper .swiper-slide:last-child {
    height: 392px;
}

.ipo_box_max {
    font-size: 72px;
    font-weight: bold;
    color: #040000;
}

.ipo_box_min {
    font-size: 60px;
    color: #f6ca27;
}

.ipo_box_text {
    color: #231815;
    text-align: center;
    font-size: 21px;
    line-height: 42px;
}

.ipo_title {
    text-align: center;
    padding-bottom: 30px;
}

.ipo_title span {
    font-size: 26px;
}

.ipo_title span:nth-child(1) {
    color: #f6ca27;
}

.ipo_title span:nth-child(2) {
    color: #fff;
    font-weight: bold;
}

.ipo_text {
    font-size: 30px;
    color: #fff;
    text-align: center;
}

.ipo_list {
    font-size: 0;
    padding-top: 200px;
}

.ipo_li_box {
    width: 25%;
    padding: 0 10px;
}

.ipo_li_title {
    font-size: 36px;
    line-height: 50px;
    font-weight: bold;
    color: #f6ca27;
    text-align: center;
    padding-bottom: 30px;
}

.ipo_li_line {
    background: #c9caca;
    height: 1px;
    width: 100px;
    margin: 0 auto;
}

.page3_ipo_wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.page_ipo_wrap {
    width: 1530px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 31px;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    font-size: 0;
}

.page_ipo_wrap:after {
    content: '';
    display: block;
    height: 0;
    overflow: hidden;
    clear: both;
}

.page_ipo_left {
    width: 46.6%;
    padding-right: 305px;
}

.page_ipo_right {
    width: 53.4%;
    padding-right: 168px;
}

.page3_ipo_title {
    font-size: 87px;
    font-weight: bold;
    padding: 150px 0 0 0;
    color: #040000;
}

.page3_ipo_title span {
    color: #f6ca27;
}

.page3_ipo_text {
    font-size: 16px;
    line-height: 32px;
    color: #595757;
    padding: 10px 0 60px 0;
}

.page3_ipo_line {
    height: 1px;
    background: #847d7c;
}

.page3_ipo_read {
    font-size: 16px;
    line-height: 32px;
    color: #595757;
    padding: 140px 0 0 0;
}

.page_ipo_back {
    position: relative;
    height: 100%;
    background: #f6ca27;
}

.page_ipo_wrap2 {
    width: 1380px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 31px;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    font-size: 0;
}

.page4_ipo_title {
    text-align: center;
}

.page4_ipo_cn {
    font-size: 36px;
    font-weight: bold;
    color: #040000;
    padding-bottom: 15px;
}

.page4_ipo_en {
    font-size: 30px;
    color: #040000;
}

.page4_ipo_list {
    font-size: 0;
    padding: 80px 0 0 0;
}

.page4_ipo_li {
    width: 50%;
    padding-bottom: 60px;
}

.page4_ipo_li:nth-child(2n+1) {
    padding-right: 65px;
}

.page4_ipo_li:nth-child(2n) {
    padding-left: 65px;
}

.page4_li_title {
    font-size: 21px;
    line-height: 50px;
    color: #231815;
    padding-bottom: 5px;
}

.page4_li_line {
    background: #56450d;
    height: 1px;
    width: 350px;
}

.page4_li_text {
    font-size: 16px;
    line-height: 32px;
    color: #56450d;
    padding: 15px 0 0 0;
}

.plan_wrap1 {
    width: 1530px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    margin-top: 31px;
}

.plan_back {
    padding: 70px 80px;
    background: rgba(246, 202, 39, .9);
    font-size: 0;
    margin-bottom: 100px;
}

.plan_span {

}

.plan_span:nth-child(1) {
    width: 60%;
}

.plan_span:nth-child(2) {
    width: 40%;
    text-align: right;
}

.plan_title {
    font-size: 72px;
    font-weight: bold;
    color: #040000;
}

.plan_text {
    font-size: 60px;
    color: #fff;
    margin-bottom: 150px;
}

.plan_line {
    height: 1px;
    width: 100%;
    background: #58451a;
}

.plan_right_text {
    font-size: 26px;
    color: #231815;
    padding: 290px 0 0 0;
}

.plan_wrap2 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1300px;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}

.plan2_max {
    font-size: 100px;
    color: #fff;
    font-weight: bold;
    padding-bottom: 60px;
    line-height: 100px;
}

.plan2_min {
    font-size: 26px;
    color: #fff;
}

.plan2_title {
    font-size: 0;
    text-align: center;
    padding-bottom: 180px;
}

.plan2_center_wrap {
    line-height: 100px;
    position: relative;
    padding: 0 40px;
}

.plan2_center_title {
    font-size: 200px;
    line-height: 80px;
    color: #f6ca27;

}

.plan2_center_title2 {
    font-size: 140px;
    line-height: 100px;
    color: #f6ca27;
}

.plan2_span {
    text-align: center;
}

.plan2_line {
    background: #816b19;
    height: 1px;
}

.plan2_text {
    font-size: 21px;
    line-height: 42px;
    color: #c9caca;
    padding: 100px 0 0 0;
    text-align: center;
}

.plan_wrap3 {
    width: 1400px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    font-size: 0;
}

.plan3_left {
    position: relative;
    margin: 20px 0;
}

.plan3_title {
    font-size: 130px;
    line-height: 166px;
    width: 130px;
    font-weight: bold;
    color: #040000;
}

.plan3_cn {
    font-size: 36px;
    line-height: 100%;
    width: 36px;
    margin-top: 30px;
    color: #040000;
    margin-right: 100px;
    padding-left: 10px;
}

.plan3_en {
    font-size: 15px;
    color: #f6ca27;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    margin-top: 12px;
    position: absolute;
    width: 100%;
    top: 0;
    left: 180px;

}

.plan3_line {
    width: 2px;
    background: #000;
    height: 92%;
    position: absolute;
    right: 0;
    top: 2%;
    margin: 20px 0 0 0;
}

.plan3_center {
    margin: 20px 0;
}

.plan3_text {
    font-size: 59px;
    line-height: 100px;
    font-weight: bold;
    color: #000;
    padding: 0 70px;
}

.plan_list_box {
    text-align: center;
    margin: 150px 0 0 0;
}

.plan_li_box {
    width: 392px;
    height: 392px;
    background: url(../images/y.png) no-repeat;
    position: relative;
    margin: 0 150px 0 0;
}

.plan_li_box:nth-child(3n) {
    margin: 0;
}

.plan_li_box:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

.page_plan_wrap2 {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.plan_li_title {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
}

.plan_li_read {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.plan_li_text {
    font-size: 20px;
    line-height: 43px;
    color: #fff;
    margin: 30px 0 0 0;
}

.sale_wrap {
    position: absolute;
    height: 100%;
    width: 100%;
    background: #f7f8f8;
    top: 0;
    left: 0;
}

.sale_box {
    width: 1240px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 31px;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}

.sale_title {
    font-size: 70px;
    font-weight: bold;
    color: #040000;
    text-align: center;
}

.sale_read {
    font-size: 0;
    margin: 130px 0 0 0;
}

.sale_li {
    width: 280px;
    margin-right: 40px;
    background: #ffffff;
    padding: 120px 0 70px 0;
}

.sale_li:nth-child(4n) {
    margin: 0;
}

.sale_text {
    font-size: 36px;
    text-align: center;
    font-weight: bold;
    color: #595757;
    padding-bottom: 50px;
}

.sale_line {
    width: 70px;
    height: 2px;
    background: #f6ca27;
    margin: 0 auto;
}

.contact_title {
    font-size: 25px;
    color: #000000;
}

.contact_text {
    font-size: 40px;
    line-height: 50px;
    font-weight: bold;
    color: #f7ab00;
}

.contact_max {
    font-size: 60px;
    color: #f6ca27;
    font-weight: bold;
}

.contact_top {
    position: relative;
    padding: 100px 130px 100px 0;
}

.contact_title {
    padding: 0 0 50px 0;
}

.contact_text span {
    font-size: 60px;
    color: #f6ca27;
    padding-left: 40px;
}

.contact_right {
    position: absolute;
    right: 0;
    width: 130px;
    top: 100px;
}

.contact_icon {
    line-height: 36px;
    height: 36px;
    display: block;
    font-size: 0;
    margin-bottom: 20px;
    white-space: nowrap;
    text-align: center;
}

.contact_icon a {
    color: #717071;
    font-size: 30px;
    margin: 0 5px;
}

.contact_icon a:nth-child(2), .contact_icon a:nth-child(3) {
    font-size: 35px;
}

.contact_box .contact_ewm {
    width: 119px;
    margin: 0 auto;
}

.contact_ewm img {
    display: block;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto;
}

.contact_view {
    text-align: center;
    padding-top: 15px;
}

.contact_list_wrap {
    font-size: 0;
}

.contact_list_box {
    width: 33.33%;
    padding: 70px 30px 70px 0;
    border-bottom: 1px solid #c4c4c4;
}

.contact_list_title {
    font-size: 18px;
    color: #000000;
    line-height: 30px;
}

.contact_list_tel, .contact_list_address {
    font-size: 14px;
    line-height: 30px;
    color: #010000;
}

.contact_list_tel a {
    color: #010000;
}

.contact_list_wrap {
    padding-bottom: 110px;
    border-top: 1px solid #c4c4c4;
}

.news_more_wrap {
    width: 248px;
    height: 66px;
    text-align: center;
    line-height: 64px;
    margin: 50px auto 130px;
    border: 1px solid #dedede;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.news_more_wrap:after {
    background: #f6ca27;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    box-sizing: border-box;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.news_more_wrap a {
    display: block;
    font-size: 20px;
    color: #595757;
    font-weight: bold;
    position: relative;
    z-index: 1;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.news_more_wrap:hover:after {
    width: 100%;
}

.news_more_wrap:hover {
    border: 1px solid #f6ca27;
}

.news_more_wrap:hover a {
    color: #fff;
}

.news_page_list {
    background: #efefef;
}

.news_page_top {
    background: #efefef;
}

.news_page_top.no_background {
    background: none;
}

.news_page_top {
    padding: 80px 0 40px 0;
    font-size: 0;
}

.xiongadd01 {
    padding-bottom: 40px;
    color: #777;
    font-size: 24px;
}

.tagsbt {
    padding-bottom: 40px;
}

.tagsbt .lnk {
    margin: 20px 0 0 20px;
    display: inline-block;
}

.tagsbt a {
    padding: 6px 16px;
    background: #e5e5e5;
    color: #999;
    border-radius: 25px;
    font-size: 12px;
}

.tagsbt a:hover {
    background: #dedede;
    color: #666;
}

.news_page_left {
    color: #595757;
    font-size: 12px;
    width: 40%;
    line-height: 30px;
}

.news_page_left_full {
    width: 100%;
}

.news_page_left a {
    color: #595757;
    font-size: 12px;
}

.xgl_shu_cats_right {
    text-align: right;
    font-size: 14px;
    line-height: 30px;
    color: #999;

}

.xgl_shu_cats_right_title {
    margin-right: 0;
    display: inline-block;
    vertical-align: top;
}

.xgl_shu_cats_right_content {
    display: inline;
    vertical-align: top;
}

.xgl_shu_cats_right .lnk {
    color: inherit;
    margin-left: 10px;
}

.news_page_right {
    width: 60%;
    text-align: right;
    line-height: 30px;
}

.news_swiper_read {
    display: inline-block;
    width: 750px;
}

.news_swiper_title {
    font-size: 12px;
    color: #595757;
    padding: 0 20px;
}

.news_swiper_list .swiper-slide a {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #595757;
}

.news_prev_button {
    border: 8px solid;
    border-color: transparent #f6ca27 transparent transparent;
    margin: 7px 10px 0 0;
    outline: none;
    cursor: pointer;
}

.news_next_button {
    border: 8px solid;
    border-color: transparent transparent transparent #f6ca27;
    margin: 7px 0 0 10px;
    outline: none;
    cursor: pointer;
}

.news_prev_button.swiper-button-disabled {
    opacity: .4;
}

.news_next_button.swiper-button-disabled {
    opacity: .4;
}

.news_li_read {
    background: #fff;
    padding: 50px 12px 40px 12px;
    width: 24.25%;
    margin: 0 1% 1% 0;
}

.news_li_read:nth-child(4n) {
    margin: 0 0 1% 0;
}

.news_li_read_no_pad {
    padding: 0;
}

.news_li_read_no_pad_img_wrap {
    positition: relative;
    width: 100%;
}

.news_li_read_no_pad_img {
    display: block;
    width: 100%;
}

.news_li_read_no_pad_inner {
    padding: 20px 20px 40px 20px;
}

.news_li_title {
    line-height: 28px;
    height: 28px;
    margin-bottom: 15px;
}

.news_li_title a {
    font-size: 16px;
    display: block;
    color: #595757;
    overflow: hidden;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
    font-weight: normal;
}

.news_li_read:hover .news_li_title a {
    color: #f6ca27;
}

.news_li_label {
    font-size: 12px;
    line-height: 16px;
    height: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    -ms-box-sizing: content-box;
    -o-box-sizing: content-box;
    box-sizing: content-box;
    padding: 15px 0 15px;
}

.news_li_label, .news_li_label a {
    color: #717071;
}

.news_li_line {
    background: #c4c4c4;
    height: 1px;
}

.news_li_text {
    font-size: 12px;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
    color: #999;
    padding: 10px 0 0 0;
    overflow: hidden;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    -ms-box-sizing: content-box;
    -o-box-sizing: content-box;
    box-sizing: content-box;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news_li_time {
    font-size: 12px;
    line-height: 24px;
    color: #999;
}

.news_center_box {
    font-size: 0;
    padding-bottom: 40px;
}

.view_button_page {
    display: none;
}

.news_center_list {
    padding-bottom: 100px;
}

.case_content_wrap {
}

.case_content_box {
    width: 1360px;
    padding: 55px 0 110px 0;
    margin: 0 auto;
}

.case_content_box .news_page_top {
    padding: 0;
    margin-bottom: 85px;
}

.case_top_box {
    font-size: 0;
}

.case_top_title {
    font-size: 24px;
    font-weight: normal;
    color: #717071;
}

.case_top_title h1, .case_top_title h2, .case_top_title h3, .case_top_title h4, .case_top_title h5, .case_top_title h6 {
    font-weight: normal;
    font-size: inherit;
}

.case_top_box {
    padding-bottom: 70px;
}

.case_top_label {
    font-size: 14px;
    line-height: 28px;
    color: #717071;
    padding: 50px 0 0 0;
}

.case_top_left {
    width: 50%;
}

.case_top_right {
    width: 50%;
}

.case_top_text {
    font-size: 14px;
    line-height: 28px;
    color: #717071;
}

.case_bjq_box {
    font-size: 14px;
    line-height: 2;
    color: #717071;
    margin-bottom: 80px;
    overflow: hidden;
}

.case_bjq_box h1, .case_bjq_box h2, .case_bjq_box h3, .case_bjq_box h4, .case_bjq_box h5, .case_bjq_box h6 {
    font-weight: normal;
}

.case_bjq_box h1 {
    font-size: 1.4em;
}

.case_bjq_box h2 {
    font-size: 1.2em;
}

.case_bjq_box h3 {
    font-size: 1.1em;
}

.case_bjq_box h4 {
    font-size: 1.1em;
}

.case_bjq_box h5 {
    font-size: 1.1em;
}

.case_bjq_box h6 {
    font-size: 1.1em;
}

.case_bjq_box p {
    font-size: 14px;
    line-height: 28px;
    color: #717071;
}

.case_bjq_box img {
    margin: 11px 0;
    max-width: 100%;
    width: auto;
    display: block;
}

.iqw_case_bjq_box img {
    margin: 0;
}

.case_page_box {
    position: relative;
}

.case_read_button {
    width: 108px;
    height: 30px;
    top: 0;
    position: absolute;
    cursor: pointer;
}

.case_prev_button {
    left: 0;
}

.case_prev_button:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 102px;
    height: 1px;
    background: #d2d2d2;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.case_prev_button:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    height: 0;
    width: 0;
    border-bottom: 4px solid transparent;
    border-top: 4px solid transparent;
    border-right: 6px solid #d2d2d2;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

.case_next_button {
    right: 0;
}

.case_next_button:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 102px;
    height: 1px;
    background: #d2d2d2;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.case_next_button:before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    height: 0;
    width: 0;
    border-bottom: 4px solid transparent;
    border-top: 4px solid transparent;
    border-left: 6px solid #d2d2d2;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

.case_center_button {
    width: 30px;
    height: 30px;
    position: relative;
    margin: 0 auto;
    cursor: pointer;
}

.case_center_button a {
    position: relative;
    height: 100%;
    display: block;
    z-index: 1;
}

.case_center_button:after {
    content: "";
    width: 40px;
    height: 1px;
    background: #d2d2d2;
    position: absolute;
    left: -5px;
    top: 14px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.case_center_button:before {
    content: "";
    width: 40px;
    height: 1px;
    background: #d2d2d2;
    position: absolute;
    right: -5px;
    top: 14px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.case_read_button a {
    position: relative;
    z-index: 2;
    display: block;
    height: 100%;
}

.case_content_brand {
    background: #4b3a93;
    padding: 155px 0;
    font-size: 0;
}

.case_brand_left {
    width: 57%;
}

.case_brand_right {
    width: 43%;
    padding-right: 30px;
}

.case_brand_max {
    font-size: 88px;
    color: #fff;
    line-height: 120px;
    letter-spacing: 16px;
}

.case_brand_title {
    font-size: 88px;
    color: #ebc230;
    font-weight: bold;
    line-height: 120px;
    letter-spacing: 16px;
}

.case_brand_min {
    font-size: 22px;
    color: #fff;
    padding: 20px 0 0 0;

}

.case_brand_box {
    width: 1360px;
    margin: 0 auto;
}

.case_brand_border {
    border: 1px solid rgba(255, 255, 255, .6);
    font-size: 0;
    position: relative;
}

.case_border_left {
    width: 45%;
    padding: 40px 0;
}

.case_border_right {
    width: 55%;
    position: absolute;
    height: 100%;
    border-left: 1px solid rgba(255, 255, 255, .6);
}

.case_border_ewm {
    width: 180px;
    margin: 0 auto;
}

.case_border_text {
    font-size: 22px;
    color: #fff;
    text-align: center;
    line-height: 54px;
}

.case_center_box {
    width: 80%;
    position: absolute;
    top: 50%;
    left: 10%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);

}

.case_tel_box:nth-child(1) {
    margin-bottom: 40px;
}

.case_border_title {
    font-size: 22px;
    color: #fff;
    line-height: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, .6);
}

.case_border_phone {
    padding: 5px 0 0 0;
}

.case_border_phone a {
    display: block;
    color: #ebc230;
    font-size: 17px;
    line-height: 28px;
}

.case_read_list {
    margin: 0 auto;
    padding: 80px 55px 0;
}

.case_read_title {
    text-align: center;
    padding-bottom: 70px;
}

.case_read_cn {
    font-size: 35px;
    color: #595757;
    font-weight: normal;
}

.case_read_en {
    font-size: 26px;
    color: #595757;
    padding: 10px 0 10px 0;
}

.case_read_more {
    width: 270px;
    height: 46px;
    text-align: center;
    margin: 80px auto 0;
    position: relative;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.case_read_more a {
    display: block;
    font-size: 14px;
    position: relative;
    z-index: 1;
    line-height: 44px;
    border: 1px solid #dfdfdf;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
    color: #595757;
}

.case_read_more:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
    background: #f6ca27;
}

.case_read_more:hover a {
    color: #fff;
    border: 1px solid #f6ca27;
}

.case_read_more:hover:after {
    width: 100%;
    color: #fff;
}


.news_page_read {
    font-size: 0;
}

.news_read_left {
    width: 70%;
    border-right: 1px solid #c4c4c4;
    padding: 0 100px 60px 0;
}

.news_read_right {
    width: 30%;
    padding-bottom: 60px;
}

.top_border {
    border-top: 1px solid #c4c4c4;
}

.news_read_title {
    font-size: 22px;
    color: #333;
    line-height: 36px;
    text-align: center;
    margin: 40px 0;
}

.news_read_title h1, .news_read_title h2, .news_read_title h3, .news_read_title h4, .news_read_title h5, .news_read_title h6 {
    font-size: inherit;
}

.news_read_bjq {
    font-size: 14px;
    line-height: 1.85;
    color: #717071;
    margin-bottom: 45px;
}

.news_read_bjq strong {
    font-weight: normal;
    color: #666;
}

.news_read_bjq h1 {
    font-size: 1.4em;
}

.news_read_bjq h2 {
    font-size: 1.2em;
}

.news_read_bjq h3 {
    font-size: 1.1em;
}

.news_read_bjq h4 {
    font-size: 1.1em;
}

.news_read_bjq h5 {
    font-size: 1.1em;
}

.news_read_bjq h6 {
    font-size: 1.1em;
}

.news_read_bjq p {
    font-size: 14px;
    line-height: 26px;
    color: #717071;
}

.news_read_bjq img {
    max-width: 100%;
    width: auto;
    margin: 0 auto;
}

.news_right_title {
    font-size: 18px;
    color: #3e3a39;
    line-height: 90px;
    padding-left: 30px;
    border-bottom: 1px solid #c4c4c4;
}

.news_content_list {
    padding: 20px 0 20px 20px;
}

.news_read_time {
    font-size: 0.7272em;
    line-height: 1.5;
    color: #888;

}

.news_read_li {
    font-size: 0;
    line-height: 36px;
}

.news_read_li a {
    font-size: 12px;
    color: #888;
    padding: 0 100px 0 15px;
    display: block;
    position: relative;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.news_read_li a h3 {
    font-weight: normal;
}

.news_read_li a:hover {
    color: #f6ca27;
}

.news_read_li a:hover:after {
    background: #f6ca27;
}

.news_read_li a:after {
    content: "";
    width: 6px;
    height: 6px;
    background: #888;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.news_content_left {
    width: 100%;
}

.news_baidu {
    padding-top: 20px;
    display: none;
}

.news_content_right {
    width: 100px;
    text-align: right;
    position: absolute;
    right: 0;
    top: 0;
}

.news_label_box {
    padding: 20px;
    /*border-bottom: 1px solid #c4c4c4;*/
}

.news_label_box span {
    display: inline-block;
    vertical-align: top;
    line-height: 28px;
    margin-right: 10px;
}

.news_label_box span a {
    display: block;
    font-size: 12px;
    color: #888888;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.news_text_button {
    padding: 20px;
    display: none;
}

.news_button_title {
    font-size: 12px;
    color: #888888;
}

.news_button_q {
    width: 162px;
    height: 44px;
    line-height: 44px;
    font-size: 16px;
    color: #000000;
    margin: 20px 0 0 0;
}

.news_button_q a {
    display: block;
    background: #ebc230;
    text-align: center;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.news_content_line {
    border-bottom: 1px solid #c4c4c4;
}

.news_content_page_after_tips {
    border-top: 1px solid #c4c4c4;
    padding: 25px 0;
    font-size: 13px;
    line-height: 24px;
    color: #717071;
}


.news_content_text {
    line-height: 72px;
    font-size: 13px;
    width: 50%;
    color: #717071;
}

.news_content_text:nth-child(2n) {
    text-align: right;
}

.news_content_text a {
    color: #717071;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.news_content_text a:hover {
    color: #f6ca27;
}

.news_label_box span:hover a {
    color: #f6ca27;
}

.label_wrap_banner {
    padding-top: 62px;
}

.label_box_banner {
    background: #4b3a93;
    padding: 200px 0 50px 0;
}

.label_max_title {
    font-size: 100px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.label_min_title {
    font-size: 35px;
    color: #fff;
    text-align: center;
    padding: 50px 0 180px 0;
}

.label_title {
    color: #595757;
    font-size: 18px;
    display: none;
}

.label_nav_list {
    font-size: 0;
    min-height: 30px;
    text-align: center;

}

.label_title_nav {
    background: #f4f6f9;
    padding: 30px;
    line-height: 30px;
    font-size: 0;
    text-align: center;
}

.label_icon {
    font-size: 30px;
    color: #595757;
    margin: 0 60px;
    display: none;
}

.label_nav_li {
    margin: 0 20px;
}


.label_nav_li a {
    font-size: 18px;
}

.label_list_wrap {
    font-size: 0;
    padding: 30px 0 80px 0;
}

.label_list_wrap span {
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
}

.label_list_wrap span a {
    font-size: 14px;
    display: inline-block;
    vertical-align: top;
    margin: 0 5px;
    color: #3e3a39;
}

.label_list_wrap a {
    font-size: 14px;
    display: inline-block;
    vertical-align: top;
    margin: 0 5px;
    color: #3e3a39;
}

.footer_fixed_wrap {
    opacity: 0;
    position: fixed;
    right: 0;
    bottom: 90px;
    z-index: 999;
    -webkit-transition: opacity .6s linear;
    transition: opacity .6s linear;
}

.footer_fixed_wrap.active {
    opacity: 1;
}

.footer_fixer_li {
    position: relative;
    width: 70px;
    height: 70px;
    background: #f6ca27;
    text-align: center;
    margin-bottom: 1px;
}

.footer_fixer_li a {
    display: block;
    height: 100%;
    position: relative;
    box-shadow: 0 0 3px rgba(255, 255, 255, .8);
}

.footer_fixer_read {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footer_fixed_icon {
    font-size: 26px;
    color: #000000;
}

.footer_fixed_text {
    color: #000000;
    line-height: 22px;
    font-size: 12px;
}

.footer_fixed_icon2 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    font-size: 26px;
    color: #000000;
}

.footer_chs_box {
    display: none;
    position: absolute;
    right: 75px;
    top: 0;
    border: 1px solid #dedede;
    width: 120px;
    height: 120px;
    padding: 2px;
    -webkit-transition: all ease-in 0.3s;
    -moz-transition: all ease-in 0.3s;
    transition: all ease-in 0.3s;
    opacity: 0;
    background: #fff;
    overflow: hidden;
}

.footer_chs_box .img {
    display: block;
    width: 100%;
    height: 100%;
}

.footer_fixer_li:hover .footer_chs_box {
    display: block;
    opacity: 1;
}

.page_people_li {
    width: 23.875%;
    margin: 0 1.5% 2% 0;
}

.page_people_li a {
    display: block;
}

.page_people_li:nth-child(4n) {
    margin: 0 0 2% 0;
}

.page_people_title {
    font-size: 22px;
    text-align: left;
    line-height: 55px;
}

.page_people_title strong {
    margin-right: 10px;
}

.page_news_back {
    background: #f6ca27;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}

.page_news_img {
    display: inline-block;
    height: 100%;
    overflow: hidden;
    font-size: 0;

}

.page_news_img:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 100%;
}

.page_news_img img {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.black_color {
    color: #040000;
}

.page_people_img {
    padding-bottom: 66.48%;
}

.case_banner {
    padding: 62px 0 0 0;
}

.case_banner a {
    display: block;
    padding-bottom: 36.6667%;
}

.people_wrap {
    padding: 180px 0 50px 0;
}

.people_li {
    font-size: 0;
    padding: 0 43% 200px 0;
    position: relative;
}

.people_span:nth-child(1) {
    width: 100%;
    padding: 0 120px 0 0;
}

.people_span:nth-child(2) {
    position: absolute;
    width: 43%;
    right: 0;
    top: 0;
}

.people_li:nth-child(2n) {
    padding: 0 0 200px 43%;
}

.people_li:nth-child(2n) .people_span:nth-child(2) {
    position: absolute;
    width: 43%;
    left: 0;
    top: 0;
}

.people_li:nth-child(2n) .people_span:nth-child(1) {
    width: 100%;
    padding: 0 0 0 120px;
}

.people_img_box {
    width: 100%;

}

.people_li_cn {
    font-size: 42px;
    color: #333333;
}

.people_li_en {
    font-size: 30px;
    color: #333333;
}

.people_li_text {
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    padding: 50px 0 0 0;
}

.shuzhong_wrap {
    padding-top: 144px;
    padding-bottom: 108px;
    background: #4b3a91;
    text-align: center;
}

.shuzhong_wrap .p1 {
    font-size: 80px;
    line-height: 118px;
    color: #fff;
}

.shuzhong_wrap .p1 span {
    font-weight: bold;
    color: #e9c030;
}

.shuzhong_wrap .p2 {
    font-size: 27px;
    line-height: 64px;
    color: #fff;
    margin-bottom: 48px;
}

.shuzhong_wrap .shuzhong_lnk {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    cursor: pointer;
}

.shuzhong_wrap .shuzhong_lnk, .shuzhong_wrap .shuzhong_lnk:hover {
    text-decoration: none;
}

.shuzhong_wrap .shuzhong_lnk img {
    display: block;
    width: 100px;
    height: 100px;
    margin: 0 auto 14px;
}

.shuzhong_wrap .oth {
    border: 1px solid #aea7cd;
    border-radius: 3px;
    font-size: 16px;
    line-height: 26px;
    height: 26px;
    color: #fff;
    padding: 0 19px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    -ms-box-sizing: content-box;
    -o-box-sizing: content-box;
    box-sizing: content-box;
}

.title-prefix {
    display: none !important;
}

.body_content_2022 {
    padding-top: 62px;
}

.news_cities_top {
    padding-top: 116px;
    padding-bottom: 146px;
    background-color: #2900f7;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    font-size: 0;
    letter-spacing: -5px;
}

.news_cities_top .left_box {
    display: inline-block;
    vertical-align: top;
    font-size: 18px;
    line-height: 34px;
    letter-spacing: normal;
    width: 40%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 13.3%;
}

.news_cities_top .left_box img {
    display: block;
    width: 300px;
    height: auto;
}

.news_cities_top .right_box {
    display: inline-block;
    vertical-align: top;
    width: 52%;
    padding-top: 30px;
    font-size: 18px;
    line-height: 34px;
    color: #fff;
    letter-spacing: normal;
}

.news_cities_top .right_box a {
    color: inherit;
}

.news_cities_top .right_box h1 {
    font-size: 30px;
    line-height: 56px;
    font-weight: bold;
    margin-bottom: 16px;
}

.news_cities_top .right_box .para {
    font-size: 16px;
    line-height: 30px;
}

.news_cities_mid {
    padding-top: 100px;
}

.title-text {
    font-size: 30px;
    line-height: 52px;
    text-align: center;
    color: #333;
    font-weight: bold;
}

.news_cities_mid .title-text {
    margin-bottom: 48px;
}

.case_more_box_for_cities {
    position: relative;
    height: 184px;
}

.case_more_box_for_cities .cities_cases_more {
    position: absolute;
    left: 50%;
    bottom: 38px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.cities_cases_more {
    display: inline-block;
    vertical-align: top;
    padding: 0 55px;
    font-size: 18px;
    line-height: 66px;
    cursor: pointer;
    color: #000;
    background: #f6ca27;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);

}

.cities_cases_more:hover {
    background: #000;
    color: #fff;
}

.news_cities_rela {
    padding-top: 99px;
    padding-bottom: 106px;
    margin-bottom: 38px;
}

.news_cities_rela .title-text {
    margin-bottom: 40px;
}

.news_cities_rela_bdy {
    width: 1330px;
    margin: 0 auto;
}

.news_cities_rela_item {
    width: 620px;
    font-size: 14px;
    line-height: 30px;
    color: #666;
}

.news_cities_rela_item_left {
    float: left;
}

.news_cities_rela_item_right {
    float: right;
}

.news_cities_ser {
    padding-top: 188px;
    padding-bottom: 218px;
    background: #f6ca27;
}

.news_cities_ser .title-text {
    margin-bottom: 70px;
}

.news_cities_ser_bdy {
    padding: 0 -webkit-calc((100% - 1170px) / 8);
    padding: 0 calc((100% - 1170px) / 8);
}

.news_cities_ser_item {
    float: left;
    width: 33.333333%;
    text-align: center;
}

.news_cities_ser_cir {
    margin: 0 auto;
    border-radius: 50%;
    width: 390px;
    height: 390px;
    background: #f6ca27 url(../images/uci_circle.png) no-repeat center;
    background-size: cover;
    overflow: hidden;
}

.news_cities_ser_title {
    padding-top: 56px;
    padding-bottom: 14px;
    font-size: 48px;
    line-height: 68px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.news_cities_ser_content {
    font-size: 20px;
    line-height: 42px;
    color: #fff;
    text-align: center;
}

.news_cities_bot {
    padding-top: 136px;
    padding-bottom: 156px;
}

.news_cities_bot_bdy {
    width: 89%;
    margin: 0 auto;
    padding-top: 60px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;

}

.cities_content_label a,
.cities_content_label {
    color: #999;
}

.cityaddtag {
    /*text-align: right;*/
    /*padding: 60px 55px 0 55px;*/
    color: #999
}

.cityaddtag .lnktagadd {
    color: #999;
    margin: 0 5px;
}

.cities_content_box {
    padding: 0 13.541666vw 0 10.41666vw;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 100px;
}

.cities_content_en {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cities_content_img {
    width: 10.83333vw;
}

.cities_content_head {
    width: 31.185%;
    padding-right: 20px;
}

.cities_content_read {
    width: 68.815%;
}

.cities_content_name {
    margin-bottom: 20px;
}

.cities_content_name h1 {
    font-size: 36px;
    line-height: 46px;
    color: #333333;
    font-weight: normal;
}

.cities_content_text {
    font-size: 16px;
    line-height: 32px;
    color: #666666;
    margin-bottom: 30px;
}

.news_cities_bot_item {
    width: 33.3333%;
    padding: 0 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
.news_cities_bot_item:nth-child(1),
.news_cities_bot_item:nth-child(2),
.news_cities_bot_item:nth-child(3) {
    margin-bottom: 30px;
}
.news_cities_bot_item:nth-child(1) .news_cities_bot_item_content,
.news_cities_bot_item:nth-child(2) .news_cities_bot_item_content,
.news_cities_bot_item:nth-child(3) .news_cities_bot_item_content {
    margin-bottom: 30px;
}
.news_cities_bot_item_line {
    box-sizing: border-box;
    border-bottom: 1px dashed #b3b3b3;
}
.news_cities_bot_item:nth-child(1) .news_cities_bot_item_title,
.news_cities_bot_item:nth-child(2) .news_cities_bot_item_title,
.news_cities_bot_item:nth-child(3) .news_cities_bot_item_title {
    font-size: 18px;
    margin-bottom: 10px;
    width: 100%;
}
.news_cities_bot_item:nth-child(1) .news_cities_bot_item_title a,
.news_cities_bot_item:nth-child(2) .news_cities_bot_item_title a,
.news_cities_bot_item:nth-child(3) .news_cities_bot_item_title a {
    width: 100%;
}
.news_cities_bot_item_title {
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 40px;
    height: 40px;
    color: #333;
    font-weight: normal;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.news_cities_bot_item_title a:hover {
    color: #fac034;
}

.news_cities_bot_item_time {
    font-size: 14px;
    line-height: 40px;
    color: #cccccc;
    width: 80px;
}
.news_cities_bot_item_title a {
    color: #000;
    width: calc(100% - 90px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
    transition: all .6s cubic-bezier(.645, .045, .355, 1);
}

.news_cities_bot_item_content {
    font-size: 14px;
    line-height: 26px;
    height: 78px;
    color: #999;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
}

@media screen and (min-width: 1201px) {

    html.fp-enabled,
    .fp-enabled body {
        margin: 0;
        padding: 0;
        overflow: hidden;

        /*Avoid flicker on slides transitions for mobile phones #336 */
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }

    #fullpage {
        display: block;
    }

    #superContainer {
        height: 100%;
        position: relative;

        /* Touch detection for Windows 8 */
        -ms-touch-action: none;

        /* IE 11 on Windows Phone 8.1*/
        touch-action: none;
    }

    .fp-section {
        position: relative;
        -webkit-box-sizing: border-box; /* Safari&lt;=5 Android&lt;=3 */
        -moz-box-sizing: border-box; /* &lt;=28 */
        box-sizing: border-box;
    }

    .fp-slide {
        float: left;
    }

    .fp-slide, .fp-slidesContainer {
        height: 100%;
        display: block;
    }

    .fp-slides {
        z-index: 1;
        height: 100%;
        overflow: hidden;
        position: relative;
        -webkit-transition: all 0.3s ease-out; /* Safari&lt;=6 Android&lt;=4.3 */
        transition: all 0.3s ease-out;
    }

    .fp-section.fp-table, .fp-slide.fp-table {
        display: block;
        width: 100%;
    }

    .fp-tableCell {
        display: block;
        position: relative;
        width: 100%;
        height: -webkit-calc(100vh - 62px);
        height: calc(100vh - 62px);
    }

    .swiper-slide.swiper-slide-foot .fp-tableCell {
        display: block !important;
    }

    .fp-slidesContainer {
        float: left;
        position: relative;
    }

    .fp-controlArrow {
        position: absolute;
        z-index: 4;
        top: 50%;
        cursor: pointer;
        width: 0;
        height: 0;
        border-style: solid;
        margin-top: -38px;
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .fp-controlArrow.fp-prev {
        left: 15px;
        width: 0;
        border-width: 38.5px 34px 38.5px 0;
        border-color: transparent #fff transparent transparent;
    }

    .fp-controlArrow.fp-next {
        right: 15px;
        border-width: 38.5px 0 38.5px 34px;
        border-color: transparent transparent transparent #fff;
    }

    .fp-scrollable {
        overflow: scroll;
    }

    .fp-notransition {
        -webkit-transition: none !important;
        transition: none !important;
    }

    #fp-nav {
        position: fixed;
        z-index: 999;
        text-align: center;
        -webkit-transition: .3s opacity;
        -o-transition: .3s opacity;
        transition: .3s opacity;
        top: 50%;
        padding: 5px;
        border-radius: 9px;
        background: rgba(0, 0, 0, .2);
    }

    #fp-nav.right {
        right: 70px;
    }

    #fp-nav.left {
        left: 70px;
    }

    .fp-slidesNav {
        position: absolute;
        z-index: 4;
        left: 50%;
        opacity: 1;
    }

    .fp-slidesNav.bottom {
        bottom: 70px;
    }

    .fp-slidesNav.top {
        top: 70px;
    }

    #fp-nav ul,
    .fp-slidesNav ul {
        margin: 0;
        padding: 0;
    }

    #fp-nav ul li,
    .fp-slidesNav ul li {
        display: block;
        margin: 8px 0;
        position: relative;
    }

    .fp-slidesNav ul li {
        display: inline-block;
    }

    #fp-nav ul li a,
    .fp-slidesNav ul li a {
        width: 7px;
        height: 7px;
        background: #fff;
        opacity: 1;
        -webkit-border-radius: 4px;
        border-radius: 4px;
        -webkit-transition: all .6s cubic-bezier(.645, .045, .355, 1);
        transition: all .6s cubic-bezier(.645, .045, .355, 1);
        display: block;
    }

    #fp-nav ul li a.active,
    .fp-slidesNav ul li a.active {
        height: 27px;
    }

    #fp-nav ul li a.active span,
    .fp-slidesNav ul li a.active span,
    #fp-nav ul li:hover a.active span,
    .fp-slidesNav ul li:hover a.active span {

    }

    #fp-nav ul li a span,
    .fp-slidesNav ul li a span {

    }

    #fp-nav ul li:hover a span,
    .fp-slidesNav ul li:hover a span {

    }

    #fp-nav ul li .fp-tooltip {
        display: none;
    }

    .fp-auto-height.fp-section,
    .fp-auto-height .fp-slide,
    .fp-auto-height .fp-tableCell {
        height: auto !important;
    }


}

@media screen and (min-width: 1921px) {
    .news_cities_top .left_box {
        padding-left: -webkit-calc(40% - 500px);
        padding-left: calc(40% - 500px);
    }

    .news_cities_top .right_box {
        width: 940px;
    }
}
</pre></body></html>