.module-message-board__wrapper {
    width: 100%;
    min-width: 1180px;
    height: 490px;
    padding: 50px 0 0;
}

.module-message-board__wrapper .message-board--form {
    width: 670px;
    margin: 39px auto 0
}

.module-message-board__wrapper .message-board--form .mb-field--two {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.module-message-board__wrapper .message-board--form .mb-field--two .mb-form--field {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.module-message-board__wrapper .message-board--form .mb-field--two .mb-form--field:first-child {
    margin-right: 8px
}

.module-message-board__wrapper .message-board--form .mb-form--field {
    margin-bottom: 13px
}

.module-message-board__wrapper .message-board--form .mb-form--field .field--label {
    padding: 10px 0;
    font-size: 16px;
    letter-spacing: 1px
}

.module-message-board__wrapper .message-board--form .mb-form--field .field-group {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 20px;
    height: 36px;
    background-color: #fefefe;
    border-radius: 4px;
    border: 1px solid hsla(0, 0%, 60%, .6)
}

.module-message-board__wrapper .message-board--form .mb-form--field .field-group i {
    width: 42px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 22px;
    color: #999;
    border-right: 1px solid #999
}

.module-message-board__wrapper .message-board--form .mb-form--field .field-group input {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 8px;
    height: 30px;
    line-height: 30px;
    border: none;
    color: #555
}

.module-message-board__wrapper .message-board--form .mb-form--field .field-group input:focus {
    outline-offset: 0;
    outline: none
}

.module-message-board__wrapper .message-board--form .mb-form--field .field-group :-moz-placeholder,
.module-message-board__wrapper .message-board--form .mb-form--field .field-group ::-moz-placeholder {
    color: #ccc;
    font-size: 14px
}

.module-message-board__wrapper .message-board--form .mb-form--field .field-group input:-ms-input-placeholder {
    color: #ccc;
    font-size: 14px
}

.module-message-board__wrapper .message-board--form .mb-form--field .field-group input::-webkit-input-placeholder {
    color: #999;
    font-size: 14px
}

.module-message-board__wrapper .message-board--form .mb-form--field .field-group-require:after {
    content: "*";
    position: absolute;
    top: 12px;
    right: 10px;
    color: #ff3434
}

.module-message-board__wrapper .message-board--form .field--active .field--label {
    color: #ffac2b
}

.module-message-board__wrapper .message-board--form .field--active .field-group {
    border-color: #ffac2b
}

.module-message-board__wrapper .message-board--form .field--active .field-group i {
    color: #ffac2b;
    border-right-color: #ffac2b
}

.module-message-board__wrapper .message-board--form .mb-form--submit {
    margin-top: 30px;
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 20px;
    color: #fff;
    border-radius: 4px;
    border: 1px solid #f39a10;
    letter-spacing: 1px;
    background-color: #f39a10;
    cursor: pointer
}

.overHidden {
    padding-right: 17px;
    overflow: hidden
}

.message-box_wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10000;
    font-size: 12px;
    display: none
}

.message-box_wrapper.show {
    display: block
}

.message-box_wrapper:after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 0;
    vertical-align: middle
}

.message-box_wrapper .message-box {
    width: 300px;
    border-radius: 4px;
    background-color: #fff;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    box-shadow: 0 0 5px #c4c4c4
}

.message-box_wrapper .message-box_header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 6px 10px;
    border-bottom: 1px solid #eee
}

.message-box_wrapper .message-box_title {
    color: #333
}

.message-box_wrapper .message-box_close {
    color: #999;
    cursor: pointer
}

.message-box_wrapper .message-box_content {
    padding: 18px 0
}

.message-box_wrapper .message-box_tips {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.message-box_wrapper .message-box_icon {
    font-size: 18px;
    color: #3aa112
}

.message-box_wrapper .message-box_icon.ibenew-icon-faith {
    color: #e24b4b
}

.message-box_wrapper .message-box_tip {
    font-size: 14px;
    color: #222;
    margin-left: 15px;
    font-weight: 700
}

.message-box_wrapper .message-box_msg {
    margin: 12px auto;
    color: #666
}

.message-box_wrapper .message-box_btn {
    margin: 0 auto;
    width: 70px;
    padding: 4px 0;
    text-align: center;
    background-color: #ffa642;
    color: #fff;
    border-radius: 14px;
    cursor: pointer
}

.module-new-retail {
    margin-bottom: 60px;
    width: 1180px;
    margin-left: auto;
    margin-right: auto
}

.module-about-us__wrapper,
.module-case-show__wrapper,
.module-cooperative_wrapper,
.module-new-center__inner {
    padding-bottom: 60px
}

.module-cooperative_wrapper {
    display: none
}

.common-background-color {
    background-color: #f6f7f9
}

.new-common-background-color {
    padding-bottom: 0
}

.white-background-color {
    background-color: #fff
}

.mt50 {
    margin-top: 50px
}

.module-introduction__summary {
    padding: 5px 8px;
    font-size: 14px;
    color: #ff8700;
    border: 1px solid #eee
}

.module-introduction__summary+.module-introduction__summary {
    margin-top: 15px;
}

.module-video__wrapper {
    min-width: 1180px
}

.module-video__wrapper .module-video__list {
    width: 1180px;
    margin: 46px auto 85px;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.module-video__wrapper .module-video__item,
.module-video__wrapper .module-video__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}

.module-video__wrapper .module-video__item {
    width: 260px;
    height: 160px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

.module-video__wrapper .module-video__img {
    max-width: 100%;
    max-height: 100%
}

.module-video__wrapper .module-video-play-icon {
    width: 33px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer
}

.module-new-retail__wrapper {
    margin-top: 18px;
    border-top: 1px solid #eee;
    height: 575px;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.module-new-retail__wrapper,
.module-new-retail__wrapper .module-column-nav__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}

.module-new-retail__wrapper .module-column-nav__wrap {
    width: 250px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.module-new-retail__wrapper .module-column-nav__wrap .module-nav--item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 25px 10px 25px 40px;
    border-bottom: 1px solid #eee;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    position: relative;
    cursor: pointer
}

.module-new-retail__wrapper .module-column-nav__wrap .module-nav--item .active-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #ff8700;
    display: block;
    -webkit-transition: all .18s ease-in-out;
    transition: all .18s ease-in-out
}

.module-new-retail__wrapper .module-column-nav__wrap .module-nav--item.active {
    border-right: none;
}

.module-new-retail__wrapper .module-column-nav__wrap .module-nav--item .icon1 {
    display: block;
}

.module-new-retail__wrapper .module-column-nav__wrap .module-nav--item .icon2 {
    display: none;
}

.module-new-retail__wrapper .module-column-nav__wrap .module-nav--item.active .icon1 {
    display: none;
}

.module-new-retail__wrapper .module-column-nav__wrap .module-nav--item.active .icon2 {
    display: block;
}

.module-new-retail__wrapper .module-column-nav__wrap .module-nav--item.active .module-nav--item-label .desc,
.module-new-retail__wrapper .module-column-nav__wrap .module-nav--item.active .module-nav--item-label .title {
    color: #ff8700
}

.module-new-retail__wrapper .module-column-nav__wrap .module-nav--item.active .active-line {
    width: 4px
}

.module-new-retail__wrapper .module-column-nav__wrap .module-nav--item.active .ibenew-icon {
    color: #ff8700
}

.module-new-retail__wrapper .module-column-nav__wrap .module-nav--item .ibenew-icon {
    font-size: 36px;
    color: #666;
    margin-right: 15px
}

.module-new-retail__wrapper .module-column-nav__wrap .module-nav--item .pic {
    width: 36px;
    height: 36px;
    margin-right: 15px;
}

.module-new-retail__wrapper .module-column-nav__wrap .module-nav--item .module-nav--item-label {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.module-horizontal-nav__wrap .module-nav--item .module-nav--item-label strong.title {
    font-weight: normal;
}

.module-new-retail__wrapper .module-column-nav__wrap .module-nav--item .module-nav--item-label .title {
    font-size: 14px;
    color: #222;
    letter-spacing: 1px;
    font-weight: 400
}

.module-new-retail__wrapper .module-column-nav__wrap .module-nav--item .module-nav--item-label .desc {
    font-size: 12px;
    color: #666
}

.module-new-retail__wrapper .module-introduction__wrap {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: none;
    font-size: 14px;
    letter-spacing: 2px;
    color: #333;
    line-height: 24px;
    margin: 30px auto 0
}

.module-new-retail__wrapper .module-introduction__wrap.active {
    display: block
}

.module-new-retail__wrapper .module-introduction__wrap .module-introduction__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-code {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-code .module-introduction__left {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 30px;
    min-width: 610px;
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-code .module-introduction__left .image-item {
    width: 100%
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-code .module-introduction__right {
    margin-left: 30px;
    width: 242px;
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-code .module-introduction__right.limitWidth {
    /* width: 242px; */
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-code .module-introduction__right .module-introduction__rightContent .desc {
    position: relative;
    margin-bottom: 35px
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-code .module-introduction__right .module-introduction__rightContent .desc:first-child {
    /* margin-top: 50px; */
    margin-bottom: 30px
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-customer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column nowrap;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-customer .module-introduction__down {
    margin-top: 30px;
    width: 780px
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-customer .module-introduction__down .module-introduction__downContent {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    padding-left: 10px
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-customer .module-introduction__down .module-introduction__downContent .desc {
    position: relative;
    line-height: 28px
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-customer .module-introduction__down .module-introduction__downContent .desc:before {
    content: "";
    position: absolute;
    top: 10px;
    left: -10px;
    width: 5px;
    height: 5px;
    background-color: #585858;
    border-radius: 50%
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-customer .module-introduction__down .module-introduction__downContent .desc:nth-child(2) {
    margin-left: 222px
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-customer .module-introduction__down .module-introduction__downContent .desc:last-child {
    margin-left: 46px
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-crm-customer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column nowrap;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-crm-customer .module-introduction__up {
    position: relative
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-crm-customer .module-introduction__up .corner-left,
.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-crm-customer .module-introduction__up .corner-top {
    position: absolute;
    width: 82px;
    left: 0
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-crm-customer .module-introduction__up .corner-left span,
.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-crm-customer .module-introduction__up .corner-top span {
    display: inline-block;
    position: relative
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-crm-customer .module-introduction__up .corner-left span:before,
.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-crm-customer .module-introduction__up .corner-top span:before {
    content: "";
    position: absolute;
    top: 10px;
    left: -10px;
    width: 5px;
    height: 5px;
    background-color: #585858;
    border-radius: 50%
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-crm-customer .module-introduction__up .corner-left {
    width: 115px
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-crm-customer .module-introduction__up .corner-bottom,
.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-crm-customer .module-introduction__up .corner-right {
    position: absolute;
    width: 115px;
    right: 0
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-crm-customer .module-introduction__up .corner-bottom span,
.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-crm-customer .module-introduction__up .corner-right span {
    display: inline-block;
    position: relative;
    text-align: right
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-crm-customer .module-introduction__up .corner-bottom span:after,
.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-crm-customer .module-introduction__up .corner-right span:after {
    content: "";
    position: absolute;
    top: 10px;
    right: -10px;
    width: 5px;
    height: 5px;
    background-color: #585858;
    border-radius: 50%
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-crm-customer .module-introduction__up .corner-bottom {
    text-indent: 10px
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-crm-customer .module-introduction__down {
    margin-top: 30px;
    font-size: 15px
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-crm-customer .module-introduction__down .icon-title {
    display: inline-block;
    background-image: url(/page/static/images/title-top-icon.8fd7de2.png);
    background-position: 50%;
    background-repeat: no-repeat;
    width: 45px;
    height: 45px;
    vertical-align: middle;
    margin-right: 15px
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-big-data,
.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-shop,
.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-wx-shop {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-big-data .module-introduction__left,
.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-shop .module-introduction__left,
.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-wx-shop .module-introduction__left {
    margin-left: 30px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-big-data .module-introduction__left .image-item,
.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-shop .module-introduction__left .image-item,
.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-wx-shop .module-introduction__left .image-item {
    width: 100%
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-big-data .module-introduction__right,
.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-shop .module-introduction__right,
.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-wx-shop .module-introduction__right {
    margin-left: 30px;
    width: 260px
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-big-data .module-introduction__right .module-introduction__rightContent,
.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-shop .module-introduction__right .module-introduction__rightContent,
.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-wx-shop .module-introduction__right .module-introduction__rightContent {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 40px
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-big-data .module-introduction__right .module-introduction__rightContent .icon-title,
.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-shop .module-introduction__right .module-introduction__rightContent .icon-title,
.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-wx-shop .module-introduction__right .module-introduction__rightContent .icon-title {
    display: inline-block;
    background-image: url(/page/static/images/title-top-icon.8fd7de2.png);
    background-position: 50%;
    background-repeat: no-repeat;
    width: 45px;
    height: 45px;
    vertical-align: middle;
    margin-right: 15px
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-big-data .module-introduction__right .module-introduction__rightContent .desc,
.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-shop .module-introduction__right .module-introduction__rightContent .desc,
.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-wx-shop .module-introduction__right .module-introduction__rightContent .desc {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-big-data .module-introduction__right .module-introduction__rightContent .importText,
.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-shop .module-introduction__right .module-introduction__rightContent .importText,
.module-new-retail__wrapper .module-introduction__wrap .intro__wrapv2-wx-shop .module-introduction__right .module-introduction__rightContent .importText {
    color: #ff8700
}

.module-horizontal-nav__wrap {
    min-width: 1180px
}

.module-horizontal-nav__wrap .module-horizontal-nav__inner {
    width: 1180px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: center
}

.module-horizontal-nav__wrap .module-horizontal-nav__inner .module-nav-icon {
    position: relative
}

.module-horizontal-nav__wrap .module-horizontal-nav__inner .module-nav-icon .sub-icon {
    display: inline-block
}

.module-horizontal-nav__wrap .module-horizontal-nav__inner .module-nav-icon .sub-icon-active {
    display: none
}

.module-horizontal-nav__wrap .module-horizontal-nav__inner .module-nav-icon .ibenew-icon-TEXT {
    color: #ccc
}

.module-horizontal-nav__wrap .module-horizontal-nav__inner .module-nav-icon .ibenew-icon-child {
    position: absolute;
    right: 2px;
    bottom: 3px;
    color: #ff8700;
    font-size: 22px
}

.module-horizontal-nav__wrap .module-nav--item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 15px 0 10px;
    width: 180px;
    height: 145px;
    -webkit-transition: background-color .13s ease-in-out;
    transition: background-color .13s ease-in-out;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 2px solid #f6f7f9;
}

.module-horizontal-nav__wrap .module-nav--item.fontSize120 .ibenew-icon {
    font-size: 120px;
    margin-top: -26px
}

.module-horizontal-nav__wrap .module-nav--item.fontSize120 .module-nav--item-label {
    margin-top: 8px
}

.module-horizontal-nav__wrap .module-nav--item.active {
    border-bottom-color: #ff8700;
    background-color: #fff
}

.module-horizontal-nav__wrap .module-nav--item.active .module-nav-icon .sub-icon {
    display: none
}

.module-horizontal-nav__wrap .module-nav--item.active .module-nav-icon .sub-icon-active {
    display: inline-block
}

.module-horizontal-nav__wrap .module-nav--item.active .ibenew-icon,
.module-horizontal-nav__wrap .module-nav--item.active .module-nav--item-label .desc,
.module-horizontal-nav__wrap .module-nav--item.active .module-nav--item-label .title {
    color: #ff8700
}

.module-horizontal-nav__wrap .module-nav--item .ibenew-icon {
    font-size: 64px;
    color: #999;
    -webkit-transition: color .13s ease-in-out;
    transition: color .13s ease-in-out
}

.module-horizontal-nav__wrap .module-nav--item .module-nav--item-label {
    margin-top: 15px
}

.module-horizontal-nav__wrap .module-nav--item .module-nav--item-label .title {
    font-size: 14px;
    color: #222;
    letter-spacing: 1px
}

.module-horizontal-nav__wrap .module-nav--item .module-nav--item-label .desc {
    display: none;
    margin-top: 4px;
    font-size: 12px;
    color: #666;
    letter-spacing: 1px
}

.module-supply-chain-solutions .ibenew-title__wrapper {
    padding-top: 50px;
    padding-bottom: 25px
}

.module-supply-chain-solutions .module-introduction__inner--image {
    text-align: center;
    margin-right: 80px
}

.module-supply-chain-solutions .module-introduction__inner--image img {
    width: 100%
}

.module-supply-chain-solutions .module-introduction__wrap {
    display: none;
    width: 1180px;
    padding-top: 50px;
    margin: 0 auto;
    height: 570px;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.module-supply-chain-solutions .module-introduction__wrap.active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}

.module-supply-chain-solutions .module-introduction__wrap .module-introduction__inner--content {
    position: relative;
    width: 310px
}

.module-supply-chain-solutions .module-introduction__wrap .module-introduction__summary {
    margin-top: 70px;
    letter-spacing: 3px
}

.module-supply-chain-solutions .module-introduction__inner--image {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 730px
}

.module-supply-chain-solutions .module-introduction__inner__title .title {
    color: #222
}

.module-supply-chain-solutions .module-introduction__inner__title .desc {
    text-align: justify;
    margin-top: 18px
}

.module-supply-chain-solutions .module-introduction__inner__action {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    color: #ff8700;
    margin-top: 60px;
    padding-right: 70px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.module-supply-chain-solutions .module-introduction__inner__action .link-item {
    cursor: pointer;
    padding: 8px 6px;
    border: 1px solid #ff8700;
    border-radius: 2px;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.module-supply-chain-solutions .module-introduction__inner__action .link-item:hover {
    background-color: #ff8700;
    color: #fff
}

.module-supply-chain-solutions .module-introduction__inner__action .link-item:hover button {
    color: #fff
}

.module-supply-chain-solutions .module-introduction__inner__action .ibenew-icon {
    font-size: 20px
}

.module-supply-chain-solutions .module-introduction__inner__action button {
    color: #ff8700;
    font-size: 14px;
    letter-spacing: 3px;
    border: 0;
    background-color: transparent;
    outline: none;
    cursor: pointer
}

.module-supply-chain-solutions .module-introduction__dialog__warp {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99998
}

.module-supply-chain-solutions .module-introduction__dialog__warp.active {
    display: block
}

.module-supply-chain-solutions .module-introduction__dialog__warp .module-dialog__model {
    width: 100%;
    height: 100%;
    background-color: hsla(0, 0%, 60%, .1)
}

.module-supply-chain-solutions .module-introduction__dialog__warp .module-introduction__dialog {
    position: absolute;
    width: 300px;
    top: 300px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 4px;
    padding-bottom: 20px;
    z-index: 99999;
    box-shadow: 0 0 8px hsla(0, 0%, 40%, .3)
}

.module-supply-chain-solutions .module-introduction__dialog__warp .module-introduction__dialog .dialog-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #eee
}

.module-supply-chain-solutions .module-introduction__dialog__warp .module-introduction__dialog .dialog-title .tip {
    font-size: 12px;
    line-height: 20px;
    color: #333
}

.module-supply-chain-solutions .module-introduction__dialog__warp .module-introduction__dialog .dialog-title .ibenew-icon-closex {
    color: #555;
    cursor: pointer
}

.module-supply-chain-solutions .module-introduction__dialog__warp .module-introduction__dialog .dialog-content-warp {
    padding: 0 10px
}

.module-supply-chain-solutions .module-introduction__dialog__warp .module-introduction__dialog .dialog-content-warp .dialog-item {
    font-size: 12px;
    padding: 11px 0 0
}

.module-supply-chain-solutions .module-introduction__dialog__warp .module-introduction__dialog .dialog-content-warp .dialog-item .dialog-label {
    line-height: 20px;
    color: #111
}

.module-supply-chain-solutions .module-introduction__dialog__warp .module-introduction__dialog .dialog-content-warp .dialog-item .dialog-label__desc {
    margin-left: 10px;
    line-height: 20px;
    color: #ccc
}

.module-supply-chain-solutions .module-introduction__dialog__warp .module-introduction__dialog .dialog-content-warp .dialog-item .dialog-item__content {
    margin-top: 10px;
    color: #eb984e
}

.module-supply-chain-solutions .module-introduction__dialog__warp .module-introduction__dialog .dialog-content-warp .dialog-item .dialog-item__bottom {
    margin: 11px 20px 0;
    height: 1px;
    background-color: #f2f3f4
}

.module-after-sale_wrapper {
    background-color: #f6f7f9;
}

.module-after-sale_wrapper .after-sale--title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.module-after-sale_wrapper .title-item {
    position: relative;
    color: #999;
    cursor: pointer
}

.module-after-sale_wrapper .title-item .title-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 10px
}

.module-after-sale_wrapper .title-item .title-content .header-title-item-icon,
.module-after-sale_wrapper .title-item .title-content .header-title-item-icon-active {
    margin-right: 15px;
    width: 44px
}

.module-after-sale_wrapper .title-item .title-content .header-title-item-icon {
    display: inline-block
}

.module-after-sale_wrapper .title-item .title-content .header-title-item-icon-active {
    display: none
}

.module-after-sale_wrapper .title-item .title-icon {
    line-height: 39px;
    margin-right: 22px;
    font-size: 44px
}

.module-after-sale_wrapper .title-item .title--chn {
    font-size: 14px;
    color: #222;
    letter-spacing: 1px
}

.module-after-sale_wrapper .title-item .title--eng {
    display: none;
    margin: 5px 0 16px;
    font-size: 12px;
    line-height: 16px
}

.module-after-sale_wrapper .title-item:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 146px;
    border-radius: 2px;
    background-color: #fff
}

.module-after-sale_wrapper .title-item.active .header-title-item-icon {
    display: none
}

.module-after-sale_wrapper .title-item.active .header-title-item-icon-active {
    display: inline-block
}

.module-after-sale_wrapper .title-item.active:after {
    content: "";
    background-color: #ff8700
}

.module-after-sale_wrapper .title-item.active .title,
.module-after-sale_wrapper .title-item.active .title--chn,
.module-after-sale_wrapper .title-item.active .title-icon {
    color: #ff8700
}

.module-after-sale_wrapper .title-item+.title-item {
    margin-left: 106px
}

.module-after-sale_wrapper .after-sale_content--block {
    background-color: #fff
}

.module-after-sale_wrapper .after-sale_content {
    display: none;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    width: 1180px;
    margin: 0 auto
}

.module-after-sale_wrapper .after-sale_content.active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}

.module-after-sale_wrapper .after-sale_sideNav {
    position: relative;
    height: 600px;
    width: 100px;
    overflow: hidden;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.module-after-sale_wrapper .after-sale_sideNav .ibenew-icons {
    font-size: 32px
}

.module-after-sale_wrapper .after-sale_sideNav .after-sale_sideNav-block {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -17px;
    overflow-x: hidden;
    overflow-y: scroll;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.module-after-sale_wrapper .after-sale_sideNav .side_nav-item {
    position: relative;
    min-width: 100px;
    padding: 10px 5px 5px;
    cursor: pointer;
    color: #999;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #f7f8f9
}

.module-after-sale_wrapper .after-sale_sideNav .side_nav-item .side_nav-item-icon {
    display: inline-block
}

.module-after-sale_wrapper .after-sale_sideNav .side_nav-item .side_nav-item-icon-active {
    display: none
}

.module-after-sale_wrapper .after-sale_sideNav .side_nav-item:first-child {
    margin-top: 16px
}

.module-after-sale_wrapper .after-sale_sideNav .side_nav-item.active {
    color: #ff8700
}

.module-after-sale_wrapper .after-sale_sideNav .side_nav-item.active .triangle-wrapper {
    display: block
}

.module-after-sale_wrapper .after-sale_sideNav .side_nav-item.active .side_nav-item-icon {
    display: none
}

.module-after-sale_wrapper .after-sale_sideNav .side_nav-item.active .side_nav-item-icon-active {
    display: inline-block
}

.module-after-sale_wrapper .after-sale_sideNav .side_nav-item.active .title {
    color: #ff8700
}

.module-after-sale_wrapper .after-sale_sideNav .side_nav-item+.side_nav-item {
    margin-top: 20px
}

.module-after-sale_wrapper .after-sale_sideNav .side_nav-item+.side_nav-item.service-item {
    margin-top: 16px
}

.module-after-sale_wrapper .after-sale_sideNav .side_nav-item-inner {
    min-width: 64px;
    text-align: center
}

.module-after-sale_wrapper .after-sale_sideNav .title {
    display: block;
    margin: 9px 0;
    font-size: 14px;
    color: #222;
    letter-spacing: 1px
}

.module-after-sale_wrapper .after-sale_sideNav .triangle-wrapper {
    position: absolute;
    right: -1px;
    top: 2px;
    width: 29px;
    height: 31px;
    overflow: hidden;
    background-color: #fff;
    display: none
}

.module-after-sale_wrapper .after-sale_sideNav .triangle {
    font-size: 32px;
    color: #999
}

.module-after-sale_wrapper .after-sale_sideNav .icon--wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.module-after-sale_wrapper .after-sale_detail-wrapper {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 30px;
    margin-left: 10px;
    padding-top: 40px;
    padding-left: 45px;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.module-after-sale_wrapper .after-sale_detail-wrapper .video-preview__wrapper {
    position: relative;
}

.module-after-sale_wrapper .after-sale_detail-wrapper .video-preview__wrapper .video {
    width: 200px;
}

.module-after-sale_wrapper .after-sale_detail-wrapper .video-preview__wrapper .play-icon {
    display: none;
    position: absolute;
    right: 10px;
    bottom: 31px;
    width: 30px;
    z-index: 2;
}

.module-after-sale_wrapper .after-sale_detail-wrapper .after-sale_detail {
    display: none;
}

.module-after-sale_wrapper .after-sale_detail-wrapper .after-sale_detail.active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}

.module-after-sale_wrapper .after-sale_detail-wrapper .detail-content {
    width: 200px;
    margin-right: 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.module-after-sale_wrapper .after-sale_detail-wrapper .description a {
    font-size: 14px;
    letter-spacing: 2px;
    color: #333;
    line-height: 24px
}

.module-after-sale_wrapper .after-sale_detail-wrapper .para {
    margin-top: 10px
}

.module-after-sale_wrapper .img--wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-top: 5px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.module-after-sale_wrapper .img--wrapper img {
    max-width: 100%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.module-about-us__wrapper {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-image: url(/page/static/images/newsBackground.444a075.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    min-width: 1180px
}

.module-about-us__wrapper .company-title {
    margin-bottom: 30px;
    color: #fc8234;
    font-size: 20px
}

.module-about-us__wrapper .company-description {
    line-height: 20px;
    color: #222;
    font-size: 14px
}

.module-about-us__wrapper .fish-bone {
    margin-top: 54px;
    position: relative
}

.module-about-us__wrapper .fish-bone .arrow,
.module-about-us__wrapper .fish-bone .next-year,
.module-about-us__wrapper .fish-bone .prev-year {
    position: absolute
}

.module-about-us__wrapper .fish-bone .prev-year {
    left: -190px;
    top: 122px
}

.module-about-us__wrapper .fish-bone .arrow {
    left: -40px;
    top: 148px
}

.module-about-us__wrapper .fish-bone .next-year {
    right: -175px;
    top: 122px
}

.module-about-us__wrapper .fish-bone-up,
.module-about-us__wrapper .up-bar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}

.module-about-us__wrapper .up-bar {
    width: 200px
}

.module-about-us__wrapper .up-bar .bar-wrapper .circle {
    height: 8px;
    width: 8px;
    border-radius: 8px;
    background-color: #fc8234
}

.module-about-us__wrapper .up-bar .bar-wrapper .bar {
    height: 154px;
    width: 1px;
    margin-left: 4px;
    background-color: #fc8234
}

.module-about-us__wrapper .up-bar .content {
    text-align: center;
    margin-left: 20px
}

.module-about-us__wrapper .up-bar .content .title {
    font-size: 14px;
    color: #4f4f4f;
    margin-bottom: 10px
}

.module-about-us__wrapper .up-bar .content .description {
    width: 86px;
    font-size: 12px;
    line-height: 20px;
    color: #666
}

.module-about-us__wrapper .up-bar .content .description.description1 {
    width: 115px
}

.module-about-us__wrapper .up-bar .content .description.description2 {
    width: 113px
}

.module-about-us__wrapper .up-bar .content .description.description3 {
    width: 86px
}

.module-about-us__wrapper .up-bar+.up-bar {
    margin-left: 100px
}

.module-about-us__wrapper .fish-bone-down {
    margin-top: 15px;
    margin-left: 165px
}

.module-about-us__wrapper .down-bar,
.module-about-us__wrapper .fish-bone-down {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}

.module-about-us__wrapper .down-bar {
    position: relative;
    width: 200px
}

.module-about-us__wrapper .down-bar .bar-wrapper .circle {
    height: 8px;
    width: 8px;
    border-radius: 8px;
    background-color: #fc8234
}

.module-about-us__wrapper .down-bar .bar-wrapper .bar {
    height: 154px;
    width: 1px;
    margin-left: 4px;
    background-color: #fc8234
}

.module-about-us__wrapper .down-bar .content {
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: center;
    margin-left: 20px;
    margin-top: 70px
}

.module-about-us__wrapper .down-bar .content .title {
    font-size: 14px;
    color: #4f4f4f;
    margin-bottom: 10px
}

.module-about-us__wrapper .down-bar .content .description {
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    color: #666;
    width: 86px
}

.module-about-us__wrapper .down-bar+.down-bar {
    margin-left: 100px
}

.module-about-us__wrapper .a_href-text {
    cursor: pointer
}

.module-about-us__wrapper .a_href-text:hover {
    color: #f39a10;
    text-decoration: underline
}

.module-new-center__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 1180px;
    background-color: #fff;
    background-color: #f6f7f9
}

.module-new-center__wrapper .module-new-center__inner {
    padding-top: 20px;
    background-color: #fff;
}

.module-new-center__wrapper .index-news-overview {
    width: 800px
}

.module-new-center__wrapper .index-news-wrapper {
    width: 1180px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 30px auto 0
}

.module-new-center__wrapper .new-center-item {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 792px;
    height: 165px;
    margin: 0 auto 30px;
    background-color: #fff;
    overflow: hidden;
    border: 1px solid #f29300;
    cursor: pointer
}

.module-new-center__wrapper .new-center-item .content {
    -webkit-transition: all .43s ease-in-out;
    transition: all .43s ease-in-out;
    margin-left: 20px;
    width: 630px
}

.module-new-center__wrapper .img-wrapper {
    width: 200px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.module-new-center__wrapper .img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out
}

.module-new-center__wrapper .img-wrapper img:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05)
}

.module-new-center__wrapper .title a {
    color: #222;
    font-weight: 700
}

.module-new-center__wrapper .description.overflow a {
    position: relative;
    display: inline-block;
    color: #333;
    height: 48px;
    width: 635px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 2
}

.module-new-center__wrapper .create-date {
    margin-top: 10px;
    color: #666;
    font-size: 12px
}

.module-new-center__wrapper .new-triangle {
    position: absolute;
    right: 15px;
    top: 10px;
    width: 32px;
    height: 32px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    z-index: 99
}

.module-new-center__wrapper .new-triangle-background {
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 60px solid #f29300;
    border-left: 60px solid transparent
}

.module-new-center__wrapper .news-button {
    margin-top: 45px;
    margin-left: auto;
    margin-right: auto;
    width: 94px;
    text-align: center;
    border-radius: 2px
}

.module-new-center__wrapper .news-button a {
    padding: 12px 0;
    cursor: pointer;
    color: #333;
    font-size: 14px;
    display: block
}

.module-new-center__wrapper .news-button:hover a {
    color: #f39a10
}

.case-show--wrapper {
    min-width: 1180px
}

.case-show--wrapper .show-content--wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.case-show--wrapper .show-content-imgBox {
    position: relative;
    width: 1060px;
    height: 630px;
    overflow: hidden
}

.case-show--wrapper .show-content-img--wrapper {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 630px;
    -webkit-transition: left 1.5s;
    transition: left 1.5s
}

.case-show--wrapper .show-content-img {
    width: 1060px;
    height: 630px;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover
}

.case-show--wrapper .icon-wrapper {
    cursor: pointer;
    margin: auto 32px
}

.case-show--wrapper .icon-wrapper img {
    height: 52px;
    width: 27px
}

.case-show--wrapper .handlePagination--wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 44px
}

.case-show--wrapper .handlePagination--wrapper .handlePagination-item {
    cursor: pointer
}

.case-show--wrapper .handlePagination--wrapper .handlePagination-item.active .triangle {
    visibility: visible
}

.case-show--wrapper .handlePagination--wrapper .handlePagination-item.active .bar {
    background-color: #fc8234
}

.case-show--wrapper .handlePagination--wrapper .handlePagination-item .bar {
    width: 225px;
    height: 6px;
    background-color: #eee
}

.case-show--wrapper .handlePagination--wrapper .handlePagination-item .triangle {
    margin: 0 auto;
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 8px solid #ff6759;
    visibility: hidden
}

.case-show--wrapper .handlePagination--wrapper .handlePagination-item .img--wrapper {
    margin-top: 25px;
    height: 102px;
    width: 100%;
    background-color: #fff;
    border: 1px solid #c9c9c9;
    box-shadow: 0 0 2px 2px #f2f7f9
}

.case-show--wrapper .handlePagination--wrapper .handlePagination-item .img--wrapper img {
    height: 100%;
    width: 100%
}

.case-show--wrapper .handlePagination--wrapper .handlePagination-item+.handlePagination-item {
    margin-left: 12px
}

/* 企业应用 start */

.application-wrapper {
    width: 1180px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.application-wrapper .app-tabs {
    margin-top: 70px;
    margin-bottom: 28px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

.application-wrapper .app-tab {
    min-width: 116px;
    padding-bottom: 10px;
    border-bottom: 4px solid transparent;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
}

.application-wrapper .app-tab+.app-tab {
    margin-left: 128px;
}

.application-wrapper .app-tab.active {
    border-bottom-color: #ff8700;
}

.application-wrapper .app-tab-icon {
    max-width: 23px;
    min-height: 23px;
    vertical-align: middle;
}

.application-wrapper .app-tab-text {
    margin-left: 15px;
    vertical-align: middle;
}

.application-wrapper .app-content {
    display: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;    
}

.application-wrapper .app-content.active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.application-wrapper .app-card {
    height: 208px;
    padding: 20px 20px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 352px;
    -moz-box-flex: 0;
    -ms-flex: 0 0 352px;
    flex: 0 0 352px;
    border-top: 1px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}
.application-wrapper .app-card:nth-last-child(1),
.application-wrapper .app-card:nth-child(3n) {
    border-right: 1px solid #e8e8e8;
}
.application-wrapper .app-card:nth-child(n+4) {
    border-top: none;
}
/* .application-wrapper .app-card:nth-child(3n) {
    border-right: none;
  }
  .application-wrapper .app-card:nth-last-child(1),
  .application-wrapper .app-card:nth-last-child(2),
  .application-wrapper .app-card:nth-last-child(3) {
    border-bottom: none;
  } */
.application-wrapper .app-tags {
    height: 20px;
    width: 352px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #666666;
    font-size: 12px;
}

.application-wrapper .app-tag {
    padding: 1px 6px;
    display: inline-block;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    text-align: center;
}

.application-wrapper .app-tag+.app-tag {
    margin-left: 8px;
}

.application-wrapper .app-name {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #181818;
}

.application-wrapper .app-des {
    width: 352px;
    height: 66px;
    line-height: 22px;
    font-size: 12px;
    color: #999999;
    /* 超出3行隐藏 */
    display: -webkit-box;
    text-overflow: -o-ellipsis-lastline;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.application-wrapper .app-money {
    margin-top: 16px;
    font-size: 14px;
    color: #ff8700;
}

.application-wrapper .app-now-price {
    font-size: 16px;
    color: #999999;
    text-decoration: line-through;
}

.application-wrapper .app-discount-text {
    margin-left: 8px;
    margin-right: 6px;
}

.application-wrapper .app-real-price {
    font-size: 20px;
}

.application-wrapper .app-uom {
    color: #181818;
}

.application-wrapper .app-more {
    float: right;
    margin-top: 6px;
    color: #ff8700;
}

.application-wrapper .app-more .icon img {
    width: 10px;
}

/* 企业应用 end */