.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

.modal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0;
}

.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: 0.5;
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #eeeeee;
}

.modal-header .close {
    margin-top: -2px;
}

.modal-title {
    margin: 0;
    line-height: 1.42857143;
}

.modal-body {
    position: relative;
    padding: 15px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #eeeeee;
}

.modal-footer .btn + .btn {
    margin-bottom: 0;
    margin-left: 5px;
}

.modal-footer .btn-group .btn + .btn {
    margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
    margin-left: 0;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .modal-sm {
        width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42857143;
    line-break: auto;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    white-space: normal;
    font-size: 12px;
    filter: alpha(opacity=0);
    opacity: 0;
}

.tooltip.in {
    filter: alpha(opacity=90);
    opacity: 0.9;
}

.tooltip.top {
    padding: 5px 0;
    margin-top: -3px;
}

.tooltip.right {
    padding: 0 5px;
    margin-left: 3px;
}

.tooltip.bottom {
    padding: 5px 0;
    margin-top: 3px;
}

.tooltip.left {
    padding: 0 5px;
    margin-left: -3px;
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.top-left .tooltip-arrow {
    right: 5px;
    bottom: 0;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000;
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 4px;
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42857143;
    line-break: auto;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    white-space: normal;
    font-size: 14px;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.popover.top {
    margin-top: -10px;
}

.popover.right {
    margin-left: 10px;
}

.popover.bottom {
    margin-top: 10px;
}

.popover.left {
    margin-left: -10px;
}

.popover > .arrow {
    border-width: 11px;
}

.popover > .arrow,
.popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.popover > .arrow:after {
    content: "";
    border-width: 10px;
}

.popover.top > .arrow {
    bottom: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-color: #999999;
    border-top-color: rgba(0, 0, 0, 0.25);
    border-bottom-width: 0;
}

.popover.top > .arrow:after {
    bottom: 1px;
    margin-left: -10px;
    content: " ";
    border-top-color: #fff;
    border-bottom-width: 0;
}

.popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-right-color: #999999;
    border-right-color: rgba(0, 0, 0, 0.25);
    border-left-width: 0;
}

.popover.right > .arrow:after {
    bottom: -10px;
    left: 1px;
    content: " ";
    border-right-color: #fff;
    border-left-width: 0;
}

.popover.bottom > .arrow {
    top: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999999;
    border-bottom-color: rgba(0, 0, 0, 0.25);
}

.popover.bottom > .arrow:after {
    top: 1px;
    margin-left: -10px;
    content: " ";
    border-top-width: 0;
    border-bottom-color: #fff;
}

.popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999999;
    border-left-color: rgba(0, 0, 0, 0.25);
}

.popover.left > .arrow:after {
    right: 1px;
    bottom: -10px;
    content: " ";
    border-right-width: 0;
    border-left-color: #fff;
}

.popover-title {
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
}

.popover-content {
    padding: 9px 14px;
}

.carousel {
    position: relative;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner > .item {
    position: relative;
    display: none;
    -webkit-transition: 0.6s ease-in-out left;
    -o-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left;
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    line-height: 1;
}

@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        -o-transition: -o-transform 0.6s ease-in-out;
        transition: -webkit-transform 0.6s ease-in-out;
        -o-transition: transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }

    .carousel-inner > .item.next,
    .carousel-inner > .item.active.right {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        left: 0;
    }

    .carousel-inner > .item.prev,
    .carousel-inner > .item.active.left {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        left: 0;
    }

    .carousel-inner > .item.next.left,
    .carousel-inner > .item.prev.right,
    .carousel-inner > .item.active {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        left: 0;
    }
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
    display: block;
}

.carousel-inner > .active {
    left: 0;
}

.carousel-inner > .next,
.carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%;
}

.carousel-inner > .next {
    left: 100%;
}

.carousel-inner > .prev {
    left: -100%;
}

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
    left: 0;
}

.carousel-inner > .active.left {
    left: -100%;
}

.carousel-inner > .active.right {
    left: 100%;
}

.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    background-color: rgba(0, 0, 0, 0);
    filter: alpha(opacity=50);
    opacity: 0.5;
}

.carousel-control.left {
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
    background-repeat: repeat-x;
}

.carousel-control.right {
    right: 0;
    left: auto;
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
    background-repeat: repeat-x;
}

.carousel-control:hover,
.carousel-control:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    filter: alpha(opacity=90);
    opacity: 0.9;
}

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    margin-top: -10px;
}

.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px;
}

.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px;
}

.carousel-control .icon-prev,
.carousel-control .icon-next {
    width: 20px;
    height: 20px;
    font-family: serif;
    line-height: 1;
}

.carousel-control .icon-prev:before {
    content: "\2039";
}

.carousel-control .icon-next:before {
    content: "\203a";
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
}

.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    border-radius: 10px;
}

.carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.carousel-caption .btn {
    text-shadow: none;
}

@media screen and (min-width: 768px) {
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        width: 30px;
        height: 30px;
        margin-top: -10px;
        font-size: 30px;
    }

    .carousel-control .glyphicon-chevron-left,
    .carousel-control .icon-prev {
        margin-left: -10px;
    }

    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-next {
        margin-right: -10px;
    }

    .carousel-caption {
        right: 20%;
        left: 20%;
        padding-bottom: 30px;
    }

    .carousel-indicators {
        bottom: 20px;
    }
}

.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
    display: table;
    content: " ";
}

.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
    clear: both;
}

.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.invisible {
    visibility: hidden;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.hidden {
    display: none !important;
}

.affix {
    position: fixed;
}

@-ms-viewport {
    width: device-width;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
    display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-xs {
        display: block !important;
    }

    table.visible-xs {
        display: table !important;
    }

    tr.visible-xs {
        display: table-row !important;
    }

    th.visible-xs,
    td.visible-xs {
        display: table-cell !important;
    }
}

@media (max-width: 767px) {
    .visible-xs-block {
        display: block !important;
    }
}

@media (max-width: 767px) {
    .visible-xs-inline {
        display: inline !important;
    }
}

@media (max-width: 767px) {
    .visible-xs-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm {
        display: block !important;
    }

    table.visible-sm {
        display: table !important;
    }

    tr.visible-sm {
        display: table-row !important;
    }

    th.visible-sm,
    td.visible-sm {
        display: table-cell !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-block {
        display: block !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline {
        display: inline !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md {
        display: block !important;
    }

    table.visible-md {
        display: table !important;
    }

    tr.visible-md {
        display: table-row !important;
    }

    th.visible-md,
    td.visible-md {
        display: table-cell !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-block {
        display: block !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline {
        display: inline !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg {
        display: block !important;
    }

    table.visible-lg {
        display: table !important;
    }

    tr.visible-lg {
        display: table-row !important;
    }

    th.visible-lg,
    td.visible-lg {
        display: table-cell !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg-block {
        display: block !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline {
        display: inline !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline-block {
        display: inline-block !important;
    }
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
}

.visible-print {
    display: none !important;
}

@media print {
    .visible-print {
        display: block !important;
    }

    table.visible-print {
        display: table !important;
    }

    tr.visible-print {
        display: table-row !important;
    }

    th.visible-print,
    td.visible-print {
        display: table-cell !important;
    }
}

.visible-print-block {
    display: none !important;
}

@media print {
    .visible-print-block {
        display: block !important;
    }
}

.visible-print-inline {
    display: none !important;
}

@media print {
    .visible-print-inline {
        display: inline !important;
    }
}

.visible-print-inline-block {
    display: none !important;
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important;
    }
}

@media print {
    .hidden-print {
        display: none !important;
    }
}

.fade-enter-active, .fade-leave-active {
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.fade-enter, .fade-leave-to {
    opacity: 0
}

.slide-enter, .slide-leave-to {
    height: 0;
    opacity: 0
}

.slide-enter-to, .slide-leave {
    height: 300px;
    opacity: 1
}

.slide-enter-active {
    -webkit-animation: slideIn .4s ease;
    animation: slideIn .4s ease
}

.slide-leave-active {
    -webkit-animation: slideOut .4s ease;
    animation: slideOut .4s ease
}

@-webkit-keyframes slideIn {
    0% {
        height: 0;
        opacity: 0
    }
    100% {
        height: 300px;
        opacity: 1
    }
}

@keyframes slideIn {
    0% {
        height: 0;
        opacity: 0
    }
    100% {
        height: 300px;
        opacity: 1
    }
}

@-webkit-keyframes slideOut {
    0% {
        height: 300px;
        opacity: 1
    }
    100% {
        opacity: 0;
        height: 0
    }
}

@keyframes slideOut {
    0% {
        height: 300px;
        opacity: 1
    }
    100% {
        opacity: 0;
        height: 0
    }
}

@-webkit-keyframes ripple {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    40% {
        opacity: 0.8
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        text-shadow: none;
        font-size: 14px;
        color: #128bed
    }
    80% {
        font-size: 14px;
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        color: #128bed;
        font-size: 14px
    }
}

@keyframes ripple {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    40% {
        opacity: 0.8
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        text-shadow: none;
        font-size: 14px;
        color: #128bed
    }
    80% {
        font-size: 14px;
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        color: #128bed;
        font-size: 14px
    }
}

@-webkit-keyframes rscale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    40% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }
    60% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    80% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes rscale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    40% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }
    60% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    80% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.npanel {
    background: #fff;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: solid 1px #eee;
    margin-bottom: 15px
}

.npanel:before, .npanel-heading:before, .npanel-body:before {
    display: table;
    content: " "
}

.npanel:after, .npanel-heading:after, .npanel-body:after {
    clear: both;
    display: table;
    content: " "
}

.npanel-body {
    padding: 20px 15px
}

.npanel-body em {
    color: #FD485E;
    font-style: normal
}

.p15 .npanel-body {
    padding: 15px
}

.npanel-heading {
    color: #333;
    border-bottom: none;
    background: #fcfcfc
}

.npanel-heading.white-bg {
    background-color: #fff
}

.npanel-heading.b-b {
    border-bottom: solid 1px #eee
}

.npanel-heading h4 {
    margin-top: 0px;
    margin-bottom: 0px;
    line-height: 32px;
    font-weight: normal;
    display: inline-block;
    line-height: 50px;
    margin-left: 15px;
    font-size: 15px
}

.npanel-heading h4 small {
    font-size: 12px;
    color: #999;
    font-weight: normal;
    margin-left: 5px
}

.npanel-heading .pull-right {
    line-height: 48px;
    margin-right: 15px
}

.npanel-heading .tdrop {
    position: relative;
    display: inline-block
}

.npanel-heading .tdrop .btn {
    border: solid 1px #D6D6D6;
    min-width: 69px;
    background: #fff;
    color: #333
}

.npanel-heading .tdrop .btn:active, .npanel-heading .tdrop .btn.active {
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.npanel-heading .tdrop .dropdown-menu {
    margin-top: -5px;
    margin-left: 5px;
    border-radius: 0px;
    max-height: 300px;
    overflow: auto;
    z-index: 10;
    background: #fff
}

.npanel-heading + .npanel-body {
    border-top: solid 1px #eee
}

.npanel-heading .btn {
    font-size: 12px;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: 5px;
    line-height: 18px;
    position: relative;
    min-width: 82px
}

.npanel-heading .btn-default {
    color: #666
}

.npanel-heading .btn:active {
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    -webkit-box-shadow: none;
    box-shadow: none
}

.npanel-heading .btn-none {
    line-height: 18px;
    font-size: 14px;
    padding: 6px 12px;
    margin-left: 5px;
    display: inline-block;
    position: relative
}

.npanel-heading .ant-btn {
    padding-left: 9px;
    padding-right: 9px;
    position: relative;
    top: 1px;
    margin-left: 5px
}

.npanel-heading .form {
    float: left;
    margin-right: 10px;
    margin-top: 9px
}

.npanel-heading .form-group {
    margin-bottom: 0px;
    position: relative
}

.npanel-heading input.form-control {
    font-size: 14px;
    height: 32px;
    width: 220px;
    padding-right: 32px
}

.npanel-heading .tinput {
    float: right;
    position: relative;
    margin-top: 9px
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .npanel-heading .tinput {
        margin-top: 10px
    }
}

.npanel-heading .tinput .aicon {
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 6px;
    cursor: pointer
}

.npanel-heading .tab {
    padding: 0px 0px
}

.npanel-heading .tab-item {
    color: #666;
    float: left;
    margin-bottom: 0px;
    margin-top: 0px;
    margin-left: 15px;
    margin-right: 15px;
    padding-left: 0px;
    padding-right: 0px;
    line-height: 47px;
    cursor: pointer;
    font-size: 15px;
    position: relative;
    padding-top: 1px
}

.npanel-heading .tab-item.active {
    color: #128bed;
    border-bottom: solid 2px #128bed
}

.npanel-heading .tab-item.disabled {
    color: #999;
    cursor: not-allowed
}

.npanel-heading .tab-item .new {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FD485E;
    right: -8px;
    top: 10px
}

.npanel-heading .tab-item .ntag.vip {
    position: absolute;
    right: -75px;
    top: 14px
}

.npanel-heading .icon-wenhao {
    margin-top: 6px;
    top: 4px
}

.npanel-heading .right-tooltip + .tooltip {
    right: 15px;
    width: 480px;
    left: auto !important
}

.npanel-heading .i-switch {
    position: relative;
    top: 5px
}

.npanel-heading .i-switch:before {
    content: " "
}

.npanel-heading .tooltip {
    max-width: 700px
}

.npanel .list-group {
    margin-bottom: 0px
}

.npanel .list-group.scroll {
    max-height: 251px;
    overflow-y: auto
}

.npanel .list-group.scroll::-webkit-scrollbar {
    width: 4px;
    height: 4px
}

.npanel .list-group.scroll::-webkit-scrollbar-thumb {
    border-width: 0px
}

.npanel > .list-group .list-group-item {
    border-radius: 0;
    border-width: 1px 0;
    border-color: #f3f5f7;
    color: #333
}

.npanel > .list-group .list-group-item:first-child {
    border-top: 0px
}

.npanel > .list-group .list-group-item:last-child {
    border-bottom: 0px
}

.npanel > .list-group-nhover a.list-group-item:hover {
    background: #f1f9fe
}

.npanel > .list-group-nhover a.list-group-item:hover .title {
    color: #128bed
}

.ndetail {
    padding: 20px
}

.ndetail .title {
    font-size: 26px;
    color: #333;
    line-height: 1.2;
    margin-bottom: 25px
}

.ndetail .tags {
    margin-top: -10px;
    margin-bottom: 25px
}

.ndetail .rline {
    color: #999
}

.ndetail .rline .f {
    margin-right: 25px;
    display: inline-block
}

.ndetail .rline .val {
    color: #666
}

.ndetail .rline .flink {
    color: #999
}

.ndetail .rline .flink:hover {
    color: #128bed
}

.ndetail .rline .flink.disabled {
    cursor: not-allowed;
    color: #aaa !important
}

.ndetail .view:before {
    content: " ";
    position: absolute;
    right: 0px;
    left: 0px;
    height: 1px;
    top: 0px;
    background: #eee
}

.ndetail .ptitle-line {
    position: relative;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px
}

.ndetail .ptitle-line .t {
    background: #fff;
    padding-right: 15px
}

.ndetail .ptitle-line:before {
    content: " ";
    display: block;
    position: absolute;
    width: 6px;
    height: 24px;
    background: #128bed;
    left: -20px
}

.ndetail .ptitle-line:after {
    content: " ";
    position: absolute;
    right: 0px;
    left: 80px;
    height: 1px;
    top: 12px;
    background: #eee
}

.ndetail .ftable-content {
    margin-left: -20px;
    margin-right: -20px
}

.ndetail .ftable-content table td {
    border: none
}

.pills {
    width: 100%;
    padding-left: 71px
}

.pills:not(:last-child), .app-cascader-simple:not(:last-child) {
    margin-bottom: 10px
}

.pills.dline {
    margin-bottom: 15px;
    margin-top: 0px
}

.pills.noheader {
    padding-left: 0px
}

.pills-header {
    width: 71px;
    padding: 3px 0px;
    margin: 3px 0px 0px 0px;
    margin-left: -71px;
    float: left;
    color: #999;
    font-size: 14px
}

.pills-after {
    float: left
}

.pills-item {
    float: left;
    padding: 3px 10px;
    margin: 3px 3px;
    display: block;
    color: #222;
    border-radius: 2px
}

a.pills-item {
    cursor: pointer;
    -webkit-transition: none;
    -o-transition: none;
    transition: none
}

.pills-more {
    float: right;
    padding: 0px 6px;
    margin: 3px 3px;
    display: block;
    margin-right: -70px;
    color: #979797
}

.pills-item .caret {
    color: #128bed
}

.pills-item.active {
    background: #128bed;
    color: #fff
}

.pills-item:not([data-value=x]):hover {
    background: #128bed;
    color: #fff;
    border-radius: 2px
}

.pills-item.active .caret {
    color: #fff
}

.pills-item:hover .text-gray, .pills-item.active .text-gray {
    color: #fff
}

.pills:after {
    content: "\0020";
    display: block;
    height: 0;
    clear: both
}

.pills .multi-check .pills-item {
    padding-left: 0px;
    padding-right: 0px;
    margin-right: 20px
}

.pills .multi-check .pills-item.active {
    background: none;
    color: #333
}

.pills .multi-check .pills-item:hover {
    background: none;
    color: #333
}

.pills .multi-check .ltext > input {
    margin-right: 5px;
    font-size: 24px;
    position: relative;
    top: 0px
}

.pills .multi-check [data-value=x] > span {
    position: relative;
    top: -1px
}

.pills .multi-check .pills-item .caret {
    color: #333
}

.pills .a .active {
    color: #128bed
}

.pills-after dd {
    display: inline-block;
    margin-bottom: 15px;
    margin-right: 25px
}

.pills-after .custom {
    position: relative;
    cursor: pointer;
    top: 2px
}

.pills-after .custom .dropdown-menu {
    margin-top: 5px;
    min-width: 120px
}

.pills-after .custom .x {
    display: inline-block
}

.pills-after .custom a:hover, .pills-after .custom a.hover {
    background-color: #eee;
    color: #333
}

.pills-after .fitem {
    float: left;
    padding: 3px 10px;
    margin: 3px 3px;
    display: block;
    color: #222;
    border-radius: 2px;
    color: #333
}

.pills-after .fcheck {
    font-weight: normal;
    margin-bottom: 0px
}

.pills-after .fcheck > input {
    float: left;
    margin-top: 4px;
    margin-right: 6px
}

.pills-title {
    padding-left: 0px
}

.pills-title .pills-item {
    padding: 0px;
    margin-left: 0px;
    margin-right: 20px;
    font-size: 16px;
    color: #333
}

.pills .drop-hover.custom.a .dropdown-menu {
    display: block;
    visibility: hidden;
    -webkit-transition: all 0s linear 0.2s;
    -o-transition: all 0s linear 0.2s;
    transition: all 0s linear 0.2s
}

.pills .drop-hover.custom.a:hover .dropdown-menu {
    visibility: visible
}

.pills.hfoot {
    padding-right: 80px
}

.pills.hfoot .pills-foot {
    margin-right: -80px;
    text-align: right
}

.pills.hmore {
    overflow: hidden;
    height: 31px
}

.pills .hmore-btn {
    line-height: 31px;
    color: #979797;
    font-size: 14px;
    cursor: pointer
}

.pills .pf-btn {
    line-height: 31px;
    font-size: 14px;
    cursor: pointer
}

.pills .hmore-btn:hover, .pills .pf-btn:hover {
    color: #128bed
}

.hchoosen {
    padding-bottom: 10px;
    border-bottom: 1px dashed #ccc;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 10px
}

.hchoosen .clearterm {
    float: right;
    color: #128bed;
    margin-top: 3px;
    cursor: pointer
}

.hchoosen .pills-header {
    color: #333;
    font-size: 14px
}

.hchoosen .pills-item {
    color: #999;
    border: solid 1px #D6D6D6;
    font-size: 12px;
    max-width: 250px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    position: relative;
    margin-right: 10px
}

.hchoosen .pills-item:hover {
    color: #999 !important;
    border: solid 1px #D6D6D6;
    background: #fff
}

.hchoosen.click .pills-item {
    color: #128bed !important;
    background: #fff !important;
    border: solid 1px #128bed;
    padding-right: 20px
}

.hchoosen.click .pills-item:hover {
    color: #fff !important;
    background: #128bed !important
}

.hchoosen.click .pills-item:after {
    content: "X";
    position: absolute;
    right: 7px;
    top: 3px
}

.hchoosen.view-result {
    border: solid 1px #eee;
    margin-bottom: 15px
}

.hchoosen.view-result .pills {
    margin-bottom: 0px;
    margin-top: -5px
}

.npanel.hchoosen {
    border-bottom: solid 1px #eee
}

.ptable {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px
}

.ptable th {
    text-align: left;
    background: #F2F9FC;
    border-collapse: collapse;
    padding: 12px 5px 12px 12px;
    font-weight: normal;
    color: #444;
    line-height: 19px
}

.ptable th:not(:last-child) {
    border-right: #F2F9FC 1px solid
}

.ptable th.tl {
    text-align: left
}

.ptable th.tr {
    text-align: right
}

.ptable tr:hover {
    background: #f6f6f6
}

.ptable.nohover tr:hover {
    background: transparent
}

.ptable.hline td:not(:last-child) {
    border-right: #eee 1px solid
}

.ptable.hline td, .ptable.hline th {
    border: #eee 1px solid
}

.ptable.hline th:not(:last-child) {
    border-right: #F2F9FC 1px solid
}

.ptable.pl th, .ptable.pl td {
    padding-left: 30px
}

.ptable td {
    padding: 12px 5px 12px 12px;
    border-top: #eee 1px solid;
    border-bottom: #eee 1px solid;
    word-break: break-all;
    font-size: 14px;
    line-height: 19px;
    color: #222
}

.ptable tr:not(:first-child) td {
    border-top: none
}

.ptable td:not(:last-child) {
    border-right: transparent 1px solid
}

.ptable td.tb {
    background: #F2F9FC
}

.ptable img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover
}

.ptable td > a {
    color: #128bed
}

.ptable td .line-clamp a {
    color: #128bed
}

.ptable td .line-clamp-btn {
    margin-top: -19px;
    right: 2px
}

.ptable tr:hover .line-clamp-btn {
    background: #f6f6f6
}

.ptable .ntag {
    margin-top: 4px;
    margin-bottom: 4px
}

.ptable-caption {
    padding: 0px;
    margin-bottom: 10px;
    padding-top: 10px
}

.ptable-caption .title {
    position: relative;
    font-size: 16px;
    color: #222;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 0px;
    display: inline-block;
    line-height: 26px;
    padding-left: 8px
}

.ptable-caption .title:before {
    content: " ";
    position: absolute;
    left: 0px;
    top: 5px;
    width: 2px;
    height: 16px;
    background: #128bed
}

.ptable-caption .subtitle {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 0px;
    display: inline
}

.ptable-caption .tbadge {
    font-size: 16px;
    font-weight: 600;
    color: #333
}

.ptable-caption .tbadger {
    font-size: 16px;
    font-weight: 600;
    color: #fd485e
}

.ptable-caption .thist {
    font-size: 14px;
    color: #999;
    margin-left: 3px
}

.ptable-caption .thist > a {
    color: #F5A623;
    font-size: 14px
}

.ptable-caption .watermark {
    width: 92px;
    height: 26px;
    float: right;
    background-image: url(../../images/watermark.png?t=1);
    margin-left: 20px;
    background-size: 92px 26px;
    position: relative;
    top: -2px
}

.ptable .checktd {
    position: relative;
    top: 1px;
    margin-right: 5px
}

.pform .form-group {
    margin-bottom: 20px
}

.pform .col-pre {
    float: left;
    width: 120px;
    margin-left: 20px;
    font-size: 15px;
    color: #666;
    line-height: 34px;
    margin-bottom: 0px
}

.pform label.col-pre {
    font-weight: normal;
    color: #666
}

.pform .col-after {
    float: left;
    width: 442px;
    padding-right: 15px
}

.pform .redstar {
    color: #128bed
}

.nmodal .pform .col-after {
    width: 400px
}

.pform .col-all {
    padding-left: 20px;
    padding-right: 20px
}

.pform .form-control {
    height: 34px;
    font-size: 14px;
    color: #666
}

.pform .form-control.text-gray {
    color: #999
}

.pform select.form-control {
    -webkit-appearance: none
}

.pform textarea.form-control {
    height: auto;
    resize: none
}

.pform .col-btn {
    margin-top: 20px;
    margin-left: 470px
}

.pform .btn {
    min-width: 98px;
    font-size: 14px
}

.pform .fileinput > .noimg > .btn {
    width: 78px;
    border: solid 1px #128bed;
    color: #128bed !important;
    font-size: 12px;
    padding: 6px
}

.pform .fileinput > .noimg > span {
    color: #666;
    margin-left: 7px
}

.pform .fileinput > .noimg > input {
    display: none;
    position: absolute
}

.pform .fileinput > .img {
    width: 100px;
    height: 100px;
    display: table-cell;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    display: none;
    border-radius: 6px;
    overflow: hidden
}

.pform .fileinput > .img > img {
    width: 100px;
    height: auto;
    max-height: 100px;
    -o-object-fit: contain;
    object-fit: contain
}

.pform .fileinput > .img > span {
    height: 100px;
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 6px;
    color: #fff;
    background: #000;
    opacity: 0;
    font-size: 25px;
    padding: 15px;
    text-align: center;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    line-height: 1.4
}

.pform .fileinput > .img:hover > span {
    opacity: .5
}

.pform .fileinput > .backgroud {
    width: 427px;
    height: 72px;
    display: table-cell;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    border-radius: 2px;
    overflow: hidden
}

.pform .fileinput > .backgroud > img {
    width: 100%;
    height: auto;
    max-height: 72px;
    -o-object-fit: cover;
    object-fit: cover
}

.pform .fileinput > .backgroud > span {
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 6px;
    color: #fff;
    background: #000;
    opacity: 0;
    font-size: 16px;
    padding: 15px;
    text-align: center;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    line-height: 34px
}

.pform .fileinput > .backgroud:hover > span {
    opacity: .5
}

.pform .pimg {
    width: 150px;
    height: 150px;
    border: solid 1px #eee;
    margin-bottom: 6px;
    text-align: center
}

.pform .pimg > img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 6px
}

.pform .input-icon {
    position: relative
}

.pform .input-icon input {
    padding-left: 36px
}

.pform .ts {
    color: #999999;
    margin-top: 8px;
    display: block;
    line-height: 1.3
}

.pform .col-after label.text {
    line-height: 32px
}

.pform-uploadimg {
    position: absolute;
    width: 120px;
    height: 100px;
    z-index: 2;
    display: none
}

.pform-uploadimg input {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%
}

.pform .static-text {
    font-size: 14px;
    color: #333;
    margin-top: 0px;
    margin-bottom: 5px;
    line-height: 34px
}

.pform .tab {
    margin: auto;
    width: 380px;
    margin-bottom: 20px
}

.pform .tab .tab-item {
    display: block;
    float: left;
    padding: 10px 15px;
    margin-left: 30px;
    margin-right: 30px;
    font-size: 18px;
    position: relative
}

.pform .tab .tab-item.active {
    border-bottom: solid 2px #128bed
}

.pform .dropdown-menu {
    margin-top: 34px;
    width: 427px
}

.pform .dropdown-menu li:hover {
    background: #F5F9FF
}

.pform .vcode-btn {
    width: 86px;
    text-align: center;
    font-size: 12px;
    position: absolute;
    right: 4px;
    top: 7px;
    text-align: center;
    line-height: 20px;
    margin-right: 15px
}

.pform .vcode-btn.disabled {
    color: #999 !important;
    cursor: default
}

.pform .vcode-btn:after {
    content: " ";
    position: absolute;
    width: 1px;
    height: 23px;
    background: #d8d8d8;
    right: 90px;
    top: 2px;
    margin-top: -6px
}

.pform .modal-body {
    padding: 15px
}

.pform .btn-none {
    color: #128bed;
    line-height: 38px;
    display: inline-block
}

.pform .text-group {
    margin-left: -15px;
    margin-bottom: 10px
}

.pform .text-group .col-pre {
    width: 90px;
    color: #333;
    font-size: 14px
}

.pform .text-group .col-after label.text {
    font-size: 14px;
    line-height: 34px;
    margin-bottom: 0px;
    color: #666
}

.pform.errors-inner .col-after {
    position: relative
}

.pform.errors-inner .errors {
    position: absolute;
    right: 25px
}

.ntable {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px
}

.ntable th {
    text-align: center;
    background: #f2f9fc;
    border: #e4eef6 1px solid;
    border-collapse: collapse;
    padding: 12px 2px 12px 2px;
    font-weight: normal;
    color: #333;
    line-height: 19px;
    white-space: nowrap
}

.ntable th.text-left {
    text-align: left;
    padding-left: 10px
}

.ntable th.text-right {
    text-align: right;
    padding-right: 10px
}

.ntable th:not(:last-child) {
    border-right: #f2f9fc 1px solid
}

.ntable th.tl {
    text-align: left
}

.ntable th.tr {
    text-align: right
}

.ntable th .aicon {
    position: relative;
    top: 1px
}

.ntable td {
    padding: 10px 10px 11px 10px;
    border: #e4eef6 1px solid;
    word-break: break-all;
    font-size: 14px;
    line-height: 1.6;
    color: #222;
    word-wrap: break-word
}

.ntable td.hlh {
    line-height: 1.8
}

.ntable td.vip-blur {
    -webkit-filter: blur(4px);
    filter: blur(4px);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ntable td.keep-all {
    word-break: keep-all
}

.ntable.npth th {
    padding-left: 0px;
    padding-right: 0px
}

.ntable.nptd td {
    padding-left: 6px;
    padding-right: 6px
}

.ntable.nptd td .line-clamp-btn {
    right: 6px
}

.ntable .filter-blur {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer
}

.ntable td.npv {
    padding-top: 0px;
    padding-bottom: 0px
}

.ntable td .split-line:not(:last-child) {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px
}

.ntable td .split-line:not(:last-child):after {
    content: " ";
    position: absolute;
    height: 1px;
    background: #e4eef6;
    left: -10px;
    right: -10px;
    bottom: 0px
}

.ntable td .aicon-zhushi {
    position: relative;
    margin-left: 3px;
    top: 1px;
    font-size: 16px
}

.ntable .tb {
    background: #f2f9fc;
    padding-right: 6px
}

.ntable .tx {
    text-align: center;
    width: 56px;
    padding-left: 0px;
    padding-right: 0px
}

.ntable .ti {
    text-align: left;
    padding-left: 32px
}

.ntable .ti i {
    position: absolute;
    margin-left: -26px;
    margin-top: -3px
}

.ntable em {
    color: #e33244;
    font-style: normal
}

.ntable-ne em {
    color: #222
}

.ntable a {
    color: #128bed
}

.ntable a:hover {
    color: #007add
}

.ntable a.text-gray {
    color: #999
}

.ntable a.text-gray:hover {
    color: #007add
}

.ntable a.text-dk {
    color: #333
}

.ntable .tblank {
    margin-top: 15px
}

.ntable .tblank > th {
    border: none;
    background: none
}

.ntable .tsub > th {
    border: #e4eef6 1px solid
}

.ntable tr .ch {
    cursor: pointer
}

.ntable tr:hover .ch, .ntable tr.active .ch {
    color: #128bed;
    background: #f2f9fc
}

.ntable .btn-touzi {
    color: #ff722d !important;
    float: right;
    font-size: 14px
}

.ntable .blank {
    border: none;
    padding: 5px
}

.ntable .explain-row {
    background: #fff9ed
}

.ntable .explain-row.own {
    display: none
}

.ntable .explain-row .text-gray {
    color: #999 !important
}

.ntable .explain-row .simg {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-left: 5px
}

.ntable .explain-row .limg {
    max-width: 300px;
    -o-object-fit: contain;
    object-fit: contain
}

.ntable .tips {
    color: #999
}

.ntable .sec-partner {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 50px;
    margin-top: 10px;
    z-index: 1
}

.ntable .sec-partner .sec-partner-L-line {
    position: absolute;
    left: 20px;
    bottom: 25px;
    width: 32px;
    height: 65px;
    border-left: 1px solid #D6D6D6;
    border-bottom: 1px solid #D6D6D6;
    float: left;
    z-index: -1
}

.ntable .sec-partner .sec-partner-content {
    float: right;
    width: calc(100% - 50px);
    height: 50px;
    background: #FAFAFA;
    border-left: 5px solid #128BED;
    padding: 3px 0 5px 10px
}

.ntable .sec-partner .sec-partner-content .sec-partner-name {
    font-size: 12px
}

.ntable .sec-partner .sec-partner-content .sec-partner-info {
    cursor: pointer;
    width: 90%;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ntable .sec-partner .sec-partner-content .sec-partner-info .sec-partner-lable {
    font-size: 12px;
    color: #666
}

.ntable .sec-partner .sec-partner-content .sec-partner-info .sec-partner-lable .sec-partner-value {
    color: #333
}

.ntable .sec-partner .sec-partner-content .sec-partner-info .sec-partner-lable:first-child {
    margin-right: 5px
}

.ntable .sec-partner:after {
    display: inline-table;
    content: ' ';
    clear: both
}

.ntable .td-coy {
    width: 100%;
    display: table
}

.ntable .td-coy .tags {
    margin-top: 5px
}

.ntable .td-coy .tags .ntag {
    margin-bottom: 2px
}

.ntable .td-coy .tags .ntag.click {
    cursor: pointer
}

.ntable .td-coy .tags .tags-hover {
    max-width: 300px;
    font-size: 12px
}

.ntable .td-coy .headimg, .ntable .td-coy .cont, .ntable .td-coy .foot {
    display: table-cell;
    vertical-align: middle
}

.ntable .td-coy .name {
    word-break: break-word
}

.ntable .td-coy .headimg {
    width: 50px
}

.ntable .td-coy .cont .war-link {
    display: block;
    margin-top: 3px
}

.ntable .td-coy .foot {
    min-width: 125px;
    text-align: right
}

.ntable .war-link {
    color: #ff722d !important
}

.ntable .tsort {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ntable .tsort .tsort-icon {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_sort-b2f89010.png);
    background-size: 18px 10px;
    display: inline-block;
    width: 6px;
    height: 10px
}

.ntable .tsort .tsort-icon.asc {
    background-position: -12px 0px
}

.ntable .tsort .tsort-icon.desc {
    background-position: -6px 0px
}

.ntable .htag .ntag.sm {
    font-size: 12px;
    padding: 4px 5px;
    margin-right: 6px
}

.ntable .htag .line:not(:last-child) {
    margin-bottom: 5px
}

.nosort .tsort {
    display: none
}

.ntable .line-clamp {
    overflow-y: hidden
}

.ntable .ntag {
    white-space: nowrap
}

.ntable .line-clamp-btn {
    right: 10px;
    background: #fff;
    margin-top: -22px;
    width: 45px;
    text-align: right;
    position: absolute;
    cursor: pointer
}

.tchart-table {
    margin-bottom: 25px
}

.tchart-table .ntable {
    float: left;
    margin-bottom: 0px
}

.tchart-table .chart-contain {
    margin-left: 10px;
    border: solid 1px #e4eef6;
    position: relative;
    overflow: hidden
}

.tchart-table .chart-contain .name {
    color: #333;
    font-size: 14px;
    position: absolute;
    top: 11px;
    left: 15px
}

.tchart-table .chart-contain .name i {
    top: 4px
}

.ntable .td-path .path-line {
    line-height: 28px
}

.ntable .td-path .path-line:not(:last-child) {
    margin-bottom: 6px
}

.ntable .td-path .path-line .name {
    color: #222;
    font-weight: 600
}

.ntable .td-path .path-line a {
    color: #333
}

.ntable .td-path .path-line a:hover {
    color: #128bed
}

.ntable .td-path .path-line .path-item .percent {
    display: inline-block;
    width: 84px;
    height: 26px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/line_arrow-288320e2.png) no-repeat right bottom;
    background-size: 75px 8px;
    padding-bottom: 10px;
    font-size: 12px;
    color: #128bed;
    text-align: center;
    position: relative;
    top: -9px;
    margin-right: 6px
}

.ntable .td-path .path-line .path-item .percent.t5 {
    width: 105px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/line_arrowt5-99e4d4ef.png) no-repeat right bottom;
    background-size: 100px 34px;
    padding-bottom: 10px;
    font-size: 12px;
    top: -9px;
    margin-right: 6px;
    padding-bottom: 40px
}

.tchart-list {
    margin-bottom: 15px;
    margin-left: -5px;
    margin-right: -5px
}

.tchart-list .col {
    float: left;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px
}

.tchart-list .col-6 {
    width: 100%
}

.tchart-list .col-3 {
    width: 50%
}

.tchart-list .col-2 {
    width: 33.3%
}

.tchart-list .item {
    position: relative;
    border: solid 1px #eee
}

.tchart-list .item .name {
    color: #333;
    font-size: 14px;
    position: absolute;
    top: 11px;
    left: 15px
}

.tchart-list .item .tchart-btns {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2
}

.tchart-list .item .tchart-btns .tchart-btn {
    cursor: pointer;
    margin-left: 5px
}

.tchart-list .item .tchart-btns .tchart-btn:first-child {
    margin-left: 0
}

.tchart-list .item .tchart-btns .tchart-btn.btn-active {
    color: #128bed
}

.tcaption {
    height: 28px;
    margin-bottom: 15px
}

.tcaption .title {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 0px;
    display: inline;
    line-height: 1.8
}

.tcaption .title img {
    height: 20px;
    position: relative;
    top: -3px
}

.tcaption .tbadge {
    font-size: 16px;
    font-weight: 600;
    color: #128bed
}

.tcaption .tbadge.nig {
    color: #fd485e
}

.tcaption .title-tab {
    position: relative
}

.tcaption .title-tab .item {
    color: #666;
    padding: 5px 0px
}

.tcaption .title-tab .item:not(:last-child) {
    margin-right: 15px
}

.tcaption .title-tab .item .tbadge {
    font-size: 14px;
    font-weight: normal
}

.tcaption .title-tab .item.active {
    color: #222;
    font-weight: 600;
    border-bottom: solid 2px #128bed
}

.tcaption .title-tab .item.active .tbadge {
    font-weight: bold
}

.tcaption .aicon-zhushi {
    position: relative;
    margin-left: 4px;
    top: 1px;
    font-size: 16px
}

.tcaption .notice-tip {
    cursor: pointer;
    background: #fef3dc;
    color: #f9ad14;
    padding: 0px 4px;
    line-height: 22px;
    display: inline-block;
    position: relative;
    font-size: 12px;
    border-radius: 2px;
    margin-left: 10px;
    top: -1px
}

.tcaption .notice-tip .icon-notice {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_notice-60ee749c.png);
    background-size: 14px 14px;
    display: inline-block;
    width: 14px;
    height: 14px;
    position: relative;
    top: 2px
}

.tcaption .notice-tip .aicon {
    font-size: 12px;
    color: #128bed
}

.tcaption .notice-tip.notice-tip-blue {
    background: #e7f4ff;
    color: #128bed;
    font-weight: normal
}

.tcaption .notice-tip.notice-tip-blue .icon-notice {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_notice_blue-f4873065.png)
}

.tcaption .ntag.tcap {
    position: relative;
    top: 3px
}

.tcaption .ntag.tcap .bicon {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
    margin-top: -10px
}

.tcaption .right .ntag.tcap {
    top: 6px
}

.tcaption .strick-text {
    display: inline-block;
    margin-left: 20px;
    -webkit-animation: ripple 2s infinite;
    animation: ripple 2s infinite;
    text-decoration: none;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    margin-right: 10px
}

.tcaption .ant-popover .ant-popover-inner {
    max-width: 400px
}

.tcaption .tdrop {
    display: inline-block;
    position: relative
}

.tcaption .tdrop .btn {
    border: 1px solid #d6d6d6 !important;
    color: #333 !important;
    background-color: #fff !important;
    -webkit-box-shadow: none;
    box-shadow: none
}

.tcaption .tdrop .btn.active {
    color: #128bed !important;
    border-color: #128bed !important
}

.tcaption .tdrop .btn .desc {
    display: inline-block;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    vertical-align: bottom
}

.tcaption .tdrop .dropdown-menu {
    background: #fff;
    max-height: 400px;
    overflow-y: auto
}

.tcaption .tdrop .dropdown-menu > li > a {
    padding: 6px 15px;
    font-size: 13px
}

.tcaption .tdrop .dropdown-menu > li > a:hover {
    color: #128bed;
    background-color: #f2f9fc
}

.tcaption .tdrop .tdrop-content {
    width: 500px;
    padding: 15px 15px
}

.tcaption .tdrop .tdrop-content-line:not(:first-child) {
    border-top: solid 1px #eee;
    padding-top: 10px;
    margin-top: 10px
}

.tcaption .tdrop .tdrop-head {
    color: #999;
    margin-bottom: 5px
}

.tcaption .right {
    float: right;
    margin-top: -3px
}

.tcaption .right > .bicon {
    margin-right: 2px
}

.tcaption .right .btn {
    margin-left: 6px
}

.tcaption .right .btn .picon-exporting {
    background-size: 18px 18px;
    width: 18px;
    height: 18px
}

.tcaption .right .line-text {
    line-height: 32px
}

.tcaption .tinput {
    display: inline-block;
    margin-left: 5px
}

.tcaption .tinput .search-inner {
    position: relative;
    border: solid 1px #d6d6d6;
    display: inline-block;
    height: 34px;
    vertical-align: middle;
    color: #999;
    padding: 6px 8px 6px 26px;
    border-radius: 2px
}

.tcaption .tinput .search-inner .aicon {
    position: absolute;
    left: 7px;
    top: 8px;
    font-size: 15px
}

.tcaption .tinput.open {
    width: 305px;
    position: relative
}

.tcaption .tinput.open .open-wrap {
    width: 255px;
    display: inline-block;
    vertical-align: middle
}

.tcaption .tinput.open input {
    width: 205px;
    border-color: #128bed;
    padding-left: 8px;
    padding-right: 25px
}

.tcaption .tinput.open .btn {
    margin-left: 0px
}

.tcaption .tinput.open .clear-searchkey {
    top: 9px;
    right: 108px
}

.tcaption .ntag.vip {
    position: relative;
    top: -1px;
    margin-right: 6px
}

.tcaption .ntag.vip + .notice-tip {
    margin-left: 2px
}

.tcaption .trarelat {
    margin-left: 3px
}

.tcaption .trarelat a {
    color: #999;
    font-size: 14px;
    margin-left: 10px
}

.tcaption .trarelat a .count {
    color: #f5a623
}

.tcaption .trarelat a:hover {
    color: #f5a623
}

.tcaption .watermark {
    width: 92px;
    height: 26px;
    float: right;
    background-image: url(../../images/watermark.png?t=1);
    margin-left: 10px;
    background-size: 92px 26px;
    margin-top: 1px
}

.tcaption .expand-btn {
    float: right;
    color: #666;
    cursor: pointer
}

.tcaption.sub .title {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 0px;
    display: inline
}

.tcaption.sub .tbadge {
    font-size: 14px
}

.tcaption + .tcaption {
    margin-top: -5px
}

.view-section .view-panel {
    border: solid 1px #E4EEF6;
    background: #F6FAFF;
    width: 100%;
    margin-bottom: 30px
}

.view-section .view-panel .icon-img {
    width: 18px;
    position: relative;
    top: -1px;
    margin-right: 6px
}

.view-section .view-panel .ntag {
    width: 62px;
    text-align: center
}

.view-section .view-panel .title {
    font-weight: bold
}

.view-section .view-panel td {
    padding: 10px 15px
}

.view-section .view-panel .btn-primary {
    width: 82px;
    font-size: 12px
}

.risk-section .risk-panel {
    border: solid 1px #ffdadf;
    background: rgba(253, 237, 237, 0.2);
    width: 100%;
    margin-bottom: 30px
}

.risk-section .risk-panel .text-right {
    padding-right: 15px
}

.risk-section .risk-panel .btn-danger {
    font-size: 12px;
    width: 82px
}

.risk-section .risk-panel .content-td {
    padding: 15px
}

.risk-section .risk-panel .content-td .rline:not(:last-child) {
    margin-bottom: 15px
}

.risk-section .risk-panel .content-td .rdot {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #fd485e;
    border-radius: 4px;
    vertical-align: middle
}

.risk-section .risk-panel .content-td em {
    color: #fd485e;
    font-style: normal
}

.graph-section .ntable th {
    height: 45px;
    padding-top: 5px;
    padding-bottom: 5px
}

.graph-section .tupu-tool-save {
    background-position-y: -24px
}

.graph-section .btn {
    padding: 6px 8px;
    margin-left: 6px
}

.graph-section .btn > i {
    margin-top: -12px;
    top: 7px
}

.graph-section .btn:hover > i {
    background-position-x: -24px
}

.ntable-list {
    width: 100%
}

.ntable-list td {
    padding: 15px;
    border-right: none;
    border-left: none;
    border-color: #eee
}

.ntable-list .title {
    display: block;
    color: #222;
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: bold
}

.ntable-list .title a {
    color: #222
}

.ntable-list a.title {
    cursor: pointer
}

.ntable-list tr:hover {
    background: #f5f9ff
}

.ntable-list tr:hover a.title, .ntable-list tr:hover .title a {
    color: #128bed
}

.ntable-list td {
    border-top: solid 1px #eee;
    border-bottom: solid 1px #eee
}

.ntable-list td:not(:last-child) {
    padding-right: 0px
}

.ntable-list tr:last-child td {
    border-bottom: none
}

.ntable-list .title {
    display: block;
    color: #222;
    font-size: 18px;
    margin-bottom: 3px;
    font-weight: bold
}

.ntable-list .tags {
    margin-top: 5px;
    margin-bottom: 5px
}

.ntable-list .tags .ntag {
    margin-bottom: 3px
}

.ntable-list .statustd {
    width: 140px;
    padding-left: 0px;
    text-align: right
}

.ntable-list .statustd .status {
    padding: 6px 10px;
    border: solid 1px #eee;
    border-radius: 2px;
    word-break: keep-all;
    white-space: nowrap
}

.ntable-list .content {
    margin-bottom: 6px;
    color: #333;
    -o-text-overflow: -o-ellipsis-lastline;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2
}

.ntable-list .content.clampContent {
    position: relative;
    max-height: 44px;
    padding-right: 0px
}

.ntable-list .content.clampContent .more {
    position: absolute;
    right: 0px;
    bottom: 0px;
    background: #fff
}

.ntable-list tr:hover .content.clampContent .more {
    background: #f5f9ff
}

.ntable-list .statustd .status.text-primary {
    border-color: #128bed;
    color: #128bed;
    background: #fff
}

.ntable-list .statustd .status.text-success {
    border-color: #009944;
    color: #009944;
    background: #fff
}

.ntable-list .statustd .status.text-danger {
    border-color: #fd485e;
    color: #fd485e;
    background: #fff
}

.ntable-list .rline:not(:last-child) {
    margin-bottom: 5px
}

.ntable-list .imgtd {
    width: 115px;
    vertical-align: middle;
    padding-left: 25px;
    padding-right: 5px
}

.ntable-list .number {
    display: inline-block;
    min-width: 20px;
    height: 20px;
    border-radius: 6px;
    background: #eee;
    color: #666;
    font-size: 13px;
    text-align: center;
    line-height: 20px;
    padding: 0px 5px;
    position: relative;
    left: 5px
}

.ntable-list .number.top {
    background: #128bed;
    color: #fff
}

.relate-info {
    margin-top: 6px;
    color: #999;
    font-size: 14px
}

.ntable-list .relate-info .val {
    color: #666
}

.ntable-list .relate-info a.val {
    color: #128bed
}

.ntable-list .relate-info .val.long-text {
    display: inline-block;
    vertical-align: top;
    max-width: 920px
}

.ntable-list .relate-info .val.long-text > a {
    display: inline-block
}

.ntable-list .relate-info .f {
    margin-right: 25px
}

.ntable-list .relate-info .sf:not(:last-child):after {
    content: " ";
    display: inline-block;
    width: 1px;
    height: 14px;
    background: #eee;
    vertical-align: middle;
    position: relative;
    margin-left: 10px;
    margin-right: 8px
}

.ntable-content {
    position: relative
}

.ntable-scroll {
    overflow-x: auto;
    border-right: #e4eef6 1px solid;
    border-left: #e4eef6 1px solid;
    margin-bottom: 20px
}

.ntable-scroll .ntable {
    margin-bottom: 0px
}

.ntable-scroll .ntable th:first-child, .ntable-scroll .ntable td:first-child {
    border-left: none
}

.ntable-scroll .ntable th:last-child, .ntable-scroll .ntable td:last-child {
    border-right: none
}

.ntable-scroll.dragable .ntable {
    cursor: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/openhand2-745f6772.cur) 8 8, default
}

.ntable-scroll.dragable.move .ntable {
    cursor: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/closedhand2-29a94d2b.cur) 8 8, move;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ntable-scroll.dragable td > * {
    cursor: text
}

.ntable-scroll.dragable td > a, .ntable-scroll.dragable th > a {
    cursor: pointer
}

.ntable-scroll.fixed-over .fixed-in-body {
    visibility: hidden
}

.ntable-fixed {
    -webkit-box-shadow: 6px 0 6px -4px rgba(0, 0, 0, 0.15);
    box-shadow: 6px 0 6px -4px rgba(0, 0, 0, 0.15);
    position: absolute;
    left: 1px;
    top: 0px;
    background: #fff;
    display: none
}

.ntable-fixed > .ntable {
    table-layout: fixed
}

.mtcaption {
    margin-bottom: 15px;
    color: #666
}

.dtable {
    width: 100%
}

.dtable td {
    padding: 5px 0px
}

.ntable > .ant-table-wrapper table {
    border-collapse: collapse
}

.ntable > .ant-table-wrapper .ant-table-scroll > div {
    margin-right: -5px
}

.ntable > .ant-table-wrapper .ant-table-scroll > div::-webkit-scrollbar {
    height: 4px
}

.ntable > .ant-table-wrapper .ant-table-scroll > div::-webkit-scrollbar-thumb {
    border-width: 0px
}

.ntable > .ant-table-wrapper .ant-table-content colgroup > col {
    min-width: 70px !important
}

.ntable > .ant-table-wrapper .ant-table-content > .ant-table-body {
    overflow: hidden;
    margin-right: -1px
}

.ntable > .ant-table-wrapper.dragable .ant-table-tbody {
    cursor: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/openhand2-745f6772.cur) 8 8, default
}

.ntable > .ant-table-wrapper.dragable .move .ant-table-tbody {
    cursor: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/closedhand2-29a94d2b.cur) 8 8, move;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ntable > .ant-table-wrapper.dragable td > * {
    cursor: text
}

.ntable > .ant-table-wrapper.dragable td > a, .ntable > .ant-table-wrapper.dragable th > a {
    cursor: pointer
}

.ntable > .ant-table-wrapper .ant-table-body.drag {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ntable > .ant-table-wrapper .ant-table-thead {
    background: #f2f9fc
}

.ntable > .ant-table-wrapper .ant-table-thead > tr > th {
    background: none;
    color: #333;
    border-bottom: #e4eef6 1px solid;
    border-right: #e4eef6 1px solid;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    font-weight: normal;
    padding: 10px 8px 10px 10px;
    white-space: nowrap
}

.ntable > .ant-table-wrapper .ant-table-tbody > tr > td {
    border-bottom: 1px solid #e4eef6;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    padding: 10px 8px 10px 10px
}

.ntable > .ant-table-wrapper .ant-table-tbody > tr:hover > td, .ntable > .ant-table-wrapper .ant-table-tbody > tr.ant-table-row-hover > td {
    background: #f3f9fe
}

.ntable > .ant-table-wrapper .ant-table-header-column {
    color: #333
}

.ntable > .ant-table-wrapper .resize-table-th {
    position: relative
}

.ntable > .ant-table-wrapper .resize-table-th .table-draggable-handle {
    height: 100% !important;
    bottom: 0;
    left: auto !important;
    right: -5px;
    cursor: col-resize;
    -ms-touch-action: none;
    touch-action: none
}

.ntable > .ant-table-wrapper .resize-table-th .table-draggable-handle:hover:after, .ntable > .ant-table-wrapper .resize-table-th .table-draggable-handle.dragging:after {
    content: " ";
    background: #128bed;
    width: 2px;
    top: 0px;
    bottom: 0px;
    right: 4px;
    position: absolute
}

@-moz-document url-prefix() {
    .ntable > .ant-table-wrapper .ant-table-scroll .ant-table-fixed {
        width: 100% !important
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .ntable > .ant-table-wrapper .ant-table-scroll .ant-table-fixed {
        width: 100% !important
    }
}

.ntable > .ant-table-wrapper .hide-row td:not(:first-child) {
    visibility: hidden
}

.ntable > .ant-table-wrapper .ant-table-column-sorters {
    cursor: pointer
}

.ntable > .ant-table-wrapper .ant-table-column-sorters .ant-table-column-sorter-inner {
    margin-top: -0.4em;
    margin-left: 0.2em
}

.ntag {
    height: 22px;
    font-weight: normal;
    display: inline-block;
    line-height: 14px;
    font-size: 12px;
    padding: 4px 8px 4px 8px;
    border-radius: 2px
}

.ntag:not(:last-child) {
    margin-right: 6px
}

.ntag.text-primary {
    color: #128BED;
    background: #E7F4FF
}

.ntag.text-danger {
    color: #FD485E;
    background: #FFF0F2
}

.ntag.text-warning {
    color: #F9AD14;
    background: #FEF3DC
}

.ntag.text-success {
    color: #009944;
    background: #EBFFF4
}

.ntag.text-gray {
    color: #666;
    background: #f6f6f6
}

.ntag.text-pl {
    color: #6F77D1;
    background: #EDEEF9
}

.ntag.text-list {
    color: #EC9662;
    background: #FFF4ED
}

.ntag.text-info {
    color: #31708f;
    background: #e6f2fa
}

.ntag.vip, .ntag.svip {
    background: #F6F2E9;
    color: #D2A874;
    padding-left: 28px;
    background-position: 5px center;
    background-repeat: no-repeat;
    padding-right: 6px;
    cursor: default
}

.ntag.vip {
    background-image: url(../../images/website/company/icon_vip_tag-53a3d7fe.png);
    background-size: 20px 9px
}

.ntag.svip {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_svip_tag-d66a24e5.png);
    background-size: 28px 8px;
    padding-left: 36px
}

.ntag.vip-n, .ntag.svip-n {
    width: 24px;
    height: 24px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_vip_tag_new-f1ff0c5c.png);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: -6px;
    cursor: default;
    margin-right: 0
}

.ntag.svip-n {
    width: 35px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_svip_tag_new-b9d7022f.png)
}

.ntag[data-toggle] {
    cursor: pointer
}

.ntag[data-placement='right'] + .tooltip {
    margin-left: 5px
}

.ntag[data-placement='bottom'] + .tooltip {
    margin-left: 90px
}

.ntag + .tooltip .tooltip-inner {
    width: auto;
    max-width: 300px
}

.ntag.vip + .tooltip {
    margin-left: 90px
}

.ntag.vip + .tooltip .tooltip-inner {
    width: auto
}

.ntag.rtag {
    position: relative;
    padding: 4px 8px 4px 25px
}

.ntag.rtag .ricon {
    position: absolute;
    width: 22px;
    height: 22px;
    left: 4px;
    top: 0px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bicon_2-e26860b2.png);
    background-size: 66px 132px;
    background-position: -22px -110px
}

.ntag.rtag .ricon.sfaj {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/ricon_sfaj-fb733529.png);
    background-size: 22px 22px;
    background-position: 0px 0px
}

.nstatus {
    font-weight: normal;
    display: inline-block;
    line-height: 16px;
    font-size: 14px;
    padding: 4px 8px 4px 8px;
    border-radius: 2px;
    border-style: solid;
    border-width: 1px;
    background: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.nstatus.text-success {
    color: #009944
}

.nmodal .watermark {
    width: 92px;
    height: 26px;
    float: right;
    background-image: url(../../images/watermark.png?t=1);
    margin-left: 10px;
    background-size: 92px 26px;
    float: right;
    margin-right: 12px;
    margin-top: -2px
}

.nmodal .close {
    color: #128bed;
    opacity: .8;
    font-size: 26px
}

.nmodal .nclose {
    color: #128bed;
    opacity: .8;
    float: right;
    width: 22px;
    height: 22px;
    background-image: url(../../../../common/images/bicon_x-f474890a.png);
    background-size: 22px 22px
}

.nmodal .modal-header .right {
    float: right
}

.nmodal .modal-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold
}

.nmodal .modal-body {
    position: relative
}

.nmodal .modal-body.scroll-content {
    max-height: calc(100vh - 200px);
    overflow-y: auto
}

.nmodal .modal-footer {
    margin-top: 0px;
    padding: 15px 15px
}

.nmodal .modal-body.n-p {
    padding: 0
}

.nmodal .modal-body .app-ntable {
    margin-bottom: 5px
}

.nmodal .modal-footer .btn {
    display: inline-block;
    min-width: 90px;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none
}

.nmodal .modal-footer .text {
    float: left;
    color: #999;
    line-height: 34px
}

.nmodal .ts {
    color: #999999;
    margin-top: 8px;
    display: block;
    line-height: 1.4
}

.nmodal .modal-footer .btn + .btn {
    margin-left: 10px
}

.nmodal .fb-rs {
    min-height: 40px;
    margin-bottom: 25px
}

.nmodal .fb-rs .fb-text {
    color: #666;
    font-weight: normal;
    font-size: 14px
}

.nmodal .multi-body {
    background-color: #f6f6f6
}

.nmodal .multi-body .modal-body {
    background: #fff
}

.nmodal .multi-body .modal-body + .modal-body {
    margin-top: 10px
}

.modal-backdrop ~ .modal-backdrop {
    z-index: 1055
}

.modal ~ .modal {
    z-index: 1056
}

.npage {
    padding: 10px 0px;
    text-align: right
}

.pagination {
    margin: 0px
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #128bed;
    border-color: #128bed
}

.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
    color: #128bed;
    background-color: #fff;
    border-color: #128bed
}

.pagination > li {
    display: inline-block;
    margin-right: 10px
}

.pagination > li > a, .pagination > li > span {
    position: relative;
    float: none;
    display: inline-block;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #128bed;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #eee
}

.pagination > li > a {
    cursor: pointer
}

.pagination-md {
    margin: 20px 10px
}

.pagination .input-jump {
    margin-left: 10px
}

.pagination .input-jump-btn {
    margin-left: 18px
}

.pagination input {
    display: inline-block;
    width: 60px;
    border-color: #eee;
    margin-left: 3px;
    margin-right: 3px
}

.pagination .size-change {
    position: relative;
    left: -8px;
    margin-left: 10px
}

.pagination .size-change .size-btn {
    width: 86px;
    color: #333;
    padding: 6px 6px;
    text-align: center
}

.pagination .size-change .dropdown-menu {
    border: solid 1px #eee;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 2px;
    width: 86px;
    min-width: 86px;
    margin-top: 0px;
    padding: 0px
}

.pagination .size-change .size-change-item {
    display: block;
    padding: 6px 10px;
    color: #333
}

.pagination .size-change .size-change-item:hover {
    background: #F5F9FF;
    color: #128bed
}

.pagination .active.vip-page a {
    background: #F6F2E9;
    color: #D2A874;
    border: 1px solid #eee;
    padding-top: 12px;
    padding-bottom: 0px;
    background-image: url(../../images/website/company/icon_vip_tag-53a3d7fe.png);
    background-size: 20px 9px;
    background-position: center 5px;
    background-repeat: no-repeat;
    margin-top: -6px;
    top: 6px
}

.text-right .pagination > li:last-child {
    margin-right: 0px
}

.npage-wrap {
    margin-bottom: 30px
}

.npage-wrap .pagination-md {
    margin-left: 0px;
    margin-top: 5px
}

.nlist tr:hover .content.clampContent .more {
    background: #F5F9FF
}

.nlist .statustd .status.text-primary {
    border-color: #128bed;
    color: #128bed;
    background: #fff
}

.nlist .statustd .status.text-success {
    border-color: #009944;
    color: #009944;
    background: #fff
}

.nlist .statustd .status.text-danger {
    border-color: #FD485E;
    color: #FD485E;
    background: #fff
}

.nlist .rline:not(:last-child) {
    margin-bottom: 5px
}

.nlist .ntable-list .imgtd {
    width: 115px;
    vertical-align: middle;
    padding-left: 25px;
    padding-right: 5px
}

.nlist .imgtd img {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    -o-object-fit: contain;
    object-fit: contain
}

.nlist .imgtd .usericon {
    border-radius: 6px;
    width: 80px;
    height: 80px
}

.nlist .imgtd .usericon:before {
    color: #fff !important
}

.nlist .imgtd .usericon[first-letter]:not([style]):empty:before {
    content: attr(first-letter);
    font-size: 50px;
    height: 80px;
    line-height: 80px;
    color: #95A5A6;
    font-weight: 500
}

.nlist .relate-info {
    margin-top: 6px;
    color: #999;
    font-size: 14px
}

.nlist .relate-info .val {
    color: #666
}

.nlist .relate-info a.val {
    color: #128bed
}

.nlist .relate-info .val.long-text {
    display: inline-block;
    vertical-align: top;
    max-width: 660px
}

.nlist .relate-info .val.long-text > a {
    display: inline-block
}

#nprogress {
    pointer-events: none
}

#nprogress .bar {
    background: #128bed;
    height: 2px;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3100
}

#nprogress .peg {
    -webkit-box-shadow: 0 0 10px #128bed, 0 0 5px #128bed;
    box-shadow: 0 0 10px #128bed, 0 0 5px #128bed;
    display: block;
    height: 100%;
    opacity: 1;
    position: absolute;
    right: 0;
    -webkit-transform: rotate(3deg) translate(0, -4px);
    -ms-transform: rotate(3deg) translate(0, -4px);
    transform: rotate(3deg) translate(0, -4px);
    width: 100px
}

#nprogress .spinner {
    display: block;
    position: fixed;
    right: 10px;
    top: 10px;
    z-index: 3100
}

#nprogress .spinner-icon {
    -webkit-animation: nprogress-spinner 400ms linear infinite;
    animation: nprogress-spinner 400ms linear infinite;
    border: solid 2px transparent;
    border-left-color: #128bed;
    border-radius: 50%;
    border-top-color: #128bed;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 18px;
    width: 18px
}

.nprogress-custom-parent {
    overflow: hidden;
    position: relative
}

.nprogress-custom-parent #nprogress .bar, .nprogress-custom-parent #nprogress .spinner {
    position: absolute
}

@-webkit-keyframes nprogress-spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes nprogress-spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.cprocess-line {
    height: 140px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-top: 50px;
    margin: auto
}

.cprocess-line .cprocess-item {
    float: left;
    width: 203px;
    text-align: center;
    position: relative
}

.cprocess-line .cprocess-item:not(:first-child):before {
    content: " ";
    height: 1px;
    background: #88C5F5;
    width: 202px;
    position: absolute;
    top: 9px;
    left: -96px
}

.cprocess-line .cprocess-item .dot {
    width: 12px;
    height: 12px;
    background: #88C5F5;
    border-radius: 50%;
    margin-right: 0px;
    z-index: 0;
    display: inline-block;
    position: relative;
    z-index: 2
}

.cprocess-line .cprocess-item.last {
    color: #128bed
}

.cprocess-line .cprocess-item.last .dot {
    width: 20px;
    height: 20px;
    background: #128BED;
    border: 4px solid #E9F3FF;
    margin-bottom: -4px;
    margin-left: -4px
}

.cprocess-line .cprocess-item.disable {
    color: #999
}

.cprocess-line .cprocess-item.disable .dot {
    background: #BBB
}

.cprocess-line .cprocess-item.disable:before {
    background: #eee
}

.cprocess-line .cprocess-item-wrap-end {
    position: absolute;
    width: 220px;
    text-align: center;
    left: -110px;
    top: -50px;
    z-index: 2
}

.cprocess-line .cprocess-item-wrap-end .dot {
    background: #FD5E63
}

.bigsearch-filter .hchoosen {
    padding-bottom: 5px;
    margin-bottom: 10px
}

.bigsearch-filter {
    background: #fff;
    border: solid 1px #eee;
    padding: 15px;
    margin-bottom: 15px
}

.bigsearch-filter .pills:not(:last-child) {
    margin-bottom: 5px
}

.npanel-body.bigsearch-filter {
    margin-bottom: 0px;
    border: none
}

.bigsearch-list .ntable-list {
    margin-bottom: 0px
}

.bigsearch-list em {
    font-style: normal
}

.bigsearch-list .ntable-list td {
    padding: 15px;
    border-right: none;
    border-left: none;
    border-color: #eee
}

.bigsearch-list .ntable-list td:not(:last-child) {
    padding-right: 0px
}

.bigsearch-list .ntable-list .title {
    display: block;
    color: #222;
    font-size: 18px;
    margin-bottom: 3px;
    font-weight: bold
}

.bigsearch-list .tags {
    margin-bottom: 8px
}

.bigsearch-list .ntable-list .statustd {
    width: 140px;
    padding-left: 0px;
    text-align: right
}

.bigsearch-list .ntable-list .statustd.sm {
    width: 120px
}

.bigsearch-list .statustd .status {
    padding: 6px 10px;
    border: solid 1px #eee;
    border-radius: 2px;
    word-break: keep-all;
    white-space: nowrap;
    background: #fff
}

.bigsearch-list .statustd .status.text-warning {
    color: #f9ad14;
    border-color: #f9ad14
}

.bigsearch-list .statustd .status.text-success {
    color: #52c41b;
    border-color: #52c41b
}

.bigsearch-list .content {
    margin-bottom: 6px;
    color: #333;
    -o-text-overflow: -o-ellipsis-lastline;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2
}

.bigsearch-list .content.clampContent {
    position: relative;
    max-height: 44px;
    padding-right: 0px
}

.bigsearch-list .content.clampContent .more {
    position: absolute;
    right: 0px;
    bottom: 0px;
    background: #fff
}

.bigsearch-list tr:hover .content.clampContent .more {
    background: #F5F9FF
}

.bigsearch-list .statustd .status.text-primary {
    border-color: #128bed;
    color: #128bed;
    background: #fff
}

.bigsearch-list .statustd .status.text-success {
    border-color: #009944;
    color: #009944;
    background: #fff
}

.bigsearch-list .statustd .status.text-danger {
    border-color: #FD485E;
    color: #FD485E;
    background: #fff
}

.bigsearch-list .rline:not(:last-child) {
    margin-bottom: 5px
}

.bigsearch-list .ntable-list .imgtd {
    width: 115px;
    vertical-align: middle;
    padding-left: 25px;
    padding-right: 5px
}

.bigsearch-list .imgtd img {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    -o-object-fit: contain;
    object-fit: contain;
    border: solid 1px #eee;
    border-radius: 6px;
    background-color: #fff
}

.bigsearch-list .imgtd .usericon {
    border-radius: 6px;
    width: 80px;
    height: 80px
}

.bigsearch-list .imgtd .usericon:before {
    color: #fff !important
}

.bigsearch-list .imgtd .usericon[first-letter]:not([style]):empty:before {
    content: attr(first-letter);
    font-size: 50px;
    height: 80px;
    line-height: 80px;
    color: #95A5A6;
    font-weight: 500
}

.bigsearch-list .relate-info {
    margin-top: 6px;
    color: #999;
    font-size: 14px
}

.bigsearch-list .relate-info .val {
    color: #666
}

.bigsearch-list .relate-info a.val {
    color: #128bed
}

.bigsearch-list .relate-info .val.long-text {
    display: inline-block;
    vertical-align: top;
    max-width: 920
}

.bigsearch-list .relate-info .val.long-text > a {
    display: inline-block
}

.msearch-top .search-area .searchbtn {
    background-color: #FF732D;
    color: #fff
}

.msearch-top .search-area .searchbtn:hover {
    background-color: #F1651F
}

.m-xxs {
    margin: 2px 4px
}

.m-xs {
    margin: 5px
}

.m-sm {
    margin: 10px
}

.m {
    margin: 15px
}

.m-md {
    margin: 20px
}

.m-lg {
    margin: 30px
}

.m-xl {
    margin: 50px
}

.m-n {
    margin: 0 !important
}

.m-l-none {
    margin-left: 0
}

.m-l-xs {
    margin-left: 5px
}

.m-l-sm {
    margin-left: 10px
}

.m-l {
    margin-left: 15px
}

.m-l-md {
    margin-left: 20px
}

.m-l-lg {
    margin-left: 30px
}

.m-l-xl {
    margin-left: 40px
}

.m-l-n-xxs {
    margin-left: -1px
}

.m-l-n-xs {
    margin-left: -5px
}

.m-l-n-sm {
    margin-left: -10px
}

.m-l-n {
    margin-left: -15px
}

.m-l-n-md {
    margin-left: -20px
}

.m-l-n-lg {
    margin-left: -30px
}

.m-l-n-xl {
    margin-left: -40px
}

.m-t-none {
    margin-top: 0
}

.m-t-xxs {
    margin-top: 1px
}

.m-t-xs {
    margin-top: 5px
}

.m-t-sm {
    margin-top: 10px
}

.m-t {
    margin-top: 15px
}

.m-t-md {
    margin-top: 20px
}

.m-t-lg {
    margin-top: 30px
}

.m-t-xl {
    margin-top: 40px
}

.m-t-n-xxs {
    margin-top: -1px
}

.m-t-n-xs {
    margin-top: -5px
}

.m-t-n-sm {
    margin-top: -10px
}

.m-t-n {
    margin-top: -15px
}

.m-t-n-md {
    margin-top: -20px
}

.m-t-n-lg {
    margin-top: -30px
}

.m-t-n-xl {
    margin-top: -40px
}

.m-r-none {
    margin-right: 0
}

.m-r-xxs {
    margin-right: 1px
}

.m-r-xs {
    margin-right: 5px
}

.m-r-sm {
    margin-right: 10px
}

.m-r {
    margin-right: 15px
}

.m-r-md {
    margin-right: 20px
}

.m-r-lg {
    margin-right: 30px
}

.m-r-xl {
    margin-right: 40px
}

.m-r-n-xxs {
    margin-right: -1px
}

.m-r-n-xs {
    margin-right: -5px
}

.m-r-n-sm {
    margin-right: -10px
}

.m-r-n {
    margin-right: -15px
}

.m-r-n-md {
    margin-right: -20px
}

.m-r-n-lg {
    margin-right: -30px
}

.m-r-n-xl {
    margin-right: -40px
}

.m-b-none {
    margin-bottom: 0
}

.m-b-xxs {
    margin-bottom: 1px
}

.m-b-xs {
    margin-bottom: 5px
}

.m-b-xxs {
    margin-bottom: 2px
}

.m-b-sm {
    margin-bottom: 10px
}

.m-b {
    margin-bottom: 15px
}

.m-b-md {
    margin-bottom: 20px
}

.m-b-lg {
    margin-bottom: 30px
}

.m-b-xl {
    margin-bottom: 40px
}

.m-b-n-xxs {
    margin-bottom: -1px
}

.m-b-n-xs {
    margin-bottom: -5px
}

.m-b-n-sm {
    margin-bottom: -10px
}

.m-b-n {
    margin-bottom: -15px
}

.m-b-n-md {
    margin-bottom: -20px
}

.m-b-n-lg {
    margin-bottom: -30px
}

.m-b-n-xl {
    margin-bottom: -40px
}

.font-12 {
    font-size: 12px
}

.font-14 {
    font-size: 14px
}

.font-16 {
    font-size: 16px
}

.font-18 {
    font-size: 18px
}

.font-20 {
    font-size: 20px
}

.hover-primary:hover {
    color: #128bed
}

.b-a {
    border: solid 1px #eee
}

.text-gray {
    color: #999
}

.text-svip {
    color: #ddbd87 !important
}

.text-success {
    color: #00ad65
}

.text-dark {
    color: #666
}

.text-dk {
    color: #333
}

a.text-dk:hover {
    color: #128bed
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.nowrap {
    word-break: break-all;
    white-space: nowrap
}

.picon {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-top: -5px;
    top: 5px;
    margin-left: -2px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/picon-01a3bae0.png);
    background-size: 36px 90px
}

.picon-invoice {
    background-position: -18px -54px
}

.picon-export {
    background-position: -18px -18px
}

.picon-alarm {
    background-position: 0px -36px
}

.picon-import {
    background-position: 0px -54px
}

.picon-plus {
    background-position: -18px -36px
}

.picon-close {
    background-position: 0px -18px
}

.picon-setting {
    background-position: -18px 0px
}

.picon-refresh {
    background-position: 0px 0px
}

.picon-ling {
    background-position: 0px -36px
}

.picon-add {
    background-position: -18px -36px
}

.picon-online {
    background-position: 0px -72px
}

.picon-bexport {
    background-position: -18px -72px
}

.picon-xs {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-top: -5px;
    top: 5px;
    margin-left: -2px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/picon_download-5ec4e41b.png);
    background-size: 44px 22px
}

.picon-download {
    background-position: 0px 0px
}

.picon-download:hover, a:hover .picon-download {
    background-position: -22px 0px
}

.btn .picon {
    top: 4px
}

.bicon {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-top: -6px;
    top: 6px;
    margin-left: -2px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bicon-82e2eaab.png);
    background-repeat: no-repeat;
    background-size: 132px 44px
}

.bicon-refresh {
    background-position: -44px 0px
}

.bicon-sadvance {
    background-position: -22px 0px
}

.bicon-back {
    background-position: 0px -22px
}

.bicon-save {
    background-position: -88px -22px
}

.bicon-check {
    background-position: -66px 0px
}

a:hover .bicon-back, a:hover .bicon-save, a:hover .bicon-check {
    background-position-y: 0px
}

.bicon-delete:hover {
    background-position-y: 0px
}

.bicon-group, .bicon-link, .bicon-image, .bicon-phone, .bicon-edit, .bicon-delete, .bicon-aclose {
    background-image: url(../../../../common/images/bicon_note-xxsss.png);
    background-size: 154px 44px
}

.bicon-group {
    background-position: 0px -22px
}

.bicon-group.active {
    background-position: 0px 0px
}

.bicon-link {
    background-position: -22px -22px
}

.bicon-link.active {
    background-position: -22px 0px
}

.bicon-image {
    background-position: -44px -22px
}

.bicon-image.active {
    background-position: -44px 0px
}

.bicon-phone {
    background-position: -66px -22px
}

.bicon-phone.active {
    background-position: -66px 0px
}

.bicon-edit {
    background-position: -88px -22px
}

.bicon-edit:hover {
    background-position: -88px 0px
}

.bicon-delete {
    background-position: -110px -22px
}

.bicon-delete:hover {
    background-position: -110px 0px
}

.bicon-aclose {
    background-position: -132px 0px
}

.bicon-edit2, .bicon-fav, .company-action .action-btn .bicon, .company-toolbar .bar-btn .bicon {
    background-image: url(../../images/website/comm/bicon_2-e26860b2.png);
    background-size: 66px 132px
}

.company-action .action-btn.crm .bicon {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bicon_crm-764b6d85.png);
    background-size: 44px 22px
}

.bicon-fav {
    background-position: 0px 0px
}

.active .bicon-fav {
    background-position: -22px 0px
}

.bicon-edit2 {
    background-position: 0px -44px
}

.bicon-set2, .bicon-drag {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bicon_column-ea5718ec.png);
    background-size: 44px 44px;
    margin-top: -6px;
    top: 6px
}

.bicon-set2 {
    background-position: -22px 0px
}

.bicon-set2:hover {
    background-position: -22px 0px
}

.bicon-drag {
    background-position: 0px -22px
}

.bicon-drag:hover {
    background-position: -22px -22px
}

.bicon-set3 {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bicon_set-908bb490.png);
    background-size: 22px 44px;
    background-position: 0px -22px
}

.bicon-set3:hover {
    background-position: 0px 0px
}

.bicon-explain {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bicon_explain-f682e065.png);
    background-size: 44px 22px;
    background-position: -22px 0px
}

.bicon-explain:hover {
    background-position: 0px 0px
}

.bicon-phoneview {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bicon_phoneview-6002b083.png);
    background-size: 22px 22px;
    background-position: 0px 0px
}

.bicon-internet {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bicon_internet-bdc89509.png);
    background-size: 22px 22px;
    background-position: 0px 0px
}

.bicon-pk {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bicon_pk-8f081ce0.png) !important;
    background-size: 22px 22px !important;
    background-position: 0px 0px
}

.bicon-delete2 {
    position: absolute;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bicon_delete-f3225fb9.png);
    background-size: 22px 22px;
    background-position: 0px 0px
}

.bicon-list {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bicon_list-a208b418.png);
    background-size: 22px 22px;
    background-position: 0px 0px
}

.bicon-report {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bicon_report-dbf1c3f8.png);
    background-size: 22px 22px;
    background-position: 0px 0px
}

.bicon-postcard {
    background-position: -22px -66px
}

.bicon-note {
    background-position: -22px -44px
}

.bicon-search {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bicon_search-0adf7677.png);
    background-size: 18px 18px;
    background-position: 0px 0px;
    background-position: center
}

@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotating {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.picon-exporting {
    background-size: 22px 22px;
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-top: -5px;
    position: relative;
    top: 5px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/picon_exporting-f0a9686e.png);
    -webkit-animation: rotating 1.2s linear infinite;
    animation: rotating 1.2s linear infinite
}

.breadcrumb {
    margin-top: 10px;
    margin-bottom: 8px
}

.breadcrumb .ic-reply {
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 15px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/ic_reply-cf0bc346.png);
    background-size: 18px 15px
}

.qcc-cert130-0, .qcc-cert130-1, .qcc-cert130-2, .qcc-cert130-3 {
    display: block;
    position: absolute;
    z-index: 5;
    background-size: 138px 35px;
    width: 138px;
    height: 35px;
    margin-left: -18px;
    margin-top: -10px
}

.qcc-cert130-3 {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_qyrz130-82d3e32b.png)
}

.qcc-cert130-2 {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_qyrz130-82d3e32b.png)
}

.qcc-cert130-1 {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_qyrz130-82d3e32b.png)
}

.qcc-cert130-0 {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_qyrz130-82d3e32b.png)
}

.qcc-cert110-0, .qcc-cert110-1, .qcc-cert110-2, .qcc-cert110-3 {
    display: block;
    position: absolute;
    z-index: 5;
    background-size: 118px 31px;
    width: 118px;
    height: 31px;
    margin-left: -20px;
    margin-top: -12px
}

.qcc-cert110-3 {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_qyrz110-b9cf8fc2.png)
}

.qcc-cert110-2 {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_qyrz110-b9cf8fc2.png)
}

.qcc-cert110-1 {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_qyrz110-b9cf8fc2.png)
}

.qcc-cert110-0 {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_qyrz110-b9cf8fc2.png)
}

.qcc-cert42-0, .qcc-cert42-1, .qcc-cert42-2, .qcc-cert42-3 {
    display: block;
    position: absolute;
    z-index: 5;
    background-size: 50px 15px;
    width: 50px;
    height: 15px;
    margin-left: -7px;
    margin-top: -7px
}

.qcc-cert42-3 {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_qyrz42-858835e6.png)
}

.qcc-cert42-2 {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_qyrz42-858835e6.png)
}

.qcc-cert42-1 {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_qyrz42-858835e6.png)
}

.qcc-cert42-0 {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_qyrz42-858835e6.png)
}

.icon-wenhao, .m_question {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_wenhao-1bddaed0.png);
    background-size: 16px 16px;
    position: relative;
    top: 2px
}

.icon-info {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_wenhao-1bddaed0.png);
    background-size: 16px 16px;
    position: relative;
    top: 3px
}

.icon-10w {
    position: absolute;
    width: 106px;
    height: 20px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_10w-4208b80b.png);
    background-size: 106px 20px;
    right: -25px;
    top: -19px;
    z-index: 100
}

.icon-place {
    display: inline-block;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/ic_place_grey-08029d3e.png);
    background-size: 10px 15px;
    width: 10px;
    height: 15px;
    top: 3px;
    position: relative;
    margin-right: 3px
}

.btn {
    font-weight: normal;
    border-radius: 2px
}

.btn:focus, .btn:active {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-danger:hover, .btn-danger:focus, .btn-danger:active {
    border-color: transparent
}

.btn-none {
    border: 1px solid #dedede;
    color: #999 !important;
    background-color: #fff
}

.btn-default {
    border: 1px solid #d6d6d6 !important;
    color: #333 !important;
    background-color: #fff !important
}

.btn-primary-outline {
    color: #128bed;
    border-color: #128bed;
    background-color: #fff
}

.btn-primary-outline:focus {
    color: #128bed
}

.btn-primary-outline:hover {
    background-color: #128bed;
    color: #fff !important
}

.btn-check {
    display: inline-block
}

.btn-check label {
    color: #333;
    font-weight: normal;
    line-height: 22px;
    margin-bottom: 0px
}

.btn-check input {
    float: left;
    position: relative;
    margin-right: 6px;
    margin-top: 4px;
    font-size: 20px
}

.btn-outline-primary {
    background: #fff;
    color: #128bed !important;
    border: solid 1px #128bed
}

.btn-danger {
    color: #fff !important;
    background-color: #fd485e;
    border-color: #fd485e
}

.acticon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/search_acticon-1b19d04b.png);
    background-size: 72px 72px
}

.acticon.phoneview {
    background-position: 0px 0px
}

.acticon.phoneview:hover {
    background-position: 0px -24px
}

.acticon.note {
    background-position: -24px 0px
}

.acticon.note:hover {
    background-position: -24px -24px
}

.acticon.follow {
    background-position: -48px 0px
}

.acticon.follow:hover {
    background-position: -48px -48px
}

.acticon.follow.active {
    background-position: -48px -24px
}

.more-params-icon {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/moreParams-9566895d.png);
    background-size: 44px 22px
}

.more-params-icon.more-key {
    background-position: 0 0
}

.more-params-icon.more-key1 {
    background-position: -22px 0px
}

.scfengxin {
    display: inline-block;
    height: 18px;
    width: 18px;
    background-size: 36px 126px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/scfx_new-a62506b1.png);
    margin-right: 5px;
    position: relative;
    top: 4px;
    margin-top: -5px
}

.scfengxin.deep {
    background-position: 0px -108px
}

.scfengxin.deep1 {
    background-position: 18px -108px
}

.scfengxin.hzfx {
    background-position: 0px -72px
}

.scfengxin.hzfx1 {
    background-position: 18px -72px
}

.scfengxin.jzfx {
    background-position: 0px -90px
}

.scfengxin.jzfx1 {
    background-position: 18px -90px
}

.scfengxin.zsfx {
    background-position: 0px 0px
}

.scfengxin.zsfx1 {
    background-position: 18px 0px
}

.scfengxin.glfx {
    background-position: 0px -18px
}

.scfengxin.glfx1 {
    background-position: 18px -18px
}

.scfengxin.tsfx {
    background-position: 0px -36px
}

.scfengxin.tsfx1 {
    background-position: 18px -36px
}

.scfengxin.yqfx {
    background-position: 0px -54px
}

.scfengxin.yqfx1 {
    background-position: 18px -54px
}

.nobreak {
    word-break: keep-all;
    white-space: nowrap
}

.tupu-tool-save, .tupu-tool-screen {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_tupu_tool-a0d49238.png);
    background-size: 48px 48px
}

.icon-new {
    position: absolute;
    width: 27px;
    height: 13px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_new-3b414202.png);
    background-size: 27px 13px;
    z-index: 2
}

.icon-hot {
    position: absolute;
    width: 28px;
    height: 14px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_hot-488ebbb2.png);
    background-size: 28px 14px;
    z-index: 2
}

.mb-zzsy {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/zzsy-0919efe5.png)
}

.dot {
    display: inline-block;
    position: relative;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    top: -2px;
    margin-right: 3px
}

.dot.text-danger {
    background: #FD485E
}

.dot.text-success {
    background: #52C41B
}

.dot.text-gray {
    background: #D6D6D6
}

.msearch {
    position: relative
}

.msearch .ntable-list {
    margin-bottom: 0px
}

.msearch .img {
    border: solid 1px #eee;
    border-radius: 4px;
    background: #fff;
    width: 80px;
    height: 80px
}

.msearch .img > img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    -o-object-fit: contain;
    object-fit: contain
}

.msearch .pay-insert {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 2;
    position: absolute
}

.msearch .pay-insert .insert-wrap {
    width: 780px;
    background: #fff;
    border: solid 1px #eee;
    margin: 80px auto
}

.msearch.auth-limit {
    border-top: solid 1px #eee;
    height: 860px;
    overflow: hidden
}

.msearch.auth-limit .ntable {
    -webkit-filter: blur(5px);
    filter: blur(5px)
}

.svg_select_points_lt {
    cursor: nw-resize
}

.svg_select_points_rt {
    cursor: ne-resize
}

.svg_select_points_rb {
    cursor: se-resize;
    opacity: 0
}

.svg_select_points_lb {
    cursor: sw-resize
}

.svg_select_points_t {
    cursor: n-resize
}

.svg_select_points_r {
    cursor: e-resize
}

.svg_select_points_b {
    cursor: s-resize
}

.svg_select_points_l {
    cursor: w-resize
}

.svg_select_points_rot {
    stroke-width: 1;
    stroke: black;
    fill: #F9FFED
}

.svg_select_points_point {
    cursor: move
}

.svg_select_boundingRect {
    stroke-width: 1;
    fill: gray;
    stroke-dasharray: 10 10;
    stroke: black;
    stroke-opacity: 0.8;
    fill-opacity: 0.1;
    pointer-events: none
}

@primary-color : #128bed; @link-color : #128bed; @error-color : #FD485E; @text-color : #333; @text-color-secondary : #666; @border-color-base : #eee; @table-row-hover-bg : #F3F9FD; @btn-default-color : @text-color-secondary; @btn-default-border : #d6d6d6; @input-border-color : #d6d6d6; .ant-layout {
                                                                                                                                                                                                                                                                                                   min-width: 1280px;
                                                                                                                                                                                                                                                                                                   background: #f6f6f6
                                                                                                                                                                                                                                                                                               }

.ant-layout a:hover, .ant-layout a:focus {
    color: #3babfa
}

.ant-layout-header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 11;
    min-width: 1280px
}

.ant-layout-menu {
    position: fixed;
    width: 240px;
    left: 0;
    bottom: 0;
    z-index: 10;
    top: 56px
}

.ant-layout-content {
    min-height: 100vh;
    margin-left: 240px;
    padding: 15px 20px;
    padding-top: 71px
}

.ant-layout-insert {
    min-height: calc(100vh - 88px);
    background: #fff;
    border-radius: 4px;
    padding-left: 240px;
    position: relative
}

.ant-layout-insert:before {
    content: " ";
    position: absolute;
    left: 240px;
    top: 0px;
    bottom: 0px;
    width: 1px;
    background: #eee
}

.ant-layout-insert-fixleft {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 240px;
    height: 100%
}

.ant-layout-insert .panel {
    -webkit-box-shadow: none;
    box-shadow: none
}

.ant-layout-paction {
    position: fixed;
    right: 0px;
    bottom: 18.5%
}

.ant-layout-paction .item {
    width: 40px;
    height: 40px;
    text-align: center;
    background: #128bed;
    border-radius: 4px;
    opacity: 0.6;
    padding-top: 9px;
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s
}

.ant-layout-paction .item > i {
    font-size: 18px;
    color: #fff
}

.ant-layout-paction .item:hover {
    opacity: 1
}

.ant-layout-simple {
    min-width: 1280px;
    min-height: 100vh;
    padding-top: 56px;
    background: #fff
}

.ant {
    font-family: PingFang SC;
    line-height: 1.42857143
}

.ant .panel {
    padding: 0px 20px;
    border-radius: 4px;
    margin-bottom: 15px;
    -webkit-box-shadow: none;
    box-shadow: none
}

.ant .panel.screen-height {
    min-height: calc(100vh - 88px);
    margin-bottom: 10px
}

.ant .panel.screen-height-crumb {
    min-height: calc(100vh - 124px);
    margin-bottom: 10px
}

.ant .panel:last-child {
    margin-bottom: 0px
}

.ant .panel.m-b {
    margin-bottom: 15px
}

.ant .panel-heading, .ant .panel-body {
    padding: 13px 0px
}

.ant .panel-heading h4 {
    font-size: 16px;
    color: #333;
    line-height: 32px;
    margin: 0px
}

.ant .panel-heading h4 small {
    font-size: 14px;
    color: #999;
    font-weight: normal;
    margin-left: 5px
}

.ant .panel-heading .pull-right button {
    margin-left: 5px
}

.ant .panel-heading + .panel-body {
    border-top: solid 1px #eee
}

.ant .panel-primary {
    background: #128bed;
    color: #fff
}

.ant .aline {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #333;
    font-family: PingFangSC-Medium, PingFang SC
}

.ant .aline .v {
    color: #666666;
    font-family: PingFangSC-Regular, PingFang SC
}

.ant .ainfo {
    text-align: left
}

.ant .ainfo .h {
    font-size: 14px;
    color: #333
}

.ant .ainfo .b {
    color: #333;
    font-size: 30px;
    font-family: PingFangSC-Regular, PingFang SC;
    margin-top: 8px
}

.ant .ainfo .f {
    font-size: 12px;
    color: #999;
    margin-top: 6px;
    margin-bottom: 10px
}

.ant .ainfo .f .trend-up {
    color: #fd485e
}

.ant .ainfo .f .trend-down {
    color: #52c41b
}

.ant .ainfo .d {
    color: #333;
    font-family: PingFangSC-Medium, PingFang SC
}

.ant .ainfo .c {
    color: #666;
    margin-top: 15px
}

.ant .ntable .tb {
    background-color: #f6f6f6
}

.ant .ntable td {
    border-color: #eee
}

.ant-row.divider .ant-col:not(:first-child) {
    padding-left: 20px
}

.ant-row.divider .ant-col:not(:first-child):before {
    content: " ";
    background: #eeeeee;
    width: 1px;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px
}

.ant-col.divider {
    padding-left: 20px
}

.ant-col.divider:before {
    content: " ";
    background: #eeeeee;
    width: 1px;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px
}

.ant-collapse-borderless {
    background: #fff
}

.ant-collapse-borderless .ant-collapse-item {
    background: #f3f9fd;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 0;
    overflow: hidden
}

.ant-collapse-borderless .ant-collapse-content-box {
    padding-bottom: 0px
}

.ant-tree li ul {
    padding-left: 2px
}

.ant-tree li ul li:first-child {
    padding-top: 10px
}

.ant-tree li ul li {
    padding-top: 6px;
    padding-bottom: 6px
}

.ant-tree li .ant-tree-node-content-wrapper:hover {
    background: transparent;
    color: #128bed
}

.ant-tree li .ant-tree-node-content-wrapper.ant-tree-node-selected {
    background: transparent;
    color: #128bed
}

.ant-tree .tree-title > span {
    color: #333;
    font-size: 14px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500
}

.ant-tree li .ant-tree-node-content-wrapper {
    height: auto
}

.ant-tree-node-content-wrapper {
    white-space: normal;
    max-width: 100%
}

.ant-btn-vip {
    background: #d2a874;
    color: #fff;
    border-color: #d2a874
}

.ant-btn-vip:hover, .ant-btn-vip:active, .ant-btn-vip:focus {
    background: #d2a874;
    color: #fff;
    border-color: #d2a874
}

.panel-tabs .ant-tabs-nav-container {
    margin-bottom: 0px
}

.panel-tabs .ant-tabs-extra-content {
    padding-top: 7px
}

.panel-tabs .ant-tabs-nav {
    padding-top: 5px;
    padding-bottom: 6px
}

.panel-tabs .ant-tabs-tab {
    font-size: 16px;
    padding-left: 0px;
    padding-right: 0px;
    color: #999
}

.panel-tabs .ant-tabs-tab-active {
    color: #333
}

.panel-tabs .ant-tabs-bar {
    margin-bottom: 0px
}

.ant-list-item-meta-description {
    color: #999;
    margin-top: 10px
}

.panel .ant-btn {
    padding-left: 9px;
    padding-right: 9px
}

.panel .ant-list-header {
    padding: 0px;
    border-bottom: none
}

.panel .panel-heading .ant-select {
    min-width: 98px
}

.ant-collapse.stext .ant-collapse-item {
    margin-bottom: 0px
}

.ant-collapse.stext .ant-collapse-item .ant-collapse-header {
    padding-left: 0px;
    color: #666;
    display: inline-block;
    margin-bottom: -10px
}

.ant-collapse.stext .ant-collapse-item .ant-collapse-content-box {
    padding-left: 0px
}

.ant-table-wrapper.sm-height {
    min-height: 400px
}

.ant-table-wrapper.md-height {
    min-height: 550px
}

.ant-table-header-column {
    color: #666
}

.ant-table-thead > tr > th, .ant-table-tbody > tr > td {
    padding-right: 6px;
    padding-left: 10px
}

.ant-drawer .ant-drawer-wrapper-body {
    padding-bottom: 50px
}

.ant-drawer.list-drawer .ant-drawer-body {
    padding-top: 0px;
    padding-bottom: 0px
}

.ant-drawer .ant-drawer-footer {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    border-top: solid 1px #eee;
    padding: 16px 16px;
    background: #fff;
    text-align: right;
    z-index: 1
}

.ant-form .tip {
    color: #999;
    font-size: 12px
}

.ant-form-item {
    margin-bottom: 10px
}

.ant-form-item.block-label .ant-form-item-label {
    width: 100%;
    text-align: left
}

.ant-form-item.block-label .ant-form-item-label > label {
    width: 100%
}

.ant-form-item.block-label .ant-form-item-label .link {
    font-weight: normal;
    float: right
}

.ant-form-item-required::before {
    color: #128bed
}

.ant-form-item-label label {
    font-size: 14px;
    color: #333;
    margin-bottom: 0px
}

.ant-form .f-checkbox .ant-checkbox {
    display: none
}

.ant-form .f-checkbox .ant-checkbox-wrapper {
    width: 88px;
    height: 32px;
    line-height: 30px;
    border-radius: 4px;
    border: 1px solid #d6d6d6;
    text-align: center;
    cursor: pointer;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    color: #666;
    font-weight: normal
}

.ant-form .f-checkbox .ant-checkbox-wrapper.ant-checkbox-wrapper-checked {
    border-color: #128bed;
    color: #128bed
}

.ant-modal-body {
    padding: 20px
}

.ant-modal-footer {
    padding: 16px 16px
}

.ant-modal-footer button + button {
    margin-left: 15px
}

.thelp {
    background: #f3f9fd;
    border-radius: 4px;
    color: #666;
    padding: 10px;
    font-size: 14px;
    line-height: 22px
}

.ant-tooltip.lgw {
    max-width: 400px
}

.ant-steps-dot.top-text {
    margin-top: 60px;
    margin-bottom: -30px
}

.ant-steps-dot.top-text .ant-steps-item-content {
    position: relative;
    top: -50px
}

.ant-load-qcc {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/preloader-3bd417c0.gif);
    background-size: 50px 50px;
    width: 50px;
    height: 50px;
    margin: -25px !important
}

.ant-btn-primary-disabled, .ant-btn-primary.disabled, .ant-btn-primary[disabled], .ant-btn-primary-disabled:hover, .ant-btn-primary.disabled:hover, .ant-btn-primary[disabled]:hover, .ant-btn-primary-disabled:focus, .ant-btn-primary.disabled:focus, .ant-btn-primary[disabled]:focus, .ant-btn-primary-disabled:active, .ant-btn-primary.disabled:active, .ant-btn-primary[disabled]:active, .ant-btn-primary-disabled.active, .ant-btn-primary.disabled.active, .ant-btn-primary[disabled].active {
    background: #a0d1f8;
    color: #fff;
    border-color: #a0d1f8
}

.ant-btn .picon, .ant-btn .picon-exporting {
    position: relative;
    left: -2px;
    margin-top: -6px;
    top: 6px
}

.ant-table-placeholder {
    border-bottom: none
}

.ant-table-placeholder .ant-empty-normal {
    padding-top: 50px
}

.ant-drawer-header, .ant-modal-header {
    position: relative;
    border-bottom: none
}

.ant-drawer-header:after, .ant-modal-header:after {
    content: " ";
    position: absolute;
    height: 1px;
    background-color: #eee;
    bottom: 0px;
    left: 20px;
    right: 20px
}

.ant-drawer-header .ant-modal-title, .ant-modal-header .ant-modal-title {
    font-weight: 700
}

.ant-modal-footer {
    position: relative;
    border-top: none
}

.ant-modal-footer:before {
    content: " ";
    position: absolute;
    height: 1px;
    background-color: #eee;
    top: 0px;
    left: 20px;
    right: 20px
}

.ant-popover {
    z-index: 1060
}

.qiye-spanel {
    width: 680px;
    margin: 50px auto 20px auto;
    position: relative
}

.qiye-spanel .slogo {
    background: #eef6ff;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 280px;
    padding: 50px 10px
}

.qiye-spanel .slogo .logo {
    display: block;
    width: 183px;
    margin: auto
}

.qiye-spanel .slogo .img {
    display: block;
    width: 240px;
    margin: auto
}

.qiye-spanel .panel {
    padding-left: 300px;
    min-height: 400px;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 0px
}

.qiye-spanel .panel .form-footer {
    border-top: solid 1px #eee;
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 7px;
    text-align: right
}

.avatar-uploader > .ant-upload {
    width: 60px;
    height: 60px;
    padding: 0px;
    position: relative
}

.avatar-uploader > .ant-upload img {
    width: 60px;
    height: 60px;
    -o-object-fit: contain;
    object-fit: contain
}

.avatar-uploader > .ant-upload.ant-upload-select-picture-card > .ant-upload {
    padding: 0px
}

.avatar-uploader .ant-upload-select-picture-card i {
    font-size: 20px;
    color: #999
}

.avatar-uploader > .ant-upload .hover-tip {
    position: absolute;
    text-align: center;
    color: #fff;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.5);
    line-height: 22px;
    padding: 6px 6px;
    opacity: 0;
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s
}

.avatar-uploader > .ant-upload:hover .hover-tip {
    opacity: 1
}

.mind-item em {
    font-style: normal;
    color: #fd485e
}

.ant-btn-background-ghost {
    background-color: #fff !important
}

.ant-calendar-picker-container .date-ts {
    position: absolute;
    right: 10px;
    color: #999
}

.saas-auth-basic, .saas-auth-advanced, .saas-auth-custom, .saas-auth-luxury, .saas-auth-trial {
    width: 60px;
    height: 20px;
    display: inline-block;
    position: relative;
    background-size: 60px 20px;
    top: 4px;
    margin-top: -4px
}

.saas-auth-advanced {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/saas_auth_advance-d0f678a2.png)
}

.saas-auth-custom {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/saas_auth_custom-83499cf8.png)
}

.saas-auth-luxury {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/saas_auth_luxury-71a3f6b0.png)
}

.saas-auth-trial {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/saas_auth_trial-6c779cd5.png)
}

.saas-auth-basic {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/saas_auth_basic-31044bc0.png)
}

.ant-btn {
    -webkit-box-shadow: none;
    box-shadow: none
}

@media (max-width: 768px) {
    html.mobile {
        min-width: 100% !important;
        width: 100%
    }

    html.mobile body {
        min-width: 100% !important;
        width: 100%
    }

    html.mobile .container {
        width: 100% !important
    }

    html.mobile .modal {
        padding: 0px !important
    }

    html.mobile .modal-dialog {
        width: 100% !important;
        margin-left: 0px !important;
        margin-right: 0px !important;
        margin-top: 100px !important
    }

    html.mobile .app-login_wrapper {
        width: 440px !important;
        margin: auto
    }

    html.mobile .app-login_wrapper .left-c {
        display: none
    }

    html.mobile .toasted-container .toasted {
        top: 100px
    }

    html.mobile .app-nheader .navi-form {
        display: none
    }

    html.mobile .app-nheader .navbar-right {
        display: none
    }

    html.mobile .app-nfooter {
        display: none
    }
}

@media print {
    body {
        -webkit-print-color-adjust: exact
    }

    @page {
        width: 60%;
        size: 10.5in 14.85in
    }

    .app-nheader, .app-nfooter, .app-rnav {
        display: none
    }

    a[href*='//']:after {
        content: " (" attr(href) ") ";
        color: #128bed;
        display: none
    }

    a:after {
        content: " (" attr(href) ") ";
        color: #128bed;
        display: none
    }

    p {
        page-break-inside: avoid
    }

    .btn {
        color: #333 !important;
        border-color: #333 !important
    }

    .book-date {
        page-break-after: always
    }

    .post-content {
        page-break-before: always
    }

    .company-detail .own-switch, .company-detail .company-action {
        display: none
    }

    .company-detail .app-tab-nav .nav-contain {
        display: none
    }

    .company-detail .bar-btn {
        display: none
    }

    .company-detail .tcaption .watermark {
        background-image: url(../../images/watermark.png?t=1) !important;
        background-size: 92px 26px !important
    }

    .company-detail .tcaption .btn-default {
        display: none
    }

    .company-detail .graph-section .btn {
        display: none
    }

    .company-detail .app-tab-nav.fixed .nav-bar {
        position: static;
        width: auto;
        top: auto
    }

    .ntable .td-path .path-line .path-item .percent {
        background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/line_arrow-288320e2.png) no-repeat right bottom !important;
        background-size: 75px 8px !important
    }

    .ntable .td-path .path-line .path-item .percent.t5 {
        background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/line_arrowt5-99e4d4ef.png) no-repeat right bottom !important;
        background-size: 100px 34px !important
    }
}

html, body {
    height: auto;
    margin: 0;
    font-size: 14px;
    background: #f6f6f6;
    min-width: 1250px;
    font-family: "Microsoft YaHei", Arial;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5714
}

body > #app {
    display: block
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px
}

::-webkit-scrollbar-thumb {
    background-color: rgba(50, 50, 50, 0.25);
    border: 2px solid transparent;
    border-radius: 10px;
    background-clip: padding-box
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(50, 50, 50, 0.5)
}

::-webkit-scrollbar-track {
    background-color: rgba(50, 50, 50, 0.05)
}

::-ms-clear, ::-ms-reveal {
    display: none
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #999 !important;
    font-weight: 400
}

input::-moz-placeholder, textarea::-moz-placeholder {
    color: #999 !important;
    font-weight: 400
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #999 !important;
    font-weight: 400
}

input[type="checkbox"], input[type="radio"] {
    font-size: 16px
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    img {
        width: auto;
        height: auto
    }
}

@media screen and (min-width: 0\0
) {
    img {
        width: auto;
        height: auto
    }
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    width: 1250px
}

@media (min-width: 1281px) {
    .header {
        padding: 0px
    }

    .container {
        margin-left: calc(50vw - 625px)
    }

    .container .container {
        margin-left: auto
    }
}

.container:before, .clearfix::before {
    display: table;
    content: " "
}

.container:after, .clearfix:after {
    clear: both;
    display: table;
    content: " "
}

.page-col-lg {
    position: relative;
    min-height: 1px;
    float: left;
    width: 915px
}

.page-col-sm {
    position: relative;
    min-height: 1px;
    float: left;
    width: 290px
}

.page-col-lg + .page-col-sm {
    margin-left: 15px
}

.page-col-sm + .page-col-lg {
    margin-left: 15px
}

.page-col-sm .panel {
    margin-bottom: 15px
}

.page-col.sm {
    padding-left: 50px;
    padding-right: 50px
}

.page-col.sm .page-col-lg {
    width: 815px
}

.page-tip {
    height: 40px;
    line-height: 40px;
    background: #F3F9FE;
    margin-bottom: 20px;
    text-align: center;
    color: #999
}

.full-col .page-col-sm {
    display: none
}

.full-col .page-col-lg {
    width: 100%;
    float: none
}

.page-loadmore {
    background: #f5f9ff;
    color: #128bed;
    text-align: center;
    padding: 10px
}

.page-loadmore .load-gif {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/preloader-3bd417c0.gif);
    background-size: 14px 14px;
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 10px;
    position: relative;
    top: 2px
}

.dropdown-toggle.no-cart::after {
    display: unset;
    margin-left: unset;
    vertical-align: unset;
    content: unset;
    border-top: unset;
    border-right: unset;
    border-bottom: unset;
    border-left: unset
}

.form-group .errors {
    color: #dd1e32;
    text-align: right;
    font-size: 12px;
    display: block;
    position: relative;
    top: 9px
}

.form-control {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #ddd;
    border-radius: 2px
}

.form-control:focus {
    border-color: #128bed
}

a:hover, a:focus {
    text-decoration: none
}

.toasted-container .toasted.ntoast, .toasted-container .toasted.ntoast-vip {
    top: 5px;
    font-weight: normal;
    height: 50px;
    -webkit-box-pack: inherit;
    -ms-flex-pack: inherit;
    justify-content: inherit;
    min-width: 300px;
    max-width: 800px;
    line-height: 1.4;
    -webkit-box-shadow: 0 0 12px #999999;
    box-shadow: 0 0 12px #999999;
    color: rgba(255, 255, 255, 0.8)
}

.toasted-container .toasted.ntoast:hover, .toasted-container .toasted.ntoast-vip:hover {
    -webkit-box-shadow: 0 0 12px #000000;
    box-shadow: 0 0 12px #000000
}

.toasted-container .toasted.ntoast.error, .toasted-container .toasted.ntoast-vip.error {
    background: #bd362f
}

.toasted-container .toasted.ntoast.error .icon, .toasted-container .toasted.ntoast-vip.error .icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=)
}

.toasted-container .toasted.ntoast.success, .toasted-container .toasted.ntoast-vip.success {
    background: #51a351
}

.toasted-container .toasted.ntoast.success .icon, .toasted-container .toasted.ntoast-vip.success .icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==)
}

.toasted-container .toasted.ntoast.ntoast-vip.success, .toasted-container .toasted.ntoast-vip.ntoast-vip.success {
    background: #d2a874
}

.toasted-container .toasted.ntoast.ntoast-vip.success .icon, .toasted-container .toasted.ntoast-vip.ntoast-vip.success .icon {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAAcCAYAAAA9UNxEAAADo0lEQVRYhe3YXYwfUxgG8G5Xt1btWqXSvRCqiV3VSjZRcUOjKtKoz5vK9sJHS3wFTXWvpVw1IhUXEkQvrapogooQjYQ2JdFKEAQtgqZVH6HWYvtzMSM7OzvvzH/+/90rnuTczHne57zPmTPnvGdmzPivAbNxBzYUtMEWdM8LNDfiYvRgfUH//Tg1o3N9oBO1NViM9iixmdipGKNY2OQk7g40R9CHK4L+nzAv1enA5wGvDKPYg0G0FSW4qiR4qAnD60v07kw5dwf9+/5NEmfgcH2/EzCM7nyCc/BZELAfHTXMnoujgdZrOCHlbQ44L2S0lmKsaavjeHGSB2wKyGNY1qDZmdgR6PyM8zPclwLeIxnODS2YzOP2fLKL8HtAfqpBw4MlAw5leO14N+Dd1cBLaAYfYHY22Ta8GpAPSTeSErPzcTCIfwcnZrinib/NFRne45LP40gD7Sj+KjE8ikV13tAtFYafDOKOYWmO26d4NY2YuOznolcymVWtFwN4s8TDtfmke/BNQH5D0RafxK0Qz+6mAv7KgPsdesomtgrol0xyEdYUBWwJyCO4oIDfLfk+ivA+Ti6IuTXg75Pu4i0Ynqf4czmO5UUBF+LPIKGHC/gPBdxRwe6OR4OY7a2YTbVXpubyOIaziwLa8XaQ0KeYk+EO4NeAu6UkqWeDmMdaNLsYHwXae0WrR1JbR7gq5czCroDzCeYG2u2SpV6E2zK8q/FEjTYsOesjbCibqV7xsbEt5USl4d/SSQm0u/F1ELsqw3u+JPm6OIDTq5bHM0HwEVyO74P+pyt0+yUbYB5/oD/D29WSxXEcx3WlZtMBL1P88cMPwfODmF+he2kQe9j4LalL8lamAg9Umk0H7ZBcHOpgdQO664LY96R3WJyJX5r3iOSaeXNDZjPJDdUY4DlBYZLTjI6xnRnOJVq7Je2Wq+4aNXyOxmb6EM5qUHM40Nic4awOOKP4Kmj7sQ03obO22czg2xswvLaG3t5A494M58GA8zpOCtqspk3mErymwuzLov9Hk7VOEd+orszwtgacrVNiqiLJsr8hP6KvhtZCxUfSGJaknDa8FYy3cfqcTkw02mjuq6mzTPFR9620MEAnvgjGu3F6HE5OdIFkm89ihxr/ulKdtYGRj40fSQvwW8C7aHocFie7TlINwSuqSrVijXskBcWXmXZApjrDkoDzIXqn1lV1wgNYXvfNZuI7JbV0V6Z1m/j7pz3X35WJqTzn/0cO/wDCdtLIXE1g+QAAAABJRU5ErkJggg==);
    background-size: 30px 14px;
    background-repeat: no-repeat;
    background-position: left center;
    width: 30px
}

.bscroll-indicator {
    background-color: rgba(0, 0, 0, 0.3) !important
}

.detail-row .col-md-3 {
    width: 315px;
    padding-right: 0px
}

.detail-row .col-md-9 {
    width: 930px;
    padding-right: 0px
}

a {
    cursor: pointer
}

ul li {
    list-style-type: none
}

.search-list em {
    font-style: normal;
    color: #FD485E
}

.search-section em {
    font-weight: 700
}

.loading-mask {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: #fff;
    z-index: 10
}

.loading-mask .loading-gif {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    margin-left: -50px;
    margin-top: -50px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/preloader-3bd417c0.gif);
    background-size: 100px 100px;
    z-index: 11
}

.loading-mask .no-data {
    position: absolute;
    width: 140px;
    height: 140px;
    top: 50%;
    left: 50%;
    margin-left: -70px;
    margin-top: -70px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/nodata-e862b693.png);
    background-size: 140px 140px;
    z-index: 11
}

.nm-footer {
    margin-bottom: -50px
}

button {
    outline: none
}

.tooltip-arrow {
    display: none
}

.tooltip-inner {
    background-color: #fff;
    color: #333;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 12px;
    padding: 6px 10px;
    text-align: left;
    font-weight: normal;
    line-height: 18px;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2)
}

.tooltip.in {
    opacity: 1
}

.tooltip-inner {
    background-color: rgba(0, 0, 0, 0.9);
    background-color: #222733
}

.tooltip.top .tooltip-arrow {
    border-top-color: rgba(0, 0, 0, 0.9);
    border-top-color: #222733
}

.tooltip.right .tooltip-arrow {
    border-right-color: rgba(0, 0, 0, 0.9);
    border-right-color: #222733
}

.tooltip.bottom .tooltip-arrow {
    border-bottom-color: rgba(0, 0, 0, 0.9);
    border-bottom-color: #222733
}

.tooltip.left .tooltip-arrow {
    border-left-color: rgba(0, 0, 0, 0.9);
    border-left-color: #222733
}

.tooltip-arrow {
    display: none
}

.tooltip-inner {
    background-color: #fff;
    color: #333;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 12px;
    padding: 6px 10px;
    text-align: left;
    font-weight: normal;
    line-height: 18px;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    max-width: 1000px
}

.tooltip.in {
    opacity: 1
}

a-popover > [slot="content"] {
    display: none
}

.ant-popover.no-arrow .ant-popover-arrow {
    display: none
}

.ant-popover.max-300 {
    max-width: 300px
}

.ant-popover.max-500 {
    max-width: 500px
}

.ant-popover-inner-content {
    padding: 8px 10px
}

.ant-popover-inner-content .pop-list {
    margin: -8px -10px
}

.ant-popover-inner-content .pop-list > a {
    padding: 8px 10px;
    display: block;
    color: #333
}

.ant-popover-inner-content .pop-list > a:hover {
    background-color: #f3f9fd;
    color: #128bed
}

.ant-popover-inner-content .pop-list > a:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px
}

.ant-popover-inner-content .pop-list > a:last-child {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px
}

.ant-popover.dlevel {
    z-index: 1020
}

.ant-tooltip {
    z-index: 1066
}

.table-pop-title {
    max-width: 350px
}

.table-pop-title .ant-popover-arrow {
    display: none
}

.ntable-wrap *:focus {
    outline: none
}

#udesk_btn {
    display: none !important
}

#udesk_pop_dialog {
    display: none !important
}

.link-flow-in {
    stroke-dasharray: 8;
    -webkit-animation: dash-line 30s linear infinite;
    animation: dash-line 30s linear infinite
}

.link-flow-out {
    stroke-dasharray: 8;
    animation: dash-line 20s linear infinite reverse
}

@-webkit-keyframes dash-line {
    to {
        stroke-dashoffset: 1000
    }
}

@keyframes dash-line {
    to {
        stroke-dashoffset: 1000
    }
}

article.textarea {
    border: none;
    text-rendering: auto;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    text-align: start;
    cursor: text;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    -webkit-column-count: initial !important;
    -moz-column-count: initial !important;
    column-count: initial !important;
    -webkit-rtl-ordering: logical;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.copy-hover-item .copy-button-item {
    opacity: 0
}

.copy-hover-item:hover .copy-button-item {
    opacity: 1
}

.clear-searchkey {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_delete_xs-8c182570.png);
    background-size: 16px 16px;
    width: 16px;
    height: 16px;
    position: absolute;
    opacity: 1;
    z-index: 5
}

.clear-searchkey:hover {
    opacity: .8
}

.rquestion-panel-arrow {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.rquestion-panel-arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    content: " "
}

.rquestion-panel-arrow.top {
    top: -14px;
    left: 50%;
    margin-left: -7px;
    border-top-width: 0;
    border-bottom-color: rgba(0, 0, 0, 0.1);
    border-width: 7px
}

.rquestion-panel-arrow.top:after {
    top: -5px;
    margin-left: -6px;
    border-top-width: 0;
    border-bottom-color: #fff;
    border-width: 6px
}

.rquestion-panel {
    position: absolute;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 999;
    top: 56px;
    right: -65px;
    font-size: 12px;
    visibility: hidden;
    cursor: default;
    line-height: 1.8
}

.ant-layout-menu[data-v-5be9c1d8] {
    left: 1px
}

.ant-layout-menu[data-v-8fa555d4] {
    left: 1px
}

h1[data-v-23c6b8e7] {
    text-align: center
}

.lnews-cell[data-v-968197be] {
    position: relative;
    padding: 16px 20px;
    background: #fff;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s
}

.lnews-cell[data-v-968197be]:not(:last-child):after {
    content: " ";
    position: absolute;
    height: 1px;
    bottom: 0px;
    left: 20px;
    right: 20px;
    background: #eee
}

.lnews-cell .item[data-v-968197be] {
    display: table
}

.lnews-cell .cell-ft[data-v-968197be] {
    display: table-cell;
    padding-right: 20px;
    vertical-align: middle
}

.lnews-cell .cell-bd[data-v-968197be] {
    display: table-cell;
    width: 100%;
    vertical-align: middle
}

.lnews-cell .img > img[data-v-968197be] {
    width: 134px;
    height: 100px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    -o-transition: transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s
}

.lnews-cell .img:hover > img[data-v-968197be] {
    -webkit-transform: scale(1.04, 1.04);
    -ms-transform: scale(1.04, 1.04);
    transform: scale(1.04, 1.04)
}

.lnews-cell .images[data-v-968197be] {
    margin-bottom: 15px
}

.lnews-cell .images .img[data-v-968197be] {
    float: left;
    margin-right: 20px
}

.lnews-cell .title[data-v-968197be] {
    font-size: 18px;
    color: #333;
    max-height: 60px;
    margin-bottom: 15px;
    font-weight: 600;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 28px;
    padding-right: 65px
}

.lnews-cell .title.fixheight[data-v-968197be] {
    height: 60px
}

.lnews-cell .info[data-v-968197be] {
    height: 25px
}

.lnews-cell .ltext[data-v-968197be] {
    display: inline-block;
    font-size: 14px;
    color: #999;
    margin-right: 25px
}

.lnews-cell .ltext.hot[data-v-968197be] {
    position: relative;
    width: 22px;
    height: 22px;
    background: url(/material/theme/chacha/cms/v2/images/ltext_hot.png);
    background-size: 22px 22px;
    margin-top: -5px;
    margin-right: 5px;
    top: 5px
}

.lnews-cell .ltext.top[data-v-968197be] {
    position: relative;
    width: 36px;
    height: 22px;
    background: url(/material/theme/chacha/cms/v2/images/ltext_top.png);
    background-size: 36px 22px;
    margin-top: -5px;
    margin-right: 8px;
    top: 6px
}

.lnews-cell .hreport .time[data-v-968197be] {
    display: inline-block;
    line-height: 1;
    float: left;
    background: #128bed;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 4px 5px;
    font-size: 12px;
    color: #fff;
    margin-top: 2px;
    margin-right: 8px
}

.lnews-cell .htable[data-v-968197be] {
    width: 100%;
    line-height: 30px;
    margin-top: 5px
}

.lnews-cell .htable th[data-v-968197be] {
    color: #999;
    font-weight: normal;
    padding-top: 6px 0px
}

.lnews-cell .lmodal[data-v-968197be] {
    position: absolute;
    bottom: -240px;
    right: -310px;
    display: none
}

.lnews-cell .lmodal .top[data-v-968197be] {
    bottom: 50px
}

.lnews-cell .reason > .item[data-v-968197be] {
    width: 98px;
    border: 1px solid #ddd;
    display: inline-block;
    font-size: 13px;
    text-align: center;
    margin: 8px 10px;
    line-height: 30px;
    border-radius: 2px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all
}

.lnews-cell .reason > .item.active[data-v-968197be] {
    color: #128bed;
    border-color: #128bed
}

.lnews-cell .notlike[data-v-968197be] {
    position: absolute;
    right: 20px;
    bottom: 16px;
    color: #aaa;
    font-size: 12px;
    padding: 0px 5px;
    cursor: pointer;
    line-height: 24px;
    width: 70px;
    padding-right: 17px;
    opacity: 0;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    border-radius: 2px
}

.lnews-cell .notlike .x[data-v-968197be] {
    font-size: 18px;
    position: absolute;
    right: 4px;
    top: 0px
}

.lnews-cell .notlike[data-v-968197be]:hover {
    background: #eee
}

.lnews-cell[data-v-968197be]:hover {
    background: #F3F9FD
}

.lnews-cell:hover .title[data-v-968197be] {
    color: #128bed
}

.lnews-cell:hover .notlike[data-v-968197be] {
    opacity: 1
}

.lnews-cell:hover .fav[data-v-968197be] {
    opacity: 1
}

.lnews-cell:hover .htext[data-v-968197be] {
    color: #128bed
}

.lnews-cell:visited .title[data-v-968197be] {
    color: #999
}

.right-link[data-v-b706940e] {
    font-size: 13px;
    color: #999;
    line-height: 1.4;
    background: #fff;
    padding: 10px;
    padding-top: 5px;
    border: solid 1px #eee
}

.right-link a[data-v-b706940e] {
    color: #999
}

.right-link a[data-v-b706940e]:hover {
    color: #128bed
}

.right-link .licon[data-v-b706940e] {
    position: relative;
    top: -1px
}

.right-link .pt[data-v-b706940e] {
    font-size: 14px;
    padding-left: 6px;
    position: relative;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333
}

.right-link .pt[data-v-b706940e]:before {
    content: " ";
    position: absolute;
    width: 2px;
    height: 14px;
    background: #128bed;
    left: 0px;
    top: 2px
}

.right-link .fd > a[data-v-b706940e] {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 5px
}

.fixedlink.fixed[data-v-b706940e] {
    background: #fff;
    padding: 10px;
    position: fixed;
    top: 390px;
    margin-left: -11px;
    width: 288px;
    border: solid 1px #eee;
    padding-top: 15px;
    padding-bottom: 5px
}

.app-home .nindex-search {
    height: 370px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bg-search-aa276ab1.png) no-repeat top;
    background-size: cover
}

.app-home .nindex-search .search-contain {
    padding-top: 50px;
    z-index: 10;
    position: relative
}

.app-home .nindex-search .title {
    font-size: 46px;
    font-family: "Microsoft YaHei", Arial;
    color: #fff;
    margin-bottom: 40px;
    text-align: center
}

.app-home .nindex-search .search-area {
    width: 900px;
    margin: auto;
    position: relative
}

.app-home .nindex-search .search-nav {
    display: block;
    margin-bottom: 8px;
    padding-left: 188px
}

.app-home .nindex-search .search-nav li {
    font-size: 16px;
    margin: 10px 0px;
    margin-right: 50px;
    float: left;
    line-height: 16px;
    padding: 5px 8px;
    color: #f9f9f9;
    border-radius: 2px
}

.app-home .nindex-search .search-nav li.active, .app-home .nindex-search .search-nav li:hover {
    color: #128bed;
    background-color: #fff;
    position: relative
}

.app-home .nindex-search .search-nav li.active:before, .app-home .nindex-search .search-nav li:hover:before {
    content: " ";
    width: 0;
    height: 0;
    border-width: 6px 6px 0px;
    border-style: solid;
    position: absolute;
    bottom: -6px;
    border-color: #fff transparent transparent;
    left: 50%;
    margin-left: -6px
}

.app-home .nindex-search .index-searchkey {
    border: none;
    font-size: 16px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    height: 51px
}

.app-home .nindex-search .index-searchbtn {
    background: #616DFF;
    font-size: 20px;
    color: #fff;
    padding: 5px 20px 5px;
    height: 51px;
    border: none;
    border-radius: 0px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1)
}

.app-home .nindex-search .index-hot {
    padding-left: 20px;
    font-size: 15px;
    margin-top: 30px;
    padding-right: 15px;
    color: #f9f9f9
}

.app-home .nindex-search .index-hot-box {
    float: left
}

.app-home .nindex-search .hot_data_label {
    display: block;
    float: left
}

.app-home .nindex-search .hot_data {
    float: left;
    max-width: 630px;
    height: 44px;
    display: inline-block;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.app-home .nindex-search .hot_data a {
    padding: 0px 10px;
    color: #BCEAFF;
    display: block;
    float: left
}

.app-home .nindex-search .topsearch-link {
    color: #fff;
    margin-left: 12px
}

.app-home .nindex-search .adsearch-btn {
    float: right;
    color: #fff;
    font-size: 16px;
    margin-top: 26px;
    margin-right: 15px
}

.app-home .nindex-content {
    margin-top: 15px
}

.app-home .nindex-content .lnewsloadmore {
    background: #F5F9FF;
    color: #128bed;
    text-align: center;
    padding: 6px;
    margin-bottom: 15px
}

.app-home .nindex-content .lnewsloadmore img {
    width: 28px;
    margin-right: 10px
}

.app-home .nindex-content .app-box {
    line-height: 1.8
}

.app-home .nindex-content .app-box .block {
    display: block
}

.app-home .nindex-content .app-box .nav-icon-new, .app-home .nindex-content .app-box .nav-icon-hot {
    right: 10px;
    top: -5px
}

.app-home .nindex-content .app-box .index-icon-text {
    width: 33%;
    float: left;
    position: relative;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 10px
}

.app-home .nindex-content .right-sc .list-group {
    margin-bottom: 0px;
    height: 225px;
    overflow: hidden
}

.app-home .nindex-content .right-sc .list-group-item {
    line-height: 1.8;
    border: none;
    border-top: solid 1px #eee;
    width: 100%;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: keep-all
}

.app-home .nindex-content .right-sc .list-group-item:first-child {
    border-top: none
}

.app-home .nindex-content .right-sc .list-group-item:hover {
    background: #E9F3FF;
    color: #128bed
}

.app-home .index-icon-text {
    color: #666
}

.app-home .index-icon-text:hover {
    color: #128bed
}

.app-home .index-icon-text .block > i {
    margin: auto;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/index_app-f8261063.png);
    background-size: 150px 150px;
    display: block;
    height: 50px;
    width: 50px
}

.app-home .index-icon2 {
    background-position: -50px 0px
}

.app-home .index-icon3 {
    background-position: -100px 0px
}

.app-home .index-icon4 {
    background-position: 0px -50px
}

.app-home .index-icon5 {
    background-position: -50px -50px
}

.app-home .index-icon6 {
    background-position: -100px -50px
}

.app-home .index-icon7 {
    background-position: 0px -100px
}

.app-home .index-icon8 {
    background-position: -50px -100px
}

.app-home .nav-icon-new, .app-home .nav-icon-hot {
    display: block;
    position: absolute;
    width: 27px;
    height: 13px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/nav-icon-4f56c92e.png);
    background-size: 27px 26px
}

.app-home .nav-icon-new {
    background-position: 0px 0px
}

.app-home .nav-icon-hot {
    background-position: 0px 13px
}

#loginModal {
    z-index: 1065
}

.login-madal-dialog {
    width: 765px !important;
    margin-top: 120px !important
}

.login-madal-dialog .close {
    color: #128bed;
    font-size: 32px;
    font-weight: thin;
    position: absolute;
    right: 10px;
    top: 10px;
    opacity: 1
}

#vipModal {
    z-index: 1063
}

.vip-moda-dialog {
    width: 780px !important;
    margin-top: 80px !important;
    margin-left: calc(50vw - 390px) !important
}

.vip-moda-dialog .modal-content {
    border-radius: 6px
}

.vip-moda-dialog .modal-content .pay-panel {
    border-radius: 6px
}

.vip-moda-dialog .close {
    color: #fff;
    font-size: 32px;
    font-weight: 100;
    position: absolute;
    right: 15px;
    top: 10px;
    opacity: 0.8
}

.more-list table[data-v-e0314666] {
    width: 100%;
    font-size: 15px
}

.more-list table td[data-v-e0314666] {
    padding: 5px 5px
}

.app-postcard .postcard-wrap[data-v-54b4dc74] {
    margin-top: -15px;
    margin-left: -15px;
    margin-right: -15px;
    padding: 15px;
    background: #F6F6F6
}

.app-postcard .postcard-wrap .pcard-content[data-v-54b4dc74] {
    border: solid 1px #eee;
    border-radius: 8px;
    background: #fff;
    padding: 20px;
    font-size: 16px
}

.app-postcard .postcard-wrap .col-ft[data-v-54b4dc74], .app-postcard .postcard-wrap .col-bd[data-v-54b4dc74] {
    float: left;
    line-height: 32px;
    margin-bottom: 5px
}

.app-postcard .postcard-wrap .col-ft[data-v-54b4dc74] {
    color: #666;
    width: 75px
}

.app-postcard .postcard-wrap .col-bd > input[data-v-54b4dc74] {
    height: 32px
}

.app-postcard .postcard-wrap .img > img[data-v-54b4dc74] {
    width: 54px;
    height: auto;
    max-height: 54px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 6px
}

.app-postcard .postcard-wrap .rline[data-v-54b4dc74] {
    margin-bottom: 8px
}

.app-postcard .postcard-wrap .rline .key[data-v-54b4dc74] {
    display: inline-block;
    width: 75px;
    color: #666
}

.app-postcard .postcard-wrap .rline .val[data-v-54b4dc74] {
    color: #333
}

.app-postcard .input-area[data-v-54b4dc74] {
    padding-top: 20px
}

.app-follow .rfollow[data-v-81b7d20e] {
    position: relative;
    padding-left: 28px
}

.app-follow .rfollow .acticon[data-v-81b7d20e] {
    position: absolute;
    left: 0px;
    top: -3px
}

.app-follow .modal-body[data-v-81b7d20e] {
    max-height: 350px;
    overflow-y: auto
}

.app-follow .group-list td[data-v-81b7d20e] {
    padding: 10px 0px
}

.app-follow .group-list td.checktd[data-v-81b7d20e] {
    text-align: right;
    padding-right: 2px
}

.app-follow .group-list td .group-radio[data-v-81b7d20e] {
    font-size: 20px;
    position: relative;
    margin-top: 0px
}

.app-follow .group-list td .form-control[data-v-81b7d20e] {
    display: inline-block;
    width: 280px
}

.app-follow .group-list td .group-name[data-v-81b7d20e] {
    margin-left: 3px
}

.app-follow .group-list td .group-edit[data-v-81b7d20e] {
    display: none;
    color: #999;
    margin-left: 10px
}

.app-follow .group-list td:hover .group-edit[data-v-81b7d20e] {
    display: inline
}

.app-follow .new-group[data-v-81b7d20e] {
    position: relative;
    top: -10px
}

.app-follow .new-group .form-control[data-v-81b7d20e] {
    width: 280px
}

.app-note .modal-body[data-v-6be085ae] {
    padding-bottom: 30px;
    max-height: 600px;
    overflow: auto
}

.app-note .note-wrap[data-v-6be085ae] {
    padding: 10px 0px
}

.app-note .note-wrap .content-input[data-v-6be085ae] {
    resize: none;
    border: 0;
    outline: 0;
    display: block;
    width: 100%;
    background: transparent
}

.app-note .note-wrap .image-list[data-v-6be085ae] {
    margin-top: 10px;
    margin-bottom: -5px
}

.app-note .note-wrap .image-list .image-input[data-v-6be085ae] {
    position: absolute;
    height: 0px;
    width: 0px;
    visibility: hidden
}

.app-note .note-wrap .image-list .img[data-v-6be085ae] {
    position: relative;
    display: inline-block;
    width: 98px;
    height: 98px;
    border: solid 1px #eee;
    margin-right: 10px;
    margin-bottom: 10px
}

.app-note .note-wrap .image-list .img img[data-v-6be085ae] {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.app-note .note-wrap .image-list .img .bicon[data-v-6be085ae] {
    position: absolute;
    right: 0px;
    top: 0px;
    margin: 0px
}

.app-note .note-wrap .sim-input[data-v-6be085ae] {
    position: relative;
    margin-top: 10px
}

.app-note .note-wrap .sim-input .form-control[data-v-6be085ae] {
    display: inline-block;
    padding-left: 30px;
    width: 300px
}

.app-note .note-wrap .sim-input .bicon[data-v-6be085ae] {
    position: absolute;
    left: 10px;
    top: 11px
}

.app-note .note-wrap .note-content[data-v-6be085ae] {
    padding-right: 80px;
    word-break: break-all;
    min-height: 22px
}

.app-note .note-wrap .note-content .note-content-text[data-v-6be085ae] {
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    -webkit-rtl-ordering: logical;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    resize: auto;
    cursor: text;
    white-space: pre-line;
    overflow-wrap: break-word
}

.app-note .note-wrap .note-content .note-oper[data-v-6be085ae] {
    position: absolute;
    right: 0px;
    top: 10px
}

.app-note .note-wrap .sim-item[data-v-6be085ae] {
    margin-top: 10px;
    word-break: break-all
}

.app-note .note-wrap .sim-item .sim[data-v-6be085ae] {
    display: inline-block;
    background: #F3F9FD;
    padding: 4px 12px;
    border-radius: 2px;
    min-width: 300px
}

.app-note .note-item[data-v-6be085ae] {
    border-bottom: solid 1px #eee;
    position: relative
}

.app-note .note-item.edit[data-v-6be085ae] {
    border: solid 1px #eee;
    margin-bottom: 5px
}

.app-note .note-item.edit .note-wrap[data-v-6be085ae] {
    background: #FCFCFC;
    min-height: 88px;
    padding: 10px
}

.app-note .note-item.edit .image-list[data-v-6be085ae] {
    margin-right: -10px
}

.app-note .note-foot[data-v-6be085ae] {
    background: #F6F6F6;
    height: 32px;
    border-top: solid 1px #eee
}

.app-note .note-foot > .oper-btn[data-v-6be085ae] {
    color: #999;
    line-height: 32px;
    margin-left: 15px
}

.app-note .note-foot > .oper-btn[data-v-6be085ae]:hover {
    color: #128bed
}

.app-note .note-foot > .oper-btn:hover .bicon[data-v-6be085ae] {
    background-position-y: 0px
}

.app-note .note-foot .btn[data-v-6be085ae] {
    float: right;
    font-size: 12px;
    min-width: 84px;
    padding: 7px 12px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    margin-right: -1px;
    margin-top: -1px
}

.app-risk-detail .video-ktUrl[data-v-4c0b6675] {
    margin: 0 0 12px 0
}

.app-risk-detail .assistance-container[data-v-4c0b6675] {
    margin: 6px 0
}

.app-risk-detail .tcaption[data-v-4c0b6675] {
    color: #666;
    margin-bottom: 10px
}

.app-view-detail[data-v-29569f5a] .modal-header .tcaption {
    margin-bottom: 0;
    height: auto
}

.app-casesMore .modal-body .form-group .col-pre[data-v-c8761c12] {
    margin-right: 20px
}

.app-casesMore .modal-body .form-group .col-after[data-v-c8761c12] {
    display: inline-block;
    width: 340px
}

.app-fapiao-modal .tax-view[data-v-d9357868] {
    float: left;
    width: 352px;
    padding: 15px 8px 15px 20px;
    border-right: solid 5px #f6f6f6;
    min-height: 260px
}

.app-fapiao-modal .tax-view td[data-v-d9357868] {
    padding: 6px 0px;
    vertical-align: top;
    color: #666
}

.app-fapiao-modal .tax-view td.th[data-v-d9357868] {
    font-weight: bold;
    color: #333
}

.app-fapiao-modal .qrcode-view[data-v-d9357868] {
    float: right;
    width: 246px;
    padding-top: 25px
}

.app-fapiao-modal .qrcode-view .tab[data-v-d9357868] {
    text-align: center;
    margin-top: 12px;
    margin-bottom: 30px
}

.app-fapiao-modal .qrcode-view .tab .item[data-v-d9357868] {
    padding: 6px 4px;
    margin-left: 5px;
    margin-right: 5px;
    color: #666
}

.app-fapiao-modal .qrcode-view .tab .item.active[data-v-d9357868] {
    color: #128bed;
    border-bottom: solid 2px #128bed
}

.app-fapiao-modal .qrcode-view .qrcode-wrap[data-v-d9357868] {
    text-align: center
}

.app-fapiao-modal .qrcode-view .qrcode-wrap p[data-v-d9357868] {
    margin-top: 15px;
    font-size: 16px
}

.app-fapiao-modal .qrcode-view .imgts[data-v-d9357868] {
    position: absolute;
    width: 305px;
    top: 25px;
    left: 570px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 15px 10px;
    border-radius: 4px;
    display: none
}

.app-fapiao-modal .qrcode-view .imgts > p[data-v-d9357868] {
    margin-bottom: 0px;
    margin-top: 5px
}

.app-fapiao-modal .qrcode-view .imgts > p.text-gray[data-v-d9357868] {
    margin-bottom: 5px
}

.app-fapiao-modal .qrcode-view .imgts > img[data-v-d9357868] {
    width: 283px
}

.app-feedback-modal .se-item[data-v-5c676970] {
    width: 80px;
    border: 1px solid #ddd;
    display: inline-block;
    font-size: 13px;
    text-align: center;
    margin-right: 10px;
    line-height: 30px;
    border-radius: 2px;
    margin-bottom: 10px;
    color: #333
}

.app-feedback-modal .se-item[data-v-5c676970]:hover {
    color: #181a1c
}

.app-feedback-modal .se-item.active[data-v-5c676970] {
    color: #128bed;
    border-color: #128bed
}

.app-fapiao-modal .tax-view[data-v-1acf6612] {
    float: left;
    width: 352px;
    padding: 15px 8px 15px 20px;
    border-right: solid 5px #F6F6F6;
    min-height: 294px
}

.app-fapiao-modal .tax-view td[data-v-1acf6612] {
    padding: 8px 0px;
    vertical-align: top
}

.app-fapiao-modal .tax-view td.th[data-v-1acf6612] {
    font-weight: bold
}

.app-fapiao-modal .qrcode-view[data-v-1acf6612] {
    float: right;
    width: 246px
}

.app-fapiao-modal .qrcode-view .tab[data-v-1acf6612] {
    text-align: center;
    margin-top: 12px;
    margin-bottom: 30px
}

.app-fapiao-modal .qrcode-view .tab .item[data-v-1acf6612] {
    padding: 6px 4px;
    margin-left: 5px;
    margin-right: 5px;
    color: #666
}

.app-fapiao-modal .qrcode-view .tab .item.active[data-v-1acf6612] {
    color: #128bed;
    border-bottom: solid 2px #128bed
}

.app-fapiao-modal .qrcode-view .qrcode-wrap[data-v-1acf6612] {
    text-align: center
}

.app-fapiao-modal .qrcode-view .qrcode-wrap p[data-v-1acf6612] {
    margin-top: 15px
}

.a-stock-dialog .modal-body[data-v-54904729] {
    max-height: calc(100vh - 200px);
    overflow-y: auto
}

.app-edit-company-modal .watermark[data-v-23393acc] {
    width: 92px;
    height: 26px;
    float: right;
    background-image: url(../../images/watermark.png?t=1);
    margin-left: 20px;
    background-size: 92px 26px;
    margin-right: 12px;
    margin-top: -2px
}

.app-edit-company-modal .modal-body[data-v-23393acc] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 50px
}

.app-edit-company-modal .modal-body .company-input[data-v-23393acc] {
    width: 460px
}

.app-edit-company-modal .modal-body .company-head[data-v-23393acc] {
    line-height: 34px
}

.app-edit-company-modal .form-group .col-pre[data-v-23393acc] {
    margin-right: 20px
}

.app-edit-company-modal .form-group .col-after[data-v-23393acc] {
    display: inline-block;
    width: 340px
}

.app-edit-company-modal .edit-search[data-v-23393acc] {
    cursor: pointer
}

.app-edit-company-modal .edit-search .select-kuang[data-v-23393acc] em {
    color: #fd485e !important;
    font-style: normal
}

.app-edit-company-modal .form-control[data-v-23393acc] {
    position: relative;
    z-index: 2
}

.app-edit-company-modal .placeholder-control[data-v-23393acc] {
    color: #d6d6d6
}

.app-edit-company-modal .list-group-item[data-v-23393acc]:first-child {
    border-radius: 0
}

.app-edit-company-modal .list-group-item[data-v-23393acc] {
    border-top: none;
    border-bottom: none;
    padding: 10px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.app-edit-company-modal .list-group-item .list-group-item-logo[data-v-23393acc] {
    height: 30px;
    width: 30px;
    display: inline-block;
    margin-right: 10px;
    border: 1px solid #eee
}

.app-edit-company-modal .list-group-item[data-v-23393acc]:hover {
    color: #128bed;
    background-color: #128bed20
}

.app-edit-company-modal .panel[data-v-23393acc] {
    border: none;
    position: relative;
    z-index: 1;
    margin-top: -1px;
    border-bottom: 1px solid #ddd
}


.app-note .modal-body[data-v-f3c8b6f0] {
    padding-bottom: 30px;
    max-height: 600px;
    overflow: auto
}

.app-note .note-wrap[data-v-f3c8b6f0] {
    padding: 10px 0px
}

.app-note .note-wrap .content-input[data-v-f3c8b6f0] {
    resize: none;
    border: 0;
    outline: 0;
    display: block;
    width: 100%;
    background: transparent
}

.app-note .note-wrap .image-list[data-v-f3c8b6f0] {
    margin-top: 10px;
    margin-bottom: -5px
}

.app-note .note-wrap .image-list .image-input[data-v-f3c8b6f0] {
    position: absolute;
    height: 0px;
    width: 0px;
    visibility: hidden
}

.app-note .note-wrap .image-list .img[data-v-f3c8b6f0] {
    position: relative;
    display: inline-block;
    width: 98px;
    height: 98px;
    border: solid 1px #eee;
    margin-right: 10px;
    margin-bottom: 10px
}

.app-note .note-wrap .image-list .img img[data-v-f3c8b6f0] {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.app-note .note-wrap .image-list .img .bicon[data-v-f3c8b6f0] {
    position: absolute;
    right: 0px;
    top: 0px;
    margin: 0px
}

.app-note .note-wrap .sim-input[data-v-f3c8b6f0] {
    position: relative;
    margin-top: 10px
}

.app-note .note-wrap .sim-input .form-control[data-v-f3c8b6f0] {
    display: inline-block;
    padding-left: 30px;
    width: 300px
}

.app-note .note-wrap .sim-input .bicon[data-v-f3c8b6f0] {
    position: absolute;
    left: 10px;
    top: 11px
}

.app-note .note-wrap .note-content[data-v-f3c8b6f0] {
    padding-right: 80px;
    word-break: break-all;
    min-height: 22px
}

.app-note .note-wrap .note-content .note-content-text[data-v-f3c8b6f0] {
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    -webkit-rtl-ordering: logical;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    resize: auto;
    cursor: text;
    white-space: pre-wrap;
    overflow-wrap: break-word
}

.app-note .note-wrap .note-content .note-oper[data-v-f3c8b6f0] {
    position: absolute;
    right: 0px;
    top: 10px
}

.app-note .note-wrap .sim-item[data-v-f3c8b6f0] {
    margin-top: 10px;
    word-break: break-all
}

.app-note .note-wrap .sim-item .sim[data-v-f3c8b6f0] {
    display: inline-block;
    background: #F3F9FD;
    padding: 4px 12px;
    border-radius: 2px;
    min-width: 300px
}

.app-note .note-item[data-v-f3c8b6f0] {
    border-bottom: solid 1px #eee;
    position: relative
}

.app-note .note-item.edit[data-v-f3c8b6f0] {
    border: solid 1px #eee;
    margin-bottom: 5px
}

.app-note .note-item.edit .note-wrap[data-v-f3c8b6f0] {
    background: #FCFCFC;
    min-height: 88px;
    padding: 10px
}

.app-note .note-item.edit .image-list[data-v-f3c8b6f0] {
    margin-right: -10px
}

.app-note .note-foot[data-v-f3c8b6f0] {
    background: #F6F6F6;
    height: 32px;
    border-top: solid 1px #eee
}

.app-note .note-foot > .oper-btn[data-v-f3c8b6f0] {
    color: #999;
    line-height: 32px;
    margin-left: 15px
}

.app-note .note-foot > .oper-btn[data-v-f3c8b6f0]:hover {
    color: #128bed
}

.app-note .note-foot > .oper-btn:hover .bicon[data-v-f3c8b6f0] {
    background-position-y: 0px
}

.app-note .note-foot .btn[data-v-f3c8b6f0] {
    float: right;
    font-size: 12px;
    min-width: 84px;
    padding: 7px 12px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    margin-right: -1px;
    margin-top: -1px
}

.report-dimension .caret[data-v-27e70ec2] {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid \9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.report-dimension .caret-right[data-v-27e70ec2] {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-left: 4px dashed;
    border-left: 4px solid \9;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent
}

.report-dimension .check-icon[data-v-27e70ec2] {
    width: 14px;
    height: 14px;
    border: 1px solid #D6D6D6;
    display: inline-block;
    background: #fff;
    position: relative;
    border-radius: 2px;
    margin-right: 5px;
    vertical-align: middle
}

.report-dimension .check-icon.checked[data-v-27e70ec2] {
    background: #128BED;
    border: 1px solid #128BED
}

.report-dimension .check-icon.checked[data-v-27e70ec2]:before {
    content: '';
    position: absolute;
    width: 5px;
    height: 9px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    -webkit-transform: rotate(-145deg);
    -ms-transform: rotate(-145deg);
    transform: rotate(-145deg);
    left: 3px
}

.report-dimension .check-icon.disabled[data-v-27e70ec2] {
    background: #A0CFFF;
    border: 1px solid #A0CFFF;
    cursor: not-allowed !important
}

.report-dimension .dimension-body[data-v-27e70ec2] {
    width: 100%;
    overflow-y: auto;
    max-height: calc(100vh - 240px);
    padding: 0 15px
}

.report-dimension .dimension-body .dimension-choose-all[data-v-27e70ec2] {
    width: 100%;
    height: 44px;
    line-height: 44px;
    border-bottom: 1px solid #EEE;
    vertical-align: middle;
    cursor: pointer
}

.report-dimension .dimension-body .dimension-panel[data-v-27e70ec2] {
    margin: 15px 0
}

.report-dimension .dimension-body .dimension-panel .dimension-panel-title[data-v-27e70ec2] {
    margin-bottom: 10px
}

.report-dimension .dimension-body .dimension-panel .dimension-panel-title .di-caret[data-v-27e70ec2] {
    margin-right: 5px
}

.report-dimension .dimension-body .dimension-panel .dimension-panel-title .di-caret-hide[data-v-27e70ec2] {
    display: inline-block;
    width: 15px
}

.report-dimension .dimension-body .dimension-panel .dimension-panel-content[data-v-27e70ec2] {
    width: 100%;
    height: auto;
    background-color: #F3F9FD
}

.report-dimension .dimension-body .dimension-panel .dimension-panel-content .di-item[data-v-27e70ec2] {
    width: 20%;
    height: 30px;
    line-height: 30px;
    margin: 7px 3.3% 7px 1.7%;
    cursor: pointer;
    float: left
}

.report-dimension .dimension-body .dimension-panel .dimension-panel-content .di-item .di-item-box-name[data-v-27e70ec2] {
    display: inline-block;
    width: 50%;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap
}

.report-dimension .dimension-body .dimension-panel .dimension-panel-content .di-item .di-item-input[data-v-27e70ec2] {
    float: right
}

.report-dimension .dimension-body .dimension-panel .dimension-panel-content .di-item .di-item-input input[data-v-27e70ec2] {
    width: 50px;
    height: 26px;
    line-height: 18px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #128BED
}

.report-dimension .dimension-body .dimension-panel .dimension-panel-content .di-item .di-item-input input.input-warning[data-v-27e70ec2] {
    color: #FD485E
}

.app-report-modal[data-v-435c308c] {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.app-report-modal[data-v-435c308c] .app-nmodal .modal-header .vip-title {
    font-size: 14px;
    color: #666;
    font-weight: normal;
    margin-left: 5px
}

.app-report-modal[data-v-435c308c] .app-nmodal .modal-body {
    background: #F6F6F6;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    border-radius: 4px
}

.app-report-modal.app-report-single .report-panelnew .newcell-wrap[data-v-435c308c] {
    width: 100%
}

.app-report-modal .report-panelnew[data-v-435c308c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.app-report-modal .report-panelnew .font-bold[data-v-435c308c] {
    font-weight: 600 !important
}

.app-report-modal .report-panelnew .relative-1[data-v-435c308c] {
    position: relative;
    top: -1px
}

.app-report-modal .report-panelnew .newcell-wrap[data-v-435c308c] {
    width: calc(50% - 7px);
    float: left;
    margin-left: 14px;
    border-top: 1px solid #EEEEEE
}

.app-report-modal .report-panelnew .newcell-wrap[data-v-435c308c]:first-child {
    margin-left: 0
}

.app-report-modal .report-panelnew .newcell-wrap .newcell[data-v-435c308c] {
    min-height: 160px;
    padding: 15px;
    border: 1px solid #EEEEEE;
    border-top: none;
    position: relative;
    background: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.app-report-modal .report-panelnew .newcell-wrap .newcell.newcell2[data-v-435c308c] {
    height: 322px
}

.app-report-modal .report-panelnew .newcell-wrap .newcell[data-v-435c308c]:first-child {
    border-top: none
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .image[data-v-435c308c] {
    width: 90px;
    height: 130px;
    float: left;
    margin-right: 15px
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .image > img[data-v-435c308c] {
    width: 100%;
    display: block
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info[data-v-435c308c] {
    width: calc(100% - 105px);
    float: left;
    position: relative;
    height: 100%
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .title[data-v-435c308c] {
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    margin-right: -30px;
    position: relative;
    width: 100%
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .title .icon-new-outer[data-v-435c308c] {
    width: 28px;
    height: 14px;
    position: relative;
    display: inline-block;
    top: -4px
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .title .title-price[data-v-435c308c] {
    font-size: 16px;
    margin-left: 5px;
    line-height: 24px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    font-weight: normal
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .title .iconfont[data-v-435c308c] {
    font-weight: normal
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .desc[data-v-435c308c] {
    height: 22px;
    width: 100%;
    height: 64px;
    line-height: 22px;
    color: #999;
    font-size: 14px;
    margin-top: 5px;
    -o-text-overflow: -o-ellipsis-lastline;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .demo[data-v-435c308c] {
    width: 100%;
    color: #128BED;
    line-height: 22px;
    font-size: 14px;
    margin-top: 13px;
    position: relative;
    height: 22px
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .demo .greport-contact[data-v-435c308c] {
    position: relative;
    color: #999
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .demo .greport-contact > img[data-v-435c308c] {
    width: 248px;
    position: absolute;
    z-index: 10;
    left: -10px;
    top: 15px;
    display: none
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .demo .greport-contact:hover > img[data-v-435c308c] {
    display: block
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .demo .greport-contact-top > img[data-v-435c308c] {
    top: unset;
    bottom: 12px
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .demo .icon-arrow[data-v-435c308c] {
    display: inline-block;
    width: 12px;
    height: 8px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon-arrow-down-aa1795f8.png);
    background-size: contain;
    margin-left: 1px
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .demo .icon-arrow.icon-arrow-up[data-v-435c308c] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon-arrow-up-f68a1812.png)
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .relatedlist[data-v-435c308c] {
    background: #F6F6F6;
    padding: 0 0 10px 10px;
    max-height: 138px;
    overflow-y: auto;
    margin-top: 10px
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .relatedlist .item[data-v-435c308c] {
    color: #666;
    font-size: 14px;
    line-height: 22px;
    float: left;
    margin: 10px 10px 0 0;
    width: calc(50% - 10px);
    cursor: pointer
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .relatedlist .item .check-icon[data-v-435c308c] {
    width: 14px;
    height: 14px;
    border: 1px solid #D6D6D6;
    display: inline-block;
    background: #fff;
    position: relative;
    border-radius: 2px;
    margin-right: 5px;
    vertical-align: middle
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .relatedlist .item .check-icon.checked[data-v-435c308c] {
    background: #128BED;
    border: 1px solid #128BED
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .relatedlist .item .check-icon.checked[data-v-435c308c]:before {
    content: '';
    position: absolute;
    width: 5px;
    height: 9px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    -webkit-transform: rotate(-145deg);
    -ms-transform: rotate(-145deg);
    transform: rotate(-145deg);
    left: 3px
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .tenderlist[data-v-435c308c] {
    background: #F6F6F6;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 55px
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .tenderlist .tender-title[data-v-435c308c] {
    line-height: 22px;
    font-size: 14px
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .tenderlist .tender-title span[data-v-435c308c] {
    float: right;
    color: #999
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .tenderlist .selected-list .item[data-v-435c308c] {
    line-height: 22px;
    position: relative;
    padding: 5px 22px 5px 0;
    color: #128BED
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .tenderlist .selected-list .item > span[data-v-435c308c] {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .tenderlist .selected-list .item .bicon[data-v-435c308c] {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    margin: 0
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .tenderlist .search-input[data-v-435c308c] {
    margin-top: 10px;
    position: relative;
    margin-bottom: 5px
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .tenderlist .search-input > input[data-v-435c308c] {
    width: 100%;
    line-height: 22px;
    padding: 8px 40px 8px 10px;
    border: 1px solid #D6D6D6;
    border-radius: 2px;
    outline: none
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .tenderlist .search-input > input[data-v-435c308c]:focus {
    border-color: #128bed
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .tenderlist .search-input input[data-v-435c308c]::-webkit-input-placeholder {
    color: #D6D6D6
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .tenderlist .search-input input[data-v-435c308c]::-moz-placeholder {
    color: #D6D6D6
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .tenderlist .search-input input[data-v-435c308c]:-ms-input-placeholder {
    color: #D6D6D6
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .tenderlist .search-input .icon-clear[data-v-435c308c] {
    width: 22px;
    height: 22px;
    position: absolute;
    top: 9px;
    right: 10px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon-clear-c1d98749.png) no-repeat;
    background-size: contain
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .tenderlist .search-input .search-list[data-v-435c308c] {
    width: 100%;
    max-height: 195px;
    overflow: auto;
    position: absolute;
    border: 1px solid #D6D6D6;
    border-top: none;
    z-index: 11;
    background: #fff
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .tenderlist .search-input .search-list .list-group-item[data-v-435c308c] {
    padding: 5px 10px;
    color: #333;
    border: none
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .tenderlist .search-input .search-list .list-group-item .cell[data-v-435c308c] {
    line-height: 22px
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .tenderlist .search-input .search-list .list-group-item[data-v-435c308c]:hover {
    color: #128bed;
    background-color: #F5F9FF
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .info .tenderlist .search-input-disabled[data-v-435c308c] {
    display: none
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .btns[data-v-435c308c] {
    position: absolute;
    bottom: 0;
    right: 0
}

.app-report-modal .report-panelnew .newcell-wrap .newcell .icon-t-new[data-v-435c308c] {
    display: inline-block;
    width: 28px;
    height: 14px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon-new-9164eead.png);
    background-size: 28px 14px;
    position: absolute;
    top: -4px
}

.app-report-modal .report-panelnew .newcell-wrap .newcell-dxkyc .info .desc[data-v-435c308c], .app-report-modal .report-panelnew .newcell-wrap .newcell-singapore .info .desc[data-v-435c308c], .app-report-modal .report-panelnew .newcell-wrap .newcell-pepv3 .info .desc[data-v-435c308c] {
    min-height: 227px;
    -o-text-overflow: -o-ellipsis-lastline;
    text-overflow: -o-ellipsis-lastline;
    overflow: visible;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: block;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: auto;
    line-clamp: auto
}

.app-report-modal .btx[data-v-435c308c] {
    font-size: 12px;
    line-height: 20px;
    color: #999;
    margin-top: 10px
}


.search-item[data-v-dfc7476e] {
    padding: 10px 0px
}

.search-item[data-v-dfc7476e] {
    border-bottom: 1px solid #eee
}

.checkbox[data-v-dfc7476e] {
    height: 14px;
    width: 14px;
    display: inline;
    margin-right: 10px;
    margin-top: 0
}

.search-item-line[data-v-dfc7476e] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.opear[data-v-dfc7476e] {
    color: #999999
}

[data-v-dfc7476e] em {
    color: #fd485e !important;
    font-style: normal
}

[data-v-dfc7476e] .nmodal .modal-footer {
    border: none;
    padding-top: 20px;
    padding-bottom: 5px
}

.radar-contct-modal[data-v-0894e67b] {
    width: 500px;
    height: 250px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/chat_bg-65cd3513.png) no-repeat center;
    background-size: 500px 250px;
    padding: 20px 20px 20px 210px;
    text-align: left;
    color: #ffffff
}

.radar-contct-modal .waiter-name[data-v-0894e67b] {
    font-size: 30px;
    line-height: 38px;
    font-weight: 500
}

.radar-contct-modal .waiter-title[data-v-0894e67b] {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    margin: 5px 0 15px
}

.radar-contct-modal .waiter-tel[data-v-0894e67b] {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 10px
}

.radar-contct-modal .waiter-mail[data-v-0894e67b] {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400
}

.app-top-message[data-v-eb4969ea] {
    position: relative;
    background: #DCEFFF;
    line-height: 36px;
    text-align: center;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    height: 36px;
    border-bottom: solid 1px #eeeeee;
    margin-top: -36px
}

.app-top-message .container[data-v-eb4969ea] {
    position: relative
}

.app-top-message .bar[data-v-eb4969ea] {
    position: absolute;
    width: 100%
}

.app-top-message .bar a[data-v-eb4969ea] {
    color: #333
}

.app-top-message.text-warning[data-v-eb4969ea] {
    background-color: #fff7e9
}

.app-top-message.text-warning a[data-v-eb4969ea] {
    color: #FF8901
}

.app-top-message.text-danger[data-v-eb4969ea] {
    background-color: rgba(253, 72, 94, 0.04)
}

.app-top-message.text-danger a[data-v-eb4969ea] {
    color: #FD485E
}

.app-top-message .close[data-v-eb4969ea] {
    position: absolute;
    top: 6px;
    right: 15px;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2
}

.app-top-message .close[data-v-eb4969ea]:hover {
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .5
}

.mtcaption .text[data-v-519d6553] {
    position: relative;
    top: 5px;
    font-size: 16px
}

.pay-panel[data-v-1ebd30fd] {
    color: #333;
    min-height: 420px;
    font-size: 14px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_modal_bg2@2x-d55f337d.png) center top;
    background-size: contain;
    background-repeat: no-repeat;
    padding-bottom: 50px
}

.pay-panel .pay-top[data-v-1ebd30fd] {
    padding-top: 5px;
    font-weight: normal;
    text-align: center
}

.pay-panel .pay-top .title[data-v-1ebd30fd] {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #fff
}

.pay-panel .pay-top .sub-title[data-v-1ebd30fd] {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff
}

.pay-panel .pay-top .rights[data-v-1ebd30fd] {
    font-size: 14px;
    color: #f9ad14;
    margin-left: 10px
}

.pay-panel .pay-top .type-tab[data-v-1ebd30fd] {
    text-align: center
}

.pay-panel .pay-top .type-tab .tab-item[data-v-1ebd30fd] {
    font-size: 16px;
    display: inline-block;
    line-height: 40px;
    margin-left: 15px;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.6)
}

.pay-panel .pay-top .type-tab .tab-item.active[data-v-1ebd30fd] {
    color: #fff;
    border-bottom: solid 2px #fff
}

.pay-panel .pay-container[data-v-1ebd30fd] {
    margin-top: 15px;
    padding: 0 50px
}

.pay-panel .pay-container .pay-wrap[data-v-1ebd30fd] {
    background: #fff;
    border: solid 1px #eee;
    border-radius: 6px;
    padding: 20px 75px 10px;
    margin-bottom: 25px
}

.pay-panel .pay-container .pay-wrap .goods-list[data-v-1ebd30fd] {
    height: 70px;
    margin-bottom: 20px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item[data-v-1ebd30fd] {
    display: inline-block;
    text-align: center;
    width: 148px;
    height: 70px;
    border: solid 2px #cdcdcd;
    border-radius: 2px;
    cursor: pointer;
    position: relative
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item[data-v-1ebd30fd]:not(:last-child) {
    margin-right: 40px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .price[data-v-1ebd30fd] {
    margin-top: 10px;
    color: #666
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .price .big[data-v-1ebd30fd] {
    font-size: 18px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .desc[data-v-1ebd30fd] {
    font-size: 12px;
    color: #666;
    margin-top: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .desc .old[data-v-1ebd30fd] {
    text-decoration: line-through;
    margin-right: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .actvity-desc[data-v-1ebd30fd] {
    font-size: 13px;
    color: #999;
    margin-top: 2px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .actvity-desc .old[data-v-1ebd30fd] {
    text-decoration: line-through;
    margin-right: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .ic-recomend[data-v-1ebd30fd] {
    position: absolute;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/ic_recomend-4a403486.png);
    background-size: 50px 18px;
    width: 50px;
    height: 18px;
    top: -10px;
    left: -2px
}

.pay-panel .pay-container .pay-wrap .pay-btn[data-v-1ebd30fd] {
    text-align: center
}

.pay-panel .pay-container .pay-wrap .pay-btn .btn-open-pay[data-v-1ebd30fd] {
    display: block;
    width: 242px;
    border-radius: 2px;
    font-size: 18px;
    color: #fff;
    line-height: 44px;
    margin: auto
}

.pay-panel .pay-container .pay-wrap .pay-btn .desc[data-v-1ebd30fd] {
    color: #999999;
    margin-top: 13px;
    margin-bottom: 5px
}

.pay-panel .pay-container .pay-wrap .pay-info .color-hl[data-v-1ebd30fd] {
    color: #F9552A
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-1ebd30fd] {
    height: 28px;
    margin-bottom: 5px;
    font-size: 16px
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-1ebd30fd]:before {
    display: table;
    content: ' '
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-1ebd30fd]:after {
    clear: both;
    display: table;
    content: ' '
}

.pay-panel .pay-container .pay-wrap .pay-info .rline .c[data-v-1ebd30fd] {
    float: left
}

.pay-panel .pay-container .pay-wrap .pay-info .rline .v[data-v-1ebd30fd] {
    float: right
}

.pay-panel .pay-intro img[data-v-1ebd30fd] {
    width: 680px;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

.pay-panel .pay-off .pay-select[data-v-1ebd30fd] {
    float: left;
    width: 185px;
    margin-right: 18px
}

.pay-panel .pay-off .pay-select .pay-type[data-v-1ebd30fd] {
    width: 185px;
    height: 60px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pay_btn_imgs-977feac3.png);
    background-size: 370px 240px;
    cursor: pointer;
    text-indent: -9999px;
    margin-bottom: 10px
}

.pay-panel .pay-off .pay-select .pay-type.disabled[data-v-1ebd30fd] {
    cursor: not-allowed;
    opacity: .5
}

.pay-panel .pay-off .pay-select .pay-type.wx[data-v-1ebd30fd] {
    background-position: 0px 0px
}

.pay-panel .pay-off .pay-select .pay-type.wx.active[data-v-1ebd30fd] {
    background-position: -185px 0px
}

.pay-panel .pay-off .pay-select .pay-type.ali[data-v-1ebd30fd] {
    background-position: 0px -60px
}

.pay-panel .pay-off .pay-select .pay-type.ali.active[data-v-1ebd30fd] {
    background-position: -185px -60px
}

.pay-panel .pay-off .pay-select .pay-type.pub[data-v-1ebd30fd] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pay_btn_imgs3-23b81d91.png);
    background-size: 370px 180px;
    background-position: 0px -120px
}

.pay-panel .pay-off .pay-select .pay-type.pub.active[data-v-1ebd30fd] {
    background-position: -185px -120px
}

.pay-panel .pay-off .pay-select .pay-desc[data-v-1ebd30fd] {
    margin-top: 25px;
    color: #999;
    line-height: 1.3;
    margin-bottom: 10px
}

.pay-panel .pay-off .pay-qrcode[data-v-1ebd30fd] {
    float: left;
    width: 475px;
    background: #f3f9fe
}

.pay-panel .pay-off .pay-qrcode .pay-box[data-v-1ebd30fd] {
    width: 323px;
    height: 223px;
    margin-left: 120px;
    margin-top: 30px;
    margin-bottom: 30px;
    background-size: 323px 223px;
    background-repeat: no-repeat;
    position: relative;
    text-align: left;
    padding-top: 10px;
    padding-left: 10px
}

.pay-panel .pay-off .pay-qrcode .pay-box.wx[data-v-1ebd30fd] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_payqrcodek2-60d77466.png)
}

.pay-panel .pay-off .pay-qrcode .pay-box.wx .wx_pay_img[data-v-1ebd30fd] {
    position: relative;
    top: 12px;
    left: 10px;
    width: 160px;
    height: 160px
}

.pay-panel .pay-off .pay-qrcode .pay-box.ali[data-v-1ebd30fd] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_payqrcodek3-81425c0c.png)
}

.pay-panel .pay-off .pay-qrcode .pay-box-pub[data-v-1ebd30fd] {
    padding: 10px 15px 10px 15px
}

.pay-panel .pay-off .pay-qrcode.s3[data-v-1ebd30fd] {
    height: 322px
}

.pay-panel .pay-off .pay-qrcode.s3 .pay-box[data-v-1ebd30fd] {
    margin-top: 50px
}

.pay-panel.vip .color-hl[data-v-1ebd30fd] {
    color: #F9552A
}

.pay-panel.vip .btn-open-pay[data-v-1ebd30fd] {
    background: #F9552A
}

.pay-panel.vip .goods-item.active[data-v-1ebd30fd] {
    border-color: #F9552A !important
}

.pay-panel.svip .color-hl[data-v-1ebd30fd] {
    color: #d2a874
}

.pay-panel.svip .btn-open-pay[data-v-1ebd30fd] {
    background: #d2a874
}

.pay-panel.svip .goods-item.active[data-v-1ebd30fd] {
    border-color: #d2a874 !important
}

.pay-panel.svip.no-introimg[data-v-1ebd30fd] {
    padding-bottom: 0;
    min-height: 340px
}

.pay-panel.qiye .color-hl[data-v-1ebd30fd] {
    color: #128bed
}

.pay-panel.qiye .btn-open-pay[data-v-1ebd30fd] {
    background: #128bed
}

.pay-panel.qiye .goods-item.active[data-v-1ebd30fd] {
    border-color: #128bed !important
}

.pay-panel[data-v-1ebd30fd] {
    min-height: calc(379px - 40px)
}

.pay-panel.datavip .pay-wrap[data-v-1ebd30fd] {
    padding-left: 48px;
    padding-right: 48px;
    min-height: 198px
}

.datavip-goods-list[data-v-1ebd30fd] {
    margin-bottom: 20px;
    border-radius: 4px;
    border: 2px solid #128BED;
    background-image: none
}

.datavip-goods-item[data-v-1ebd30fd] {
    position: relative;
    text-align: left;
    padding: 6px 15px;
    width: 285px;
    height: 80px;
    float: left;
    background-size: 285px 80px;
    padding-top: 10px
}

.datavip-goods-item.rec[data-v-1ebd30fd] {
    width: 580px;
    height: 98px;
    padding-top: 20px
}

.datavip-goods-item .title[data-v-1ebd30fd] {
    height: 26px;
    line-height: 26px;
    font-size: 18px;
    font-weight: bold;
    color: #333333
}

.datavip-goods-item .desc[data-v-1ebd30fd] {
    margin-top: 10px;
    height: 22px;
    line-height: 22px;
    font-size: 14px;
    color: #666666
}

.datavip-goods-item .price[data-v-1ebd30fd] {
    font-size: 14px;
    position: absolute;
    top: 19px;
    right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    color: #333333
}

.datavip-goods-item .price .big[data-v-1ebd30fd] {
    font-family: PingFangSC-Medium, PingFang SC;
    height: 28px;
    line-height: 28px;
    font-size: 20px;
    font-weight: bold;
    color: #128BED
}

.export-btn[data-v-1ebd30fd] {
    text-align: center
}

.export-btn .btn[data-v-1ebd30fd] {
    width: 240px;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 20px
}

.ta-tip[data-v-1ebd30fd] {
    background: #F6F6F6;
    color: #999;
    font-size: 12px;
    text-align: center;
    position: absolute;
    line-height: 20px;
    bottom: 0px;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px
}

.tip-text[data-v-1ebd30fd] {
    font-size: 12px;
    width: 300px
}

.pay-panel .pay-off .pay-qrcode.s3[data-v-1ebd30fd] {
    height: 310px;
    margin-bottom: 20px
}

.pay-box[data-v-1ebd30fd] {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.pay-box .submit-pay-botton[data-v-1ebd30fd] {
    width: 242px;
    height: 46px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #128BED;
    border-radius: 2px;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    cursor: pointer
}

.submit-pay-sign[data-v-1ebd30fd] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
    height: 22px;
    line-height: 22px;
    font-size: 14px
}

.submit-pay-sign > .left-check-box[data-v-1ebd30fd] {
    height: 22px;
    line-height: 22px;
    margin-right: 3px
}

.submit-pay-sign > .right-txt[data-v-1ebd30fd] {
    min-width: 300px
}

[data-v-1ebd30fd] label {
    margin-bottom: 0
}

[data-v-1ebd30fd] .app-payment-wx {
    left: -75px;
    top: -20px
}

[data-v-1ebd30fd] .app-payment-ali {
    left: -75px;
    top: -20px
}

[data-v-1ebd30fd] .ant-checkbox-wrapper {
    height: 22px
}

[data-v-1ebd30fd] .ant-checkbox-wrapper .ant-checkbox .ant-checkbox-input {
    width: 14px;
    height: 14px
}

#vipModal {
    z-index: 1063
}

.vip-moda-dialog {
    width: 780px !important;
    margin-top: 80px !important;
    margin-left: calc(50vw - 390px) !important
}

.vip-moda-dialog .modal-content {
    border-radius: 6px
}

.vip-moda-dialog .modal-content .pay-panel {
    border-radius: 6px
}

.vip-moda-dialog .close {
    color: #fff;
    font-size: 32px;
    font-weight: 100;
    position: absolute;
    right: 15px;
    top: 10px;
    opacity: 0.8
}

.app-person-job .sub-td[data-v-d73df234] {
    border-bottom: #E4EEF6 1px solid;
    padding: 10px
}

.app-person-job .sub-td[data-v-d73df234]:last-child {
    border-bottom: none
}

.app-person-job .name-w[data-v-d73df234] {
    position: relative
}

.app-person-job .name-w .stock[data-v-d73df234] {
    position: absolute;
    top: 25px;
    left: 50px;
    color: #999
}

.app-group-risk-detail .related-company[data-v-4c3eaa72] {
    margin-bottom: 12px
}

.head_part[data-v-4de8653e] {
    position: relative;
    width: 1055px
}

.head_part .searchInput[data-v-4de8653e] {
    position: absolute;
    margin-top: 0px !important;
    font-weight: normal !important;
    right: 0px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

.chooseTip[data-v-4de8653e] {
    float: left;
    line-height: 34px
}

.chooseTip .warn[data-v-4de8653e] {
    color: #fd485e
}

.nocan[data-v-4de8653e] {
    opacity: 0.5
}

.checkbox_list[data-v-4de8653e] {
    height: 410px;
    overflow: auto
}

.checkbox_list .checkbox_item[data-v-4de8653e] {
    border-bottom: 1px solid #eeeeee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.checkbox_list .checkbox_item .checkbox_item_left[data-v-4de8653e] {
    padding: 14px 15px;
    display: inline-block;
    height: auto;
    width: 44px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.checkbox_list .checkbox_item .checkbox_item_left .checkbox_btn[data-v-4de8653e] {
    margin-top: 0px
}

.checkbox_list .checkbox_item .checkbox_item_right[data-v-4de8653e] {
    width: 1164px;
    cursor: pointer;
    padding: 10px 4px;
    font-size: 14px;
    border-left: 1px solid #eeeeee;
    font-weight: 400;
    color: #333333;
    line-height: 22px;
    display: inline-block
}

.checkbox_list .checkbox_item .second_part[data-v-4de8653e] {
    padding-left: 15px
}

.checkbox_list .checkbox_item .third_part[data-v-4de8653e] {
    padding-left: 32px
}

.noData[data-v-4de8653e] {
    height: 410px
}

.noData .noData-color[data-v-4de8653e] {
    color: #999
}

.btn-normal[data-v-4de8653e] {
    background: #efefef
}


.app-zbrm-modal .edit-cell[data-v-3ed8291c] {
    position: relative;
    height: 34px;
    display: table-cell;
    vertical-align: middle
}

.app-zbrm-modal .edit-cell .form-control[data-v-3ed8291c] {
    width: 250px;
    display: inline-block;
    margin-right: 10px
}

.app-zbrm-modal .edit-cell .aicon[data-v-3ed8291c] {
    cursor: pointer
}

.app-chenge-email .pform[data-v-a98556dc] {
    width: 660px;
    margin: auto
}

.app-chenge-email .pform .form-group[data-v-a98556dc] {
    margin-bottom: 15px
}

.app-chenge-email .pform input.form-control[data-v-a98556dc], .app-chenge-email .pform select.form-control[data-v-a98556dc] {
    height: 40px
}

.app-chenge-email .pform .verify-code-group[data-v-a98556dc] {
    position: relative
}

.app-chenge-email .pform .dropdown-menu[data-v-a98556dc] {
    margin-top: 1px
}

.app-chenge-email .pform .vcode-btn[data-v-a98556dc] {
    position: absolute;
    top: 0px;
    line-height: 40px;
    margin-right: 0px
}

.app-chenge-email .pform .vcode-btn[data-v-a98556dc]:after {
    top: 0px;
    margin-top: 8px
}

.app-chenge-email .pform .col-pre[data-v-a98556dc] {
    color: #333;
    line-height: 40px
}

.app-chenge-email .pform .col-after[data-v-a98556dc] {
    width: 440px;
    padding-right: 0px
}

.app-chenge-email .pform .redstar[data-v-a98556dc] {
    color: #fd485e
}

.app-chenge-email .pform .pform-btn[data-v-a98556dc] {
    padding-top: 20px;
    border-top: solid 1px #eee
}

.app-chenge-email .se-item[data-v-a98556dc] {
    width: 80px;
    border: 1px solid #ddd;
    display: inline-block;
    font-size: 13px;
    text-align: center;
    margin-right: 10px;
    line-height: 30px;
    border-radius: 2px;
    margin-bottom: 10px;
    color: #333
}

.app-chenge-email .se-item[data-v-a98556dc]:hover {
    color: #181a1c
}

.app-chenge-email .se-item.active[data-v-a98556dc] {
    color: #128bed;
    border-color: #128bed
}

.app-chenge-pwd .pform[data-v-dcbab450] {
    width: 660px;
    margin: auto
}

.app-chenge-pwd .pform .form-group[data-v-dcbab450] {
    margin-bottom: 15px
}

.app-chenge-pwd .pform[data-v-dcbab450] .dropdown-menu {
    margin-top: 0px
}

.app-chenge-pwd .pform input.form-control[data-v-dcbab450], .app-chenge-pwd .pform select.form-control[data-v-dcbab450] {
    height: 40px
}

.app-chenge-pwd .pform .verify-code-group[data-v-dcbab450] {
    position: relative
}

.app-chenge-pwd .pform .dropdown-menu[data-v-dcbab450] {
    margin-top: 1px
}

.app-chenge-pwd .pform .vcode-btn[data-v-dcbab450] {
    position: absolute;
    top: 0px;
    line-height: 40px;
    margin-right: 0px
}

.app-chenge-pwd .pform .vcode-btn[data-v-dcbab450]:after {
    top: 0px;
    margin-top: 8px
}

.app-chenge-pwd .pform .col-pre[data-v-dcbab450] {
    color: #333;
    line-height: 40px
}

.app-chenge-pwd .pform .col-after[data-v-dcbab450] {
    width: 440px;
    padding-right: 0px
}

.app-chenge-pwd .pform .redstar[data-v-dcbab450] {
    color: #fd485e
}

.app-chenge-pwd .pform .pform-btn[data-v-dcbab450] {
    padding-top: 20px;
    border-top: solid 1px #eee
}

.app-chenge-pwd .se-item[data-v-dcbab450] {
    width: 80px;
    border: 1px solid #ddd;
    display: inline-block;
    font-size: 13px;
    text-align: center;
    margin-right: 10px;
    line-height: 30px;
    border-radius: 2px;
    margin-bottom: 10px;
    color: #333
}

.app-chenge-pwd .se-item[data-v-dcbab450]:hover {
    color: #181a1c
}

.app-chenge-pwd .se-item.active[data-v-dcbab450] {
    color: #128bed;
    border-color: #128bed
}

.app-chenge-pwd .password[data-v-dcbab450] {
    position: relative
}

.app-chenge-pwd .password .show-pwd[data-v-dcbab450] {
    position: absolute;
    width: 24px;
    height: 24px;
    display: inline-block;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/login_icons-eac8c904.png);
    background-size: 72px 96px;
    right: 10px;
    top: 7px;
    background-position: -24px -72px
}

.app-chenge-pwd .password .show-pwd.active[data-v-dcbab450] {
    background-position: 0px -72px
}

.app-chenge-pwd .password .pwdTip[data-v-dcbab450] {
    margin-top: 10px;
    display: inline-block;
    font-size: 12px
}

.app-chenge-pwd .phone_prefix[data-v-dcbab450] {
    height: 40px;
    line-height: 40px;
    padding-left: 8px;
    padding-right: 30px;
    display: inline-block;
    position: absolute
}

.app-chenge-pwd .phone_prefix + input[data-v-dcbab450] {
    padding-left: 85px
}

.app-chenge-pwd .phone_prefix .phoneline[data-v-dcbab450] {
    content: " ";
    position: absolute;
    right: 0px;
    width: 1px;
    left: 76px;
    height: 30px;
    top: 6px;
    background: #d8d8d8
}

.app-downloadPCT[data-v-c0e6b464] .modal-body {
    background-color: #f3f3f3
}

.app-downloadPCT .intro[data-v-c0e6b464] {
    background: #ffffff;
    border: 1px solid #eeeeee;
    padding: 13px
}

.app-downloadPCT .intro-pic[data-v-c0e6b464] {
    width: 92px;
    height: 126px;
    float: left
}

.app-downloadPCT .intro-part[data-v-c0e6b464] {
    margin-left: 102px;
    font-size: 12px
}

.app-downloadPCT .intro-part .head[data-v-c0e6b464] {
    font-weight: bold;
    font-size: 14px;
    color: #333;
    margin-bottom: 4px
}

.app-downloadPCT .intro-part .detail[data-v-c0e6b464] {
    color: #999;
    line-height: 19px;
    font-size: 12px;
    margin-bottom: 4px
}

.app-downloadPCT .intro-part .choose-part[data-v-c0e6b464] {
    background: #f6f6f6;
    padding: 9px;
    margin-top: 9px
}

.app-downloadPCT .intro-part .choose-part .title[data-v-c0e6b464] {
    margin-bottom: 8px
}

.app-downloadPCT .intro-part .choose-part .text[data-v-c0e6b464] {
    color: #666;
    font-size: 12px;
    font-weight: 400
}

.app-downloadPCT .intro-part .choose-part .text > input[data-v-c0e6b464] {
    position: relative;
    top: 2px
}

.app-download .app-header[data-v-568e2090] {
    width: 100%;
    padding-top: 20px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/top_bg-36b8a05f.png) center top no-repeat;
    background-size: 1920px 740px
}

.app-download .app-header .phoneimg[data-v-568e2090] {
    margin-left: 66px;
    margin-top: 120px;
    width: 360px
}

.app-download .app-header h1[data-v-568e2090] {
    font-size: 48px;
    color: #fff;
    margin-top: 130px;
    font-weight: normal
}

.app-download .app-header h2[data-v-568e2090] {
    font-size: 32px;
    color: #fff;
    margin-top: 30px;
    font-weight: normal
}

.app-download .app-header-btn[data-v-568e2090] {
    width: 380px;
    margin-top: 30px
}

.app-download .app-header-btn > img[data-v-568e2090] {
    width: 139px
}

.app-download .app-header-btn .btn[data-v-568e2090] {
    display: block;
    width: 193px;
    height: 58px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    color: #292E31;
    font-size: 18px;
    padding-top: 16px;
    padding-left: 40px;
    margin-top: 3px;
    margin-bottom: 15px
}

.app-download .app-header-btn .btn > span[data-v-568e2090] {
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    margin-left: -20px;
    margin-top: 0px
}

.app-download .app-header-btn .android > span[data-v-568e2090] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_android-3cf56c76.png)
}

.app-download .app-header-btn .apple > span[data-v-568e2090] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_apple-29d46ef2.png)
}

.app-download .app-header-btn .btn[data-v-568e2090]:hover {
    opacity: 1;
    color: #128bed
}

.app-download .app-center[data-v-568e2090] {
    width: 100%;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/center_bg-b5e58159.png) center top no-repeat;
    background-size: 1920px 210px;
    height: 210px
}

.app-download .app-container[data-v-568e2090] {
    width: 100%
}

.app-download .app-container > img[data-v-568e2090] {
    display: block;
    width: 1140px;
    margin: auto
}

.app-download .app-flowqrcode[data-v-568e2090] {
    position: fixed;
    right: 30px;
    top: 350px;
    width: 174px;
    height: 210px;
    background: #fff;
    text-align: center;
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    display: none
}

.app-download .app-flowqrcode > img[data-v-568e2090] {
    margin-top: 8px;
    width: 150px
}

.app-download .app-flowqrcode > p[data-v-568e2090] {
    font-size: 16px;
    color: #666;
    margin-top: 10px
}

.qiye-invite .slogo .img[data-v-8ae9b2d6] {
    margin-top: 90px
}

.qiye-invite-result[data-v-8ae9b2d6] {
    padding-top: calc(50vh - 280px);
    text-align: center
}

.qiye-invite-result img[data-v-8ae9b2d6] {
    width: 240px
}

.qiye-invite-result .title[data-v-8ae9b2d6] {
    font-size: 16px;
    margin-top: 25px;
    margin-bottom: 20px
}

.qiye-create[data-v-02b8ff53] {
    margin-top: calc(50vh - 280px)
}

.qiye-create .panel .form-footer[data-v-02b8ff53] {
    margin-top: 50px
}

.qiye-create .ant-checkbox-wrapper[data-v-02b8ff53] {
    font-weight: normal;
    margin-top: 5px
}

.qiye-create .ant-input-number[data-v-02b8ff53] {
    width: 100%
}

.qiye-create .ant-btn[data-v-02b8ff53] {
    width: 74px
}

.qiye-create .name-input[data-v-02b8ff53] {
    width: calc(100% - 52px)
}

.qiye-create .text-count[data-v-02b8ff53] {
    display: inline-block;
    width: 42px;
    margin-left: 10px;
    color: #D6D6D6
}

.qiye-change[data-v-7504ba69] {
    margin-top: calc(50vh - 300px);
    width: 800px
}

.qiye-change .panel[data-v-7504ba69] {
    height: 500px
}

.qiye-change .slogo .img[data-v-7504ba69] {
    margin-top: 60px
}

.qiye-change .list[data-v-7504ba69] {
    margin-top: 15px;
    margin-left: -20px;
    margin-right: -20px;
    max-height: 325px;
    overflow-y: auto
}

.qiye-change .list .ant-list-item[data-v-7504ba69] {
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: none;
    position: relative;
    cursor: pointer
}

.qiye-change .list .ant-list-item[data-v-7504ba69]:hover, .qiye-change .list .ant-list-item.active[data-v-7504ba69] {
    background: #F3F9FD
}

.qiye-change .list .ant-list-item:hover .ant-list-item-meta-title[data-v-7504ba69], .qiye-change .list .ant-list-item.active .ant-list-item-meta-title[data-v-7504ba69] {
    color: #128bed
}

.qiye-change .list .ant-list-item .ant-list-item-meta-title[data-v-7504ba69] {
    margin-top: 5px
}

.qiye-change .list .ant-list-item .ant-list-item-meta-description[data-v-7504ba69] {
    margin-top: 5px;
    margin-bottom: 3px
}

.qiye-change .list .ant-list-item .ant-avatar[data-v-7504ba69] {
    margin-top: 8px
}

.qiye-change .list .ant-list-item .right-arrow[data-v-7504ba69] {
    position: absolute;
    color: #666666;
    right: 20px
}

.qiye-change .list .ant-list-item .icon-add[data-v-7504ba69] {
    background: #EEEEEE;
    color: #999
}

.qiye-change .list .ant-list-item .icon-vip[data-v-7504ba69], .qiye-change .list .ant-list-item .icon-svip[data-v-7504ba69] {
    margin-right: 10px;
    position: relative;
    top: 2px
}

.qiye-change .list .ant-list-item .icon-vip[data-v-7504ba69] {
    display: inline-block;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_VIP-afd2c29c.svg);
    background-size: 30px 14px;
    width: 30px;
    height: 14px
}

.qiye-change .list .ant-list-item .icon-svip[data-v-7504ba69] {
    display: inline-block;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_SVIP-0c7b2886.svg);
    background-size: 38px 14px;
    width: 38px;
    height: 14px
}

.qiye-change .list .ant-list-item .dline[data-v-7504ba69] {
    position: absolute;
    bottom: 0px;
    background: #eee;
    left: 20px;
    right: 20px;
    height: 1px
}

.qiye-change .list .ant-list-item .add-cell .ant-list-item-meta-title[data-v-7504ba69] {
    color: #999
}

.qiye-change .list .ant-list-item .add-cell .ant-list-item-meta-description[data-v-7504ba69] {
    color: #d6d6d6
}

.qiye-intro header[data-v-29aba738] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bg-9bb7f374.png);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 480px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-bottom: 120px
}

.qiye-intro header .container[data-v-29aba738] {
    position: relative
}

.qiye-intro header .title[data-v-29aba738] {
    width: 470px;
    position: absolute;
    left: 20px;
    top: 136px
}

.qiye-intro header .headpic[data-v-29aba738] {
    width: 700px;
    position: absolute;
    right: -5px;
    top: 116px
}

.qiye-intro header .start-btn[data-v-29aba738] {
    background-color: #fff;
    color: #128bed;
    width: 120px;
    height: 42px;
    line-height: 42px;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 20px;
    top: 345px
}

.qiye-intro .feats[data-v-29aba738] {
    position: relative;
    margin-bottom: 130px
}

.qiye-intro .feats .feat-icon[data-v-29aba738] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/btn-f82187ea.png);
    background-size: 120px 180px;
    width: 60px;
    height: 60px;
    float: left;
    margin-right: 20px
}

.qiye-intro .feats .feat-icon.create[data-v-29aba738] {
    background-position: -60px 0px
}

.qiye-intro .feats .feat-icon.member[data-v-29aba738] {
    background-position: -60px -60px
}

.qiye-intro .feats .feat-icon.vip[data-v-29aba738] {
    background-position: -60px -120px
}

.qiye-intro .feats .feats-info[data-v-29aba738] {
    width: 470px
}

.qiye-intro .feats .feats-info .feat-item[data-v-29aba738] {
    cursor: pointer;
    height: 82px;
    padding-left: 20px;
    margin-bottom: 20px;
    border-bottom: solid 2px transparent;
    -webkit-transform: all .3s;
    -ms-transform: all .3s;
    transform: all .3s
}

.qiye-intro .feats .feats-info .feat-item .feat-desc[data-v-29aba738] {
    padding-top: 5px
}

.qiye-intro .feats .feats-info .feat-item .feat-desc h4[data-v-29aba738] {
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 7px;
    color: rgba(0, 0, 0, 0.85)
}

.qiye-intro .feats .feats-info .feat-item .feat-desc p[data-v-29aba738] {
    color: #666
}

.qiye-intro .feats .feats-info .feat-item.active[data-v-29aba738] {
    border-bottom-color: #128bed
}

.qiye-intro .feats .feats-info .feat-item.active h4[data-v-29aba738] {
    color: #128bed
}

.qiye-intro .feats .feats-info .feat-item.active .feat-icon.create[data-v-29aba738] {
    background-position: -0px 0px
}

.qiye-intro .feats .feats-info .feat-item.active .feat-icon.member[data-v-29aba738] {
    background-position: 0px -60px
}

.qiye-intro .feats .feats-info .feat-item.active .feat-icon.vip[data-v-29aba738] {
    background-position: 0px -120px
}

.qiye-intro .feats .feats-preview[data-v-29aba738] {
    position: absolute;
    width: 50%;
    right: 50px;
    top: -10px
}

.qiye-intro .feats .feats-preview img[data-v-29aba738] {
    width: 660px
}

.qiye-intro .imgds .hl[data-v-29aba738] {
    margin-bottom: 100px
}

.qiye-intro .imgds .hl .hl-img[data-v-29aba738] {
    width: 670px;
    float: left
}

.qiye-intro .imgds .hl .hl-info[data-v-29aba738] {
    height: 452px;
    display: table-cell;
    vertical-align: middle;
    padding-left: 40px;
    padding-right: 40px
}

.qiye-intro .imgds .hl .hl-info h4[data-v-29aba738] {
    font-size: 30px;
    margin-bottom: 20px
}

.qiye-intro .imgds .hl .hl-info p[data-v-29aba738] {
    font-family: PingFangSC-Regular, PingFang SC;
    font-size: 14px;
    color: #666;
    white-space: pre-wrap;
    width: 453px;
    line-height: 22px
}

.qiye-intro .imgds .rhl .hl-img[data-v-29aba738] {
    float: right
}

.qiye-intro .trial[data-v-29aba738] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bottom_bg-579d022b.png);
    background-size: cover;
    background-position: center;
    height: 240px;
    position: relative;
    margin-bottom: -50px
}

.qiye-intro .trial .start-btn[data-v-29aba738] {
    width: 120px;
    height: 42px;
    line-height: 42px;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    position: absolute;
    background-color: #128bed;
    color: #fff;
    bottom: 50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.saas-intro[data-v-fe4b90a4] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bg-43733429.jpg);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 810px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 120px;
    margin-bottom: -50px
}

.saas-intro .container[data-v-fe4b90a4] {
    position: relative
}

.saas-intro .contact-panel[data-v-fe4b90a4] {
    width: 452px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    position: absolute;
    top: 70px;
    right: 30px;
    z-index: 2;
    padding: 20px 20px
}

.saas-intro .contact-panel .sales-intro[data-v-fe4b90a4] {
    width: 412px
}

.saas-intro .contact-panel .f-checkbox[data-v-fe4b90a4] {
    margin-top: 5px
}

.saas-intro .contact-panel .act-area[data-v-fe4b90a4] {
    padding-top: 20px;
    padding-bottom: 2px;
    border-top: solid 1px #eee;
    text-align: center;
    margin-top: -10px
}

.saas-intro .contact-panel .act-area .ant-btn[data-v-fe4b90a4] {
    width: 160px
}

.nuser-left[data-v-bd00ddba] {
    float: left
}

.nuser-left .navi-wrap[data-v-bd00ddba] {
    background: #fff;
    border: solid 1px #eee;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch
}

.nuser-left .navi-wrap[data-v-bd00ddba]::-webkit-scrollbar {
    -webkit-appearance: none
}

.nuser-left .navi-wrap[data-v-bd00ddba]::-webkit-scrollbar:vertical {
    width: 0px
}

.nuser-left .navi-wrap[data-v-bd00ddba] {
    width: 200px
}

.nuser-left .navi ul a[data-v-bd00ddba] {
    color: #333
}

.nuser-left .navi ul ul a[data-v-bd00ddba] {
    color: #666
}

.nuser-left .navi ul.nav li a > i[data-v-bd00ddba] {
    margin: -10px -5px -5px -15px
}

.nuser-left .navi ul.nav li li a[data-v-bd00ddba] {
    padding-left: 38px
}

.nuser-left .nav.nav-sub > li.active > a[data-v-bd00ddba] {
    background-color: #F3F9FD;
    color: #128bed;
    border-right: solid 2px #128bed
}

.nuser-left .nav > li.current > a[data-v-bd00ddba] {
    background-color: #f0f3f4;
    color: #128bed
}

.nuser-left .navi ul.nav li a[data-v-bd00ddba] {
    position: relative;
    display: block;
    padding: 8px 10px 8px 16px;
    line-height: 24px;
    font-weight: normal;
    text-transform: none;
    -webkit-transition: background-color 0.2s ease-in-out 0s;
    -o-transition: background-color 0.2s ease-in-out 0s;
    transition: background-color 0.2s ease-in-out 0s
}

.nuser-left .nav > li > a[data-v-bd00ddba]:hover {
    background-color: #F3F9FD;
    color: #128bed
}

.nuser-left .nav > li > a[data-v-bd00ddba]:focus {
    background: #fff
}

.nuser-left .nav.nav-sub > li .stats[data-v-bd00ddba] {
    font-size: 12px
}

.nuser-left .nav.nav-sub > li .trend[data-v-bd00ddba] {
    position: relative;
    top: -2px;
    left: 1px
}

.nuser-left .navi ul.nav li .det[data-v-bd00ddba] {
    padding: 0px 10px 10px 38px;
    color: #999
}

.nuser-left .navi ul.nav li .det > .text-primary[data-v-bd00ddba] {
    cursor: pointer
}

.nuser-left .navi ul.nav li .det .tooltip[data-v-bd00ddba] {
    margin-left: 50px
}

.nuser-left .navi .top-text[data-v-bd00ddba] {
    text-align: center;
    color: #333333;
    font-size: 14px;
    padding-bottom: 15px;
    border-bottom: solid 1px #eee
}

.nuser-left .navi .top-text .m_question[data-v-bd00ddba] {
    top: 3px
}

.nuser-left .navi .top-text .m_question + .tooltip[data-v-bd00ddba] {
    right: 10px
}

.nuser-left .navi .top-text .btn[data-v-bd00ddba] {
    display: block;
    margin: auto;
    margin-top: 10px;
    width: 90px
}

.nuser-left .pa[data-v-bd00ddba] {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pa_icon-37552522.png);
    background-size: 54px 36px;
    line-height: 40px;
    left: -4px;
    top: 3px;
    vertical-align: top
}

.nuser-left .pa.pa-info[data-v-bd00ddba] {
    background-position: 0px 0px
}

.nuser-left .pa.pa-report[data-v-bd00ddba] {
    background-position: 18px 0px
}

.nuser-left .pa.pa-radar[data-v-bd00ddba] {
    background-position: 36px 0px
}

.nuser-left .pa.pa-syr[data-v-bd00ddba] {
    background-position: 0px -18px
}

.nuser-left .pa.pa-user[data-v-bd00ddba] {
    background-position: 18px -18px
}

.nuser-left .pa.pa-qiye[data-v-bd00ddba] {
    background-position: 36px -18px
}

.nuser-left .font-bold[data-v-bd00ddba] {
    font-weight: 600
}

.nuser-left .text-active[data-v-bd00ddba], .nuser-left .active > .text[data-v-bd00ddba], .nuser-left .active > .auto .text[data-v-bd00ddba] {
    display: none !important
}

.nuser-left .active > .text-active[data-v-bd00ddba], .nuser-left .active > .auto .text-active[data-v-bd00ddba] {
    display: inline-block !important
}

.user-center .page-col-sm {
    width: 200px
}

.user-center .page-col-lg {
    width: 1005px
}

.user-center .npanel-body.fpage {
    min-height: 660px
}

.user-center .npanel-body.hpage {
    min-height: 568px
}

.user-center.hide-menu .page-col-sm {
    display: none
}

.user-center.hide-menu .page-col-lg {
    width: 100%
}

.msg-list[data-v-3859cff8] {
    padding: 0px 20px;
    display: block;
    position: relative;
    cursor: pointer
}

.msg-list.noHref[data-v-3859cff8] {
    cursor: default
}

.msg-list .msg-item[data-v-3859cff8] {
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #eee;
    padding-bottom: 20px;
    padding-top: 20px;
    padding-left: 25px;
    position: relative
}

.msg-list .msg-item .unreadflag[data-v-3859cff8] {
    position: absolute;
    left: 0px;
    top: 28px
}

.msg-list .msg-item .part[data-v-3859cff8] {
    position: relative;
    display: inline-block
}

.msg-list .msg-item .date[data-v-3859cff8] {
    position: absolute;
    right: 0px;
    top: 20px;
    color: #666
}

.msg-list .msg-item .type[data-v-3859cff8] {
    height: 20px;
    width: 20px;
    position: absolute;
    left: 0px;
    top: 20px
}

.msg-list .msg-item .head[data-v-3859cff8] {
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
    margin-left: 5px
}

.msg-list .msg-item .detail[data-v-3859cff8] {
    color: #666;
    margin-left: 5px
}

.msg-list .nolook[data-v-3859cff8] {
    padding-left: 36px
}

.msg-list .nolook .type[data-v-3859cff8] {
    left: 14px
}

.msg-list[data-v-3859cff8]:nth-last-child(2) {
    margin-bottom: 20px
}

.msg-list[data-v-3859cff8]:hover {
    background-color: #f3f9fd
}

.msg-list:hover .head[data-v-3859cff8] {
    color: #128bed
}

.msg .pills-item[data-v-7702cde1] {
    position: relative
}

.msg .pills-item .new[data-v-7702cde1] {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fd485e;
    right: 5px;
    top: 0px
}

.msg .pills-item:hover .new[data-v-7702cde1] {
    height: 0;
    width: 0
}

.msg .msg-head[data-v-7702cde1] {
    margin-bottom: 15px
}

.msg .msgList[data-v-7702cde1] {
    padding-bottom: 20px;
    min-height: 570px
}

.msg .msgList .appPage[data-v-7702cde1] {
    float: right;
    margin-top: 20px
}

.msg .msgSetting .msgSettingTip[data-v-7702cde1] {
    background: #f3f9fd;
    border-radius: 4px;
    padding: 10px;
    font-size: 14px;
    color: #666;
    line-height: 22px
}

.msg .setting-list[data-v-7702cde1] {
    margin-top: 20px
}

.msg .setting-list .setting-item[data-v-7702cde1] {
    margin-bottom: 20px;
    margin-left: 25px;
    display: inline-block
}

.msg .setting-list .setting-item[data-v-7702cde1]:nth-child(5n-4) {
    margin-left: 0
}

.msg .setting-list .setting-title[data-v-7702cde1] {
    width: 56px;
    height: 22px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    margin-right: 5px;
    display: inline-block;
    line-height: 22px
}

.msg .nodata[data-v-7702cde1] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 200px !important;
    height: 618px
}

.tec .top-bg[data-v-793bf6ca] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/tec_bg-84e1be35.png);
    background-size: cover;
    background-position: center;
    height: 200px;
    margin-bottom: 15px;
    padding-top: 75px
}

.tec .top-bg h1[data-v-793bf6ca] {
    margin: 0px;
    text-align: center;
    color: #fff;
    font-size: 46px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400
}

.tec .tec-panel[data-v-793bf6ca] {
    margin-bottom: 40px;
    margin-right: -20px
}

.tec .tec-panel .item[data-v-793bf6ca] {
    position: relative;
    background: #fff;
    height: 152px;
    float: left;
    width: 393px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 20px;
    padding: 15px 15px;
    border: solid 1px #eee
}

.tec .tec-panel .item .title[data-v-793bf6ca] {
    font-size: 16px;
    color: #333;
    font-weight: bold
}

.tec .tec-panel .item .count[data-v-793bf6ca] {
    color: #999;
    font-size: 16px;
    margin-left: 5px
}

.tec .tec-panel .item .content[data-v-793bf6ca] {
    color: #666;
    height: 84px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical
}

.tec .tec-panel .item[data-v-793bf6ca]:hover {
    background: #F3F9FD
}

.tec .tec-panel .item:hover .title[data-v-793bf6ca] {
    color: #128bed
}

.tec .pills .pills-header[data-v-793bf6ca] {
    color: #333;
    font-size: 16px;
    line-height: 28px;
    padding: 0px;
    font-weight: bold;
    padding-left: 10px
}

.tec .pills .pills-header a[data-v-793bf6ca] {
    color: #333
}

.tec .pills .pills-header a[data-v-793bf6ca]:hover {
    color: #128bed
}

.tec .pills .pills-item[data-v-793bf6ca] {
    line-height: 28px;
    padding: 0px 15px;
    color: #666
}

.tec .pills .pills-item[data-v-793bf6ca]:hover {
    background: none;
    color: #128bed
}

.tec .pills .pills-item:hover .text-gray[data-v-793bf6ca] {
    color: #999
}

.ntable-list .title[data-v-04a2110e] {
    display: inline-block
}

.pills-elib-foot[data-v-083849b6] {
    text-align: right
}

.vip-tag[data-v-083849b6] {
    position: absolute;
    width: 20px;
    height: 9px;
    background-image: url(../../images/website/company/icon_vip_tag-53a3d7fe.png);
    background-size: 20px 9px;
    margin-left: 66px;
    margin-top: -2px
}

.new-company-search[data-v-550181ad] {
    display: block
}

.new-company-search .ncompany-search-body .page-tip[data-v-550181ad] {
    height: 40px;
    line-height: 40px;
    background: #F3F9FE;
    margin-bottom: 20px;
    text-align: center;
    color: #999
}

.new-company-search .ncompany-search-bottom[data-v-550181ad] {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 10;
    margin-bottom: 0px;
    height: 64px;
    background: #fff;
    border-top: solid 1px #eee;
    padding-top: 15px
}

.new-company-search .ncompany-search-bottom .btn[data-v-550181ad] {
    width: 82px
}

.new-company-search .guide-body .ncompany-bg[data-v-550181ad] {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 30px auto 20px auto;
    width: 190px;
    height: 150px;
    text-align: center
}

.new-company-search .guide-body .ncompany-bg img[data-v-550181ad] {
    width: 100%;
    height: 100%
}

.new-company-search .guide-body .ncompany-desc[data-v-550181ad] {
    text-align: center;
    color: #999;
    margin-bottom: 10px
}

[data-v-743573e6] .new-company-pay-vip .pay-intro img {
    height: 280px !important
}

.new-company-list .ncompany-breadcrumb li[data-v-743573e6]:last-child:before {
    content: ''
}

.new-company-list .choosen .pills-after[data-v-743573e6] {
    padding-left: 12px;
    max-width: 1000px
}

.new-company-list .choosen .pills-item[data-v-743573e6] {
    position: relative;
    color: #128bed;
    background: #fff;
    border: solid 1px #128bed;
    line-height: 22px;
    padding: 0px 20px 0px 6px;
    font-size: 12px;
    max-width: 250px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    position: relative;
    margin-left: 0px;
    margin-right: 10px;
    cursor: pointer
}

.new-company-list .choosen .pills-item[data-v-743573e6]:hover {
    background: #128bed;
    color: #fff
}

.new-company-list .choosen .pills-item[data-v-743573e6]:after {
    content: "X";
    position: absolute;
    right: 6px;
    top: 0px
}

.new-company-list .choosen .disabled-choosen[data-v-743573e6] {
    color: #999;
    border: 1px solid #D6D6D6
}

.new-company-list .choosen .disabled-choosen[data-v-743573e6]:hover {
    background: #fff;
    color: #999
}

.new-company-list .choosen .disabled-choosen[data-v-743573e6]:after {
    content: ''
}

.pills-elib-foot[data-v-85e5d69c] {
    text-align: right
}

.vip-tag[data-v-85e5d69c] {
    position: absolute;
    width: 20px;
    height: 9px;
    background-image: url(../../images/website/company/icon_vip_tag-53a3d7fe.png);
    background-size: 20px 9px;
    margin-left: 66px;
    margin-top: -2px
}


.chain-search .chain-header[data-v-1e680aaf] {
    height: 350px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/chain_bg-173f3e39.png);
    background-size: cover;
    background-position: center;
    padding-top: 70px
}

.chain-search .search-area[data-v-1e680aaf] {
    width: 880px;
    margin: auto
}

.chain-search .search-area .title[data-v-1e680aaf] {
    text-align: center;
    font-size: 40px;
    letter-spacing: 4px;
    font-weight: normal;
    color: #fff
}

.chain-search .search-area .input-group[data-v-1e680aaf] {
    margin-top: 60px
}

.chain-search .search-area .input-group .clear-searchkey[data-v-1e680aaf] {
    top: 20px;
    right: 120px
}

.chain-search .search-area .input-group .form-control[data-v-1e680aaf] {
    border: none;
    font-size: 16px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1) !important;
    border: solid 1px #eee;
    height: 56px
}

.chain-search .search-area .input-group .form-control.no-br[data-v-1e680aaf] {
    border-bottom-left-radius: 0px
}

.chain-search .search-area .input-group .searchbtn[data-v-1e680aaf] {
    background: #FF732D;
    font-size: 20px;
    color: #fff;
    padding: 5px 20px 5px;
    height: 56px;
    border: none;
    border-radius: 0px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    outline: none
}

.chain-search .search-area .input-group .searchbtn[data-v-1e680aaf]:hover {
    background: #F1651F
}

.chain-search .search-area .search-section[data-v-1e680aaf] {
    width: 780px;
    position: absolute;
    z-index: 10
}

.chain-search .search-area .search-section .search-list[data-v-1e680aaf] {
    border: 1px solid #eee;
    border-top: none
}

.chain-search .search-area .search-section .search-list .list-group-item[data-v-1e680aaf] {
    border-width: 1px 0;
    border-radius: 0;
    border-color: #FAFAFA;
    color: #333
}

.chain-search .search-area .search-section .search-list .list-group-item[data-v-1e680aaf]:first-child {
    border-top: 0
}

.chain-search .search-area .search-section .search-list .list-group-item.keyMove[data-v-1e680aaf] {
    background-color: #FAFAFA
}

.chain-search .search-area .search-section .search-list .list-group-item[data-v-1e680aaf]:hover {
    background-color: #F3F9FD;
    color: #128bed
}

.chain-search .search-area .search-section .search-list .cell[data-v-1e680aaf] {
    display: table;
    width: 100%
}

.chain-search .search-area .search-section .search-list .logo[data-v-1e680aaf] {
    width: 32px;
    display: table-cell;
    vertical-align: middle
}

.chain-search .search-area .search-section .search-list .logo > .app-auto-logo[data-v-1e680aaf] {
    vertical-align: middle
}

.chain-search .search-area .search-section .search-list .text[data-v-1e680aaf] {
    display: table-cell;
    vertical-align: middle;
    line-height: 1.6
}

.chain-search .search-area .search-section .search-list .stext[data-v-1e680aaf] {
    line-height: 1.2;
    font-size: 12px;
    color: #999
}

.chain-search .search-area .search-section .search-list .usericon[data-v-1e680aaf] {
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 6px;
    float: left;
    margin-right: 10px
}

.chain-search .search-area .search-section .search-list .usericon[first-letter][data-v-1e680aaf]:not([style]):empty:before {
    color: #fff !important;
    font-size: 16px;
    line-height: 32px
}

.chain-search .search-area .search-section .search-list .rstu[data-v-1e680aaf] {
    display: table-cell;
    text-align: right;
    padding-left: 10px;
    vertical-align: middle
}

.chain-search .search-area .search-section .search-list .ntag[data-v-1e680aaf] {
    padding: 4px;
    white-space: nowrap;
    vertical-align: baseline
}

.chain-search .filter-area[data-v-1e680aaf] {
    margin-top: 15px;
    background: #fff;
    border: solid 1px #eee;
    padding: 15px 15px
}

.chain-search .list[data-v-1e680aaf] {
    margin-top: 5px;
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: 20px
}

.chain-search .list .item[data-v-1e680aaf] {
    width: 400px;
    height: 260px;
    display: block;
    float: left;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    margin: 5px
}

.chain-search .list .item > img[data-v-1e680aaf] {
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    -o-transition: transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s
}

.chain-search .list .item .title[data-v-1e680aaf] {
    position: absolute;
    text-align: center;
    color: #fff;
    margin: 0px;
    width: 100%;
    line-height: 260px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transition: background 1s;
    -o-transition: background 1s;
    transition: background 1s
}

.chain-search .list .item .mp-tag[data-v-1e680aaf] {
    position: absolute;
    left: 0px;
    top: 0px;
    padding: 5px 8px;
    z-index: 4
}

.chain-search .list .item .mp-tag.k[data-v-1e680aaf] {
    background: #128bed;
    color: #fff
}

.chain-search .list .item .mp-tag.t[data-v-1e680aaf] {
    background: #E7F4FF;
    color: #128bed
}

.chain-search .list .item .title[data-v-1e680aaf]:hover {
    background: rgba(0, 0, 0, 0)
}

.chain-search .list .item .title:hover + img[data-v-1e680aaf] {
    -webkit-transform: scale(1.04, 1.04);
    -ms-transform: scale(1.04, 1.04);
    transform: scale(1.04, 1.04)
}

.industry-detail .prod-list .list-item[data-v-27e31bfb] {
    width: 25%
}

.industry-detail .prod-list .list-item .prod-img[data-v-27e31bfb] {
    display: inline-block;
    width: 40px;
    height: auto;
    max-height: 40px
}

.industry-detail .company-list .list-item[data-v-27e31bfb] {
    width: 50%
}

.industry-detail .company-list .list-item .company-img[data-v-27e31bfb] {
    display: inline-block;
    width: 40px;
    height: auto;
    max-height: 40px
}

.industry-list[data-v-8ca397ae] {
    padding: 22px 19px;
    border-top: solid 1px #eee
}

.industry-list .industry-type .type-title .left-border[data-v-8ca397ae] {
    border-left: 4px solid #128BED
}

.industry-list .industry-type .type-title .title-name[data-v-8ca397ae] {
    color: #333;
    margin-left: 6px
}

.industry-list .industry-type .type-list[data-v-8ca397ae] {
    margin: 10px 0 10px
}

.industry-list .industry-type .type-list .type-item[data-v-8ca397ae] {
    display: inline-block;
    height: 32px;
    line-height: 30px;
    padding: 0 6px;
    color: #666666;
    border: 1px solid #D6D6D6;
    border-radius: 3px;
    margin-right: 25px;
    cursor: pointer
}

.industry-list .industry-type .type-list .type-item.type-active[data-v-8ca397ae] {
    border: 1px solid #128BED;
    color: #128BED
}

.chain-detail .chain-bg[data-v-0c1812b0] {
    padding: 15px;
    background: #0B2437;
    margin-bottom: 10px;
    text-align: center;
    border: solid 1px #eee
}

.chain-detail .chain-bg h1[data-v-0c1812b0] {
    color: #fff;
    margin: 0px;
    font-size: 24px;
    line-height: 36px;
    margin-top: 10px;
    display: inline-block
}

.chain-detail .chain-bg .chain-head[data-v-0c1812b0] {
    position: relative
}

.chain-detail .chain-bg .chain-action[data-v-0c1812b0] {
    position: absolute;
    right: 15px;
    top: 10px
}

.chain-detail .chain-bg .btn[data-v-0c1812b0] {
    width: 82px;
    margin-top: 20px;
    margin-right: 15px;
    border: solid 1px #eee;
    color: #fff
}

.chain-detail .chain-main[data-v-0c1812b0] {
    height: 950px;
    margin-bottom: 15px
}

.chain-main .com-node {
    cursor: pointer
}

.chain-main .com-node:hover {
    fill: white
}

.qcc-code[data-v-402eb784] {
    background: #fff
}

.qcc-code .search-top[data-v-402eb784] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/qcc_code_top-f03896e0.png);
    background-size: cover;
    background-position: center;
    height: 400px;
    margin-bottom: 15px;
    padding-top: 60px;
    -webkit-transition: height .2s;
    -o-transition: height .2s;
    transition: height .2s
}

.qcc-code .search-top .title[data-v-402eb784] {
    text-align: center;
    font-size: 46px;
    color: #fff;
    font-weight: normal
}

.qcc-code .search-top .search-area[data-v-402eb784] {
    height: 240px;
    position: relative;
    background-size: cover;
    background-position: center;
    padding-top: 200px;
    width: 600px;
    margin: auto
}

.qcc-code .search-top .search-area .input-group .form-control[data-v-402eb784] {
    border: none;
    font-size: 16px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border: solid 1px #eee;
    height: 50px
}

.qcc-code .search-top .search-area .input-group .form-control.no-br[data-v-402eb784] {
    border-bottom-left-radius: 0px !important
}

.qcc-code .search-top .search-area .input-group .searchbtn[data-v-402eb784] {
    background: #E9F3FF;
    font-size: 20px;
    color: #128BED;
    padding: 5px 20px 5px;
    height: 50px;
    border: none;
    border-radius: 0px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.qcc-code .search-top .search-area .search-section[data-v-402eb784] {
    padding-right: 101px
}

.qcc-code .search-top .search-area .search-section .search-list[data-v-402eb784] {
    border: 1px solid #eee;
    border-top: none
}

.qcc-code .search-top .search-area .search-section .search-list .list-group-item[data-v-402eb784] {
    border-width: 1px 0;
    border-radius: 0;
    border-color: #FAFAFA;
    color: #333
}

.qcc-code .search-top .search-area .search-section .search-list .list-group-item[data-v-402eb784]:first-child {
    border-top: 0
}

.qcc-code .search-top .search-area .search-section .search-list .list-group-item.keyMove[data-v-402eb784] {
    background-color: #FAFAFA
}

.qcc-code .search-top .search-area .search-section .search-list .list-group-item[data-v-402eb784]:hover {
    background-color: #F3F9FD;
    color: #128bed
}

.qcc-code .search-top .search-area .search-section .search-list .cell[data-v-402eb784] {
    display: table;
    width: 100%
}

.qcc-code .search-top .search-area .search-section .search-list .logo[data-v-402eb784] {
    width: 32px;
    display: table-cell;
    vertical-align: middle
}

.qcc-code .search-top .search-area .search-section .search-list .logo > .app-auto-logo[data-v-402eb784] {
    vertical-align: middle
}

.qcc-code .search-top .search-area .search-section .search-list .text[data-v-402eb784] {
    display: table-cell;
    vertical-align: middle;
    line-height: 1.6
}

.qcc-code .search-top .search-area .search-section .search-list .stext[data-v-402eb784] {
    line-height: 1.2;
    font-size: 12px;
    color: #999
}

.qcc-code .search-top .search-area .search-section .search-list .usericon[data-v-402eb784] {
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 6px;
    float: left;
    margin-right: 10px
}

.qcc-code .search-top .search-area .search-section .search-list .usericon[first-letter][data-v-402eb784]:not([style]):empty:before {
    color: #fff !important;
    font-size: 16px;
    line-height: 32px
}

.qcc-code .search-top .search-area .search-section .search-list .rstu[data-v-402eb784] {
    display: table-cell;
    text-align: right;
    padding-left: 10px;
    vertical-align: middle
}

.qcc-code .search-top .search-area .search-section .search-list .ntag[data-v-402eb784] {
    padding: 4px;
    white-space: nowrap;
    vertical-align: baseline
}

.qcc-code .center-content[data-v-402eb784] {
    margin-top: 60px;
    margin-bottom: 100px
}

.qcc-code .center-content .left-desc[data-v-402eb784] {
    float: left;
    width: 660px
}

.qcc-code .center-content .left-desc h2[data-v-402eb784] {
    color: #333;
    font-size: 24px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    margin-bottom: 30px
}

.qcc-code .center-content .left-desc p[data-v-402eb784] {
    font-size: 16px;
    color: #666;
    line-height: 24px;
    margin-bottom: 15px
}

.qcc-code .center-content .card-demo[data-v-402eb784] {
    float: right;
    width: 520px;
    background-color: #F3F9FD
}

.qcc-code .center-content .card-demo img[data-v-402eb784] {
    display: block;
    margin: auto;
    width: 266px
}

.qcc-code .bottom-intro[data-v-402eb784] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/qcc_code_bottom-214163c4.png);
    background-size: cover;
    background-position: center;
    height: 240px;
    margin-bottom: -50px
}

.qcc-code .qcccode-modal[data-v-402eb784] {
    width: 375px;
    height: 667px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/qcccode_cardbg-d260a9a5.png);
    background-size: 375px 667px;
    margin-top: 80px;
    padding: 25px
}

.qcc-code .qcccode-modal .close[data-v-402eb784] {
    color: #fff;
    position: absolute;
    right: 12px;
    top: 10px;
    opacity: .6;
    font-weight: 100
}

.qcc-code .qcccode-modal .title[data-v-402eb784] {
    color: #fff;
    margin-top: 150px;
    font-size: 18px;
    line-height: 25px;
    font-family: PingFangSC-Semibold, PingFang SC;
    text-align: center;
    min-height: 55px
}

.qcc-code .qcccode-modal .code-panel[data-v-402eb784] {
    margin-top: 40px;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    border-radius: 4px;
    text-align: center;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    color: #333;
    font-size: 38px;
    line-height: 80px;
    font-family: PingFangSC-Semibold, PingFang SC
}

.qcc-code .qcccode-modal .link[data-v-402eb784] {
    margin-top: 50px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400
}

.qcc-code .qcccode-modal .link > a[data-v-402eb784] {
    color: #fff !important;
    display: block;
    margin-top: 10px
}

.qcc-code .qcccode-modal .btn[data-v-402eb784] {
    display: block;
    width: 175px;
    margin: 45px auto;
    background: #fff;
    line-height: 32px;
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    border-radius: 4px
}

.qcc-code .qcccode-modal .btn[data-v-402eb784]:hover {
    color: #128bed;
    opacity: .95
}

.product-log .top-bg[data-v-7be7a130] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/product_log_top-405f91dc.png);
    background-size: cover;
    background-position: center;
    height: 200px;
    margin-bottom: 15px
}

.product-log .npanel-body[data-v-7be7a130] {
    min-height: 660px
}

.product-log .list[data-v-7be7a130] {
    padding: 0px 9px
}

.product-log .list .item[data-v-7be7a130] {
    border: solid 1px #E4EEF6;
    float: left;
    width: 340px;
    height: 280px;
    margin: 15px 25px;
    padding: 15px
}

.product-log .list .item .title[data-v-7be7a130] {
    color: #333333;
    font-size: 16px;
    line-height: 24px;
    height: 48px
}

.product-log .list .item img[data-v-7be7a130] {
    height: 150px;
    width: 100%;
    display: block
}

.product-log .line[data-v-ce8572b6] {
    height: 1px;
    background: #EEEEEE;
    margin: 20px 0px
}

.product-log .same-list .title[data-v-ce8572b6] {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333
}

.product-log .same-list .time[data-v-ce8572b6] {
    font-size: 12px;
    line-height: 22px
}

.product-log[data-v-ce8572b6] .content img {
    width: 100%
}

.product-directory .npanel-body[data-v-3ab2834c] {
    padding: 0px
}

.product-directory .dirline[data-v-3ab2834c] {
    padding-left: 70px
}

.product-directory .dirline[data-v-3ab2834c]:after {
    content: "\0020";
    display: block;
    height: 0;
    clear: both
}

.product-directory .dirline[data-v-3ab2834c]:not(:last-child) {
    border-bottom: solid 1px #eee
}

.product-directory .dirline .dirhead[data-v-3ab2834c] {
    float: left;
    margin-left: -70px;
    padding: 8px 8px;
    width: 70px;
    text-align: center;
    color: #333
}

.product-directory .dirline .dirnames[data-v-3ab2834c] {
    float: left
}

.product-directory .dirline .dirnames .dirname[data-v-3ab2834c] {
    display: inline-block;
    padding: 8px 8px;
    color: #666
}

.product-directory .dirline .dirnames .dirname[data-v-3ab2834c]:hover {
    color: #128bed
}

.product-directory .dirline .dirnames .dirname.more[data-v-3ab2834c] {
    color: #128bed
}

.product-seo .npanel-body[data-v-4ad7eafd] {
    padding: 0px;
    min-height: 500px
}

.product-seo[data-v-4ad7eafd]:after {
    content: "\0020";
    display: block;
    height: 0;
    clear: both
}

.product-seo .dirnames .dirname[data-v-4ad7eafd] {
    display: inline-block;
    padding: 12px 15px;
    color: #666
}

.product-seo .dirnames .dirname[data-v-4ad7eafd]:hover {
    color: #128bed
}

.feedback-page .top-bg {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bg-f47c6506.png);
    background-size: cover;
    background-position: center;
    height: 280px;
    margin-bottom: 15px;
    text-align: center;
    color: #fff;
    padding-top: 40px
}

.feedback-page .top-bg .logo {
    width: 80px;
    margin-bottom: 15px
}

.feedback-page .top-bg .title {
    font-size: 40px;
    margin-top: 10px;
    margin-bottom: 15px
}

.feedback-page .top-bg .text {
    font-size: 20px
}

.feedback-page .pform {
    width: 660px;
    margin: auto
}

.feedback-page .pform .form-group {
    margin-bottom: 30px
}

.feedback-page .pform input.form-control, .feedback-page .pform select.form-control {
    height: 40px
}

.feedback-page .pform .verify-code-group {
    position: relative
}

.feedback-page .pform .dropdown-menu {
    margin-top: 1px
}

.feedback-page .pform .vcode-btn {
    top: 0px;
    line-height: 40px;
    margin-right: 0px
}

.feedback-page .pform .vcode-btn:after {
    top: 0px;
    margin-top: 8px
}

.feedback-page .pform .col-pre {
    color: #333;
    line-height: 40px
}

.feedback-page .pform .col-after {
    width: 525px
}

.feedback-page .pform .redstar {
    color: #FD485E
}

.feedback-page .pform .pform-btn {
    padding-top: 20px;
    border-top: solid 1px #eee
}

.feedback-page .se-item {
    width: 80px;
    border: 1px solid #ddd;
    display: inline-block;
    font-size: 13px;
    text-align: center;
    margin-right: 10px;
    line-height: 30px;
    border-radius: 2px;
    margin-bottom: 10px;
    color: #333
}

.feedback-page .se-item:hover {
    color: #181a1c
}

.feedback-page .se-item.active {
    color: #128bed;
    border-color: #128bed
}

@media (max-width: 768px) {
    .feedback-page .npanel-body {
        padding-left: 10px
    }

    .feedback-page .top-bg {
        padding: 30px 20px;
        height: auto
    }

    .feedback-page .top-bg .title {
        font-size: 18px
    }

    .feedback-page .top-bg .text {
        font-size: 16px
    }

    .feedback-page .pform {
        width: 100%
    }

    .feedback-page .pform .form-group {
        margin-left: 15px;
        margin-right: 15px
    }

    .feedback-page .pform .col-pre {
        margin-left: 0px
    }

    .feedback-page .pform .col-after {
        width: 100%
    }
}

.change-phone .change-phone-process {
    height: 100%;
    margin: -30px -15px 50px -15px;
    background: #F6FAFF
}

.change-phone .change-phone-process .ntable td {
    border: none
}

.change-phone .change-phone-process .cprocess-item {
    width: 226px
}

.change-phone .change-phone-process .cprocess-line .cprocess-item:before {
    margin: 0 8px
}

.change-phone .change-phone-process .process-item-wrap {
    margin-left: 25px
}

.change-phone .change-phone-upload-desc {
    font-size: 12px
}

@media (max-width: 768px) {
    .change-phone .change-phone-process {
        display: none
    }
}

.change-phone .change-phone-old-desc {
    color: #999;
    font-size: 12px;
    margin: 10px 0
}

.showBorder {
    color: #128bed
}

.showBorder .dot {
    border: 4px solid #e9f3ff;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    background: #128bed !important
}

.feedback-page .top-bg[data-v-31792d5b] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bg-f47c6506.png);
    background-size: cover;
    background-position: center;
    height: 280px;
    margin-bottom: 15px;
    text-align: center;
    color: #fff;
    padding-top: 40px
}

.feedback-page .top-bg .logo[data-v-31792d5b] {
    width: 80px;
    margin-bottom: 15px
}

.feedback-page .top-bg .title[data-v-31792d5b] {
    font-size: 40px;
    margin-top: 10px;
    margin-bottom: 15px
}

.feedback-page .top-bg .text[data-v-31792d5b] {
    font-size: 20px
}

.feedback-page .pform[data-v-31792d5b] {
    width: 660px;
    margin: auto
}

.feedback-page .pform .form-group[data-v-31792d5b] {
    margin-bottom: 30px
}

.feedback-page .pform input.form-control[data-v-31792d5b], .feedback-page .pform select.form-control[data-v-31792d5b] {
    height: 40px
}

.feedback-page .pform .verify-code-group[data-v-31792d5b] {
    position: relative
}

.feedback-page .pform .dropdown-menu[data-v-31792d5b] {
    margin-top: 1px
}

.feedback-page .pform .vcode-btn[data-v-31792d5b] {
    top: 0px;
    line-height: 40px;
    margin-right: 0px
}

.feedback-page .pform .vcode-btn[data-v-31792d5b]:after {
    top: 0px;
    margin-top: 8px
}

.feedback-page .pform .col-pre[data-v-31792d5b] {
    color: #333;
    line-height: 40px
}

.feedback-page .pform .col-after[data-v-31792d5b] {
    width: 525px
}

.feedback-page .pform .redstar[data-v-31792d5b] {
    color: #FD485E
}

.feedback-page .pform .pform-btn[data-v-31792d5b] {
    padding-top: 20px;
    border-top: solid 1px #eee
}

.feedback-page .se-item[data-v-31792d5b] {
    width: 80px;
    border: 1px solid #ddd;
    display: inline-block;
    font-size: 13px;
    text-align: center;
    margin-right: 10px;
    line-height: 30px;
    border-radius: 2px;
    margin-bottom: 10px;
    color: #333
}

.feedback-page .se-item[data-v-31792d5b]:hover {
    color: #181a1c
}

.feedback-page .se-item.active[data-v-31792d5b] {
    color: #128bed;
    border-color: #128bed
}

@media (max-width: 768px) {
    .feedback-page .npanel-body[data-v-31792d5b] {
        padding-left: 10px
    }

    .feedback-page .top-bg[data-v-31792d5b] {
        padding: 30px 20px;
        height: auto
    }

    .feedback-page .top-bg .title[data-v-31792d5b] {
        font-size: 18px
    }

    .feedback-page .top-bg .text[data-v-31792d5b] {
        font-size: 16px
    }

    .feedback-page .pform[data-v-31792d5b] {
        width: 100%
    }

    .feedback-page .pform .form-group[data-v-31792d5b] {
        margin-left: 15px;
        margin-right: 15px
    }

    .feedback-page .pform .col-pre[data-v-31792d5b] {
        margin-left: 0px
    }

    .feedback-page .pform .col-after[data-v-31792d5b] {
        width: 100%
    }
}

.part_right[data-v-6541c465] {
    padding-left: 0
}

.head[data-v-6541c465] {
    padding: 13px 15px;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 24px;
    background-color: #fcfcfc;
    border-bottom: 1px solid #eee
}

.head-subTitle[data-v-6541c465] {
    padding: 8px 15px
}

.head-subTitle .searchInput[data-v-6541c465] {
    float: right
}

.part_list[data-v-6541c465] {
    width: 100%;
    overflow: hidden
}

.part_list .part_list_contain[data-v-6541c465] {
    height: 700px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: auto;
    width: 100%
}

.part_list .part_list_contain .item[data-v-6541c465] {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 22px;
    border-bottom: 1px solid #eeeeee;
    padding: 11px 15px;
    background: #fff;
    cursor: pointer
}

.part_list .part_list_contain .item[data-v-6541c465]:last-child {
    border-bottom: none
}

.part_list .part_list_contain .item_active[data-v-6541c465] {
    background: #f2f9fc;
    color: #128bed
}

.sub_part[data-v-6541c465] {
    padding: 0px 14px;
    position: relative;
    height: auto;
    min-height: 700px;
    overflow: hidden
}

.sub_part .tip_detail[data-v-6541c465] {
    position: relative;
    z-index: 100;
    padding: 10px 0px;
    line-height: 22px;
    border-bottom: 1px solid #eee;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.sub_part .tip_detail > span[data-v-6541c465] {
    height: 16px;
    width: 16px;
    text-align: center;
    line-height: 22px;
    display: block;
    margin-right: 5px;
    float: left;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/tips-1bddaed0.png);
    background-size: 100% 100%;
    margin-top: 3px
}

.sub_part .tip_detail > div[data-v-6541c465] {
    padding-left: 21px
}

.sub_part .right_content[data-v-6541c465] {
    height: auto
}

.sub_part .right_content[data-v-6541c465]::after {
    display: block;
    height: 100%;
    width: 1px;
    background-color: #eee;
    position: absolute;
    left: 41.66666667%;
    z-index: 10;
    content: ""
}

.sub_part .right_content .second_content[data-v-6541c465] {
    position: relative;
    height: 100%;
    padding-right: 0
}

.sub_part .right_content .second_content .second_list[data-v-6541c465] {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative
}

.sub_part .right_content .second_content .second_list .second_list_contain[data-v-6541c465] {
    padding-top: 15px;
    height: 100%;
    position: relative;
    width: 100%
}

.sub_part .right_content .second_content .second_list .second_list_contain .second_item[data-v-6541c465] {
    width: 100%;
    margin-bottom: 10px;
    cursor: pointer
}

.sub_part .right_content .second_content .second_list .second_list_contain .second_item > div[data-v-6541c465]:first-child {
    float: left
}

.sub_part .right_content .second_content .second_list .second_list_contain .second_item > div[data-v-6541c465]:nth-child(2) {
    margin-left: 45px;
    padding-right: 16px
}

.sub_part .right_content .second_content .second_list .second_list_contain .second_item_active[data-v-6541c465] {
    color: #128bed;
    position: relative
}

.sub_part .right_content .second_content .second_list .second_list_contain .second_item_active > div[data-v-6541c465]:nth-child(2) {
    position: relative
}

.sub_part .right_content .second_content .second_list .second_list_contain .second_item_active > div[data-v-6541c465]:nth-child(2)::before {
    display: block;
    content: "";
    height: 100%;
    width: 2px;
    position: absolute;
    background-color: #128bed;
    right: 0px;
    top: 0
}

.sub_part .right_content .third_content[data-v-6541c465] {
    padding: 15px 20px;
    height: 100%
}

.sub_part .right_content .third_content > div[data-v-6541c465] {
    margin-bottom: 15px
}

.sub_part .right_content .third_content > div h5[data-v-6541c465] {
    font-size: 16px;
    font-weight: bold
}

.hideScorll[data-v-6541c465]::-webkit-scrollbar {
    display: none;
    width: 0px
}

.noData[data-v-6541c465] {
    height: 700px
}

.noData .noData-color[data-v-6541c465] {
    color: #999
}

.daily-news-detail[data-v-17722a2d] .daily-app-coy .more-news-item span {
    cursor: pointer
}

.daily-news-detail[data-v-17722a2d] .daily-app-coy .more-news-item:hover {
    background-color: #F3F9FD;
    color: #128bed !important
}

.daily-news-detail[data-v-17722a2d] .daily-app-coy .more-news-item:hover div span a {
    color: #128bed !important
}

.daily-news-detail[data-v-17722a2d] .daily-app-coy div span a {
    color: #333
}

.daily-news-detail .daily-news-header[data-v-17722a2d] {
    position: relative
}

.daily-news-detail .daily-news-header img[data-v-17722a2d] {
    display: inline-block;
    width: 100%;
    height: 100px
}

.daily-news-detail .daily-news-header .paper-date[data-v-17722a2d] {
    position: absolute;
    top: 30px;
    right: 20px;
    font-size: 14px;
    color: #fff
}

.daily-news-detail .daily-news-header .paper-date .paper-date-up[data-v-17722a2d] {
    border-bottom: 1px solid #fff
}

.daily-news-detail .hot-talks .talk-item[data-v-17722a2d] {
    margin: 10px 0;
    font-size: 14px;
    color: 14px
}

.daily-news-detail .hot-talks .talk-item .icon-hot[data-v-17722a2d] {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon-hot-855f839d.png);
    background-repeat: no-repeat;
    background-position: 0px 0px;
    background-size: 20px 20px
}

.daily-news-detail .hot-talks .talk-item .talk-item-title[data-v-17722a2d] {
    margin-left: 30px
}

.daily-news-detail .hot-talks .talk-item[data-v-17722a2d]:first-child {
    margin: 0 0 10px 0
}

.daily-news-detail .single-news-content[data-v-17722a2d] {
    border-bottom: 1px solid #EEE;
    margin-bottom: 20px
}

.daily-news-detail .single-news-content .talk-title[data-v-17722a2d] {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px
}

.daily-news-detail .single-news-content .talk-tags[data-v-17722a2d] {
    margin-bottom: 20px
}

.daily-news-detail .single-news-content .news-talk-body[data-v-17722a2d] {
    margin-bottom: 20px
}

.daily-news-detail .single-news-content .news-talk-img[data-v-17722a2d] {
    width: 100%;
    margin: 20px 0;
    background-color: #333
}

.daily-news-detail .single-news-content .news-talk-img img[data-v-17722a2d] {
    display: inline-block;
    width: 100%;
    height: 100%
}

.daily-news-detail .single-news-content[data-v-17722a2d]:last-child {
    border-bottom: none
}

.daily-news-detail .content-main[data-v-17722a2d] {
    display: inline-block;
    color: #3c89e2
}

.daily-news-detail .more-news-section[data-v-17722a2d] {
    position: relative
}

.daily-news-detail .more-news-section .more-news-item span[data-v-17722a2d] {
    cursor: pointer
}

.daily-news-detail .more-news-section .more-news-item[data-v-17722a2d]:hover {
    background-color: #F3F9FD
}

.daily-news-detail .more-news-section .more-news-item:hover .more-section-name[data-v-17722a2d] {
    color: #128bed !important
}

.daily-news-detail .more-news-section .more-section-date[data-v-17722a2d] {
    position: absolute;
    right: 15px;
    font-size: 14px;
    color: #999
}

.scoms a.list-group-item[data-v-89637ece]:hover {
    background: #E9F3FF
}

.scoms a.list-group-item:hover .title[data-v-89637ece] {
    color: #128bed
}

.app-assets[data-v-af05d2f8] {
    background: #fff
}

.app-assets .msearch-top[data-v-af05d2f8] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bg-4068625e.png);
    background-size: cover;
    margin-bottom: 15px;
    padding-top: 60px;
    -webkit-transition: height 0.2s;
    -o-transition: height 0.2s;
    transition: height 0.2s;
    background-size: 100% 555px
}

.app-assets .msearch-top .title[data-v-af05d2f8] {
    text-align: center;
    font-size: 46px;
    color: #fff;
    font-weight: normal
}

.app-assets .msearch-top .search-area[data-v-af05d2f8] {
    min-height: 240px;
    position: relative;
    background-size: cover;
    background-position: center;
    margin-top: 40px
}

.app-assets .msearch-top .search-area .search-nav[data-v-af05d2f8] {
    display: block;
    margin-bottom: 8px;
    padding-left: 388px
}

.app-assets .msearch-top .search-area .search-nav li[data-v-af05d2f8] {
    cursor: pointer;
    font-size: 16px;
    margin: 10px 0px;
    margin-right: 50px;
    float: left;
    line-height: 16px;
    padding: 5px 8px;
    color: #f9f9f9;
    border-radius: 2px
}

.app-assets .msearch-top .search-area .search-nav li.active[data-v-af05d2f8], .app-assets .msearch-top .search-area .search-nav li[data-v-af05d2f8]:hover {
    color: #128bed;
    background-color: #fff;
    position: relative
}

.app-assets .msearch-top .search-area .input-group[data-v-af05d2f8] {
    width: 880px;
    margin: auto;
    margin-top: 15px
}

.app-assets .msearch-top .search-area .input-group .camera[data-v-af05d2f8] {
    display: none;
    cursor: pointer;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_camera-a1f8c521.png);
    background-size: 48px 24px;
    background-position: -24px 0px;
    width: 24px;
    height: 24px;
    position: absolute;
    opacity: 1;
    top: 13px;
    right: 120px;
    z-index: 5
}

.app-assets .msearch-top .search-area .input-group .camera[data-v-af05d2f8]:hover {
    background-position: 0px 0px
}

.app-assets .msearch-top .search-area .input-group .form-control[data-v-af05d2f8] {
    border: none;
    font-size: 16px;
    border-top-left-radius: 4px;
    border: solid 1px #eee;
    height: 50px
}

.app-assets .msearch-top .search-area .input-group .form-control.add-form-radius[data-v-af05d2f8] {
    border-bottom-left-radius: 4px
}

.app-assets .msearch-top .search-area .input-group .form-control.remove-form-radius[data-v-af05d2f8] {
    border-bottom-left-radius: 0px
}

.app-assets .msearch-top .search-area .input-group .searchbtn[data-v-af05d2f8] {
    font-size: 20px;
    padding: 5px 20px 5px;
    height: 50px;
    border: none;
    border-radius: 0px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.app-assets .msearch-top .search-area .list-group-item[data-v-af05d2f8] {
    border: none;
    padding-bottom: 5px
}

.app-assets .msearch-top .search-area .list-group-item .icon-time[data-v-af05d2f8] {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 5px;
    top: 3px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_time-d1e467eb.png);
    background-size: 16px 16px
}

.app-assets .msearch-top .search-area .list-group-item .key-item[data-v-af05d2f8] {
    margin-bottom: 5px
}

.app-assets .msearch-top .search-area .history[data-v-af05d2f8] {
    padding-bottom: 10px
}

.app-assets .msearch-top .search-area .history-window[data-v-af05d2f8] {
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    position: absolute;
    z-index: 10;
    background: #fff;
    width: 780px;
    left: 170px;
    top: 111px;
    min-height: 100px
}

.app-assets .msearch-top .search-area .mind-nologin[data-v-af05d2f8] {
    position: absolute;
    left: 170px;
    top: 111px;
    width: 779px;
    padding: 5px;
    height: 180px;
    background-color: #fff;
    text-align: center;
    border: 1px solid #eee;
    border-top: none
}

.app-assets .msearch-top .search-area .mind-nologin img[data-v-af05d2f8] {
    width: 312px
}

.app-assets .msearch-top .search-area .nsearch-list-his[data-v-af05d2f8] {
    width: 779px;
    text-align: left;
    position: absolute;
    z-index: 10;
    background: #fff;
    width: 780px;
    left: 170px;
    top: 111px;
    border: 1px solid #eee;
    border-top: none
}

.app-assets .msearch-top .search-area .nsearch-list-his .bt[data-v-af05d2f8] {
    color: #999;
    font-size: 12px;
    cursor: default;
    margin-left: 15px
}

.app-assets .msearch-top .search-area .nsearch-list-his .bt[data-v-af05d2f8]:hover {
    color: #128bed
}

.app-assets .msearch-top .search-area .nsearch-list-his .bt > span[data-v-af05d2f8] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/nsearch_bt-a00554bd.png);
    background-size: 32px 32px;
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    top: 3px;
    left: -2px
}

.app-assets .msearch-top .search-area .nsearch-list-his .bt > .del[data-v-af05d2f8] {
    background-position: -16px 0px
}

.app-assets .msearch-top .search-area .nsearch-list-his .bt:hover > span[data-v-af05d2f8] {
    background-position-y: -16px
}

.app-assets .msearch-top .search-area .nsearch-list-his .text-click[data-v-af05d2f8] {
    line-height: 1.4
}

.app-assets .msearch-top .search-area .nsearch-list-his .bg[data-v-af05d2f8] {
    background: #fafafa
}

.app-assets .msearch-top .search-area .nsearch-list-his .ntag[data-v-af05d2f8]:hover {
    color: #666
}

.app-assets .msearch-top .search-area .nsearch-list .list-group-item[data-v-af05d2f8], .app-assets .msearch-top .search-area .nsearch-list-his .list-group-item[data-v-af05d2f8] {
    border-color: #fafafa
}

.app-assets .msearch-top .search-area .nsearch-list a.keyMoveItem[data-v-af05d2f8]:hover, .app-assets .msearch-top .search-area .nsearch-list-his .keyMoveItem[data-v-af05d2f8]:hover {
    background-color: #f3f9fd;
    color: #128bed
}

.app-assets .msearch-top .search-area .nsearch-list-his .ntag[data-v-af05d2f8] {
    height: auto
}

.app-assets .msearch-top .search-area .nsearch-list-his .ellipsis-line[data-v-af05d2f8] {
    word-break: break-all;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.app-assets .msearch-top .search-area .uploadimg[data-v-af05d2f8] {
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    position: absolute;
    z-index: 10;
    background: #fff;
    width: 780px;
    left: 170px;
    top: 111px;
    height: 200px;
    text-align: center;
    padding: 15px
}

.app-assets .msearch-top .search-area .uploadimg .drag-field[data-v-af05d2f8] {
    height: 100%;
    border: 2px dashed #d6d6d6;
    border-radius: 4px;
    cursor: pointer
}

.app-assets .msearch-top .search-area .uploadimg .upload-icon[data-v-af05d2f8] {
    width: 64px;
    margin-top: 35px;
    margin-bottom: 18px
}

.app-assets .msearch-top .search-area .uploadimg .text[data-v-af05d2f8] {
    color: #999
}

.app-assets .specialBg[data-v-af05d2f8] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/large_bg-ee79a20b.png);
    background-size: 100% 600px
}

.app-assets .intro[data-v-af05d2f8] {
    padding-bottom: 30px;
    padding: 30px 30px;
    padding-top: 15px
}

.app-assets .intro .item[data-v-af05d2f8] {
    margin: 0px 73px;
    float: left;
    display: block;
    text-align: center
}

.app-assets .intro .item img[data-v-af05d2f8] {
    width: 240px
}

.app-assets .intro .item p[data-v-af05d2f8] {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 0px
}

.app-assets.view-list[data-v-af05d2f8] {
    background: #f6f6f6
}

.app-assets.view-list .v-loading[data-v-af05d2f8] {
    min-height: 500px
}

.app-assets.view-list .msearch-top[data-v-af05d2f8] {
    height: 200px;
    padding-top: 0px
}

.app-assets.view-list .msearch-top .title[data-v-af05d2f8] {
    display: none
}

.app-assets.view-list .nm-footer[data-v-af05d2f8] {
    display: none
}

.sbTabs[data-v-af05d2f8] {
    padding-left: 170px;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 24px
}

.sbTabs .sbTabs-item[data-v-af05d2f8] {
    margin-right: 20px;
    cursor: pointer;
    padding-bottom: 3px
}

.sbTabs .sbTabsItemActive[data-v-af05d2f8] {
    font-weight: 600;
    opacity: 1;
    border-bottom: 2px solid #fff
}

.jumpTofl[data-v-af05d2f8] {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%
}

.jumpTofl a[data-v-af05d2f8] {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 26px
}

.shangbiaoIntro[data-v-af05d2f8] {
    width: 1440px;
    margin: 0 auto;
    padding: 0 117px;
    margin-bottom: -50px
}

.shangbiaoIntro .intro[data-v-af05d2f8] {
    padding-left: 0px;
    padding-right: 0px;
    text-align: center
}

.shangbiaoIntro .intro .item[data-v-af05d2f8] {
    margin-right: 82px;
    margin-left: 0px
}

.shangbiaoIntro .intro .item[data-v-af05d2f8]:last-child {
    margin-right: 0px
}

.shangbiaoIntro .intro .item img[data-v-af05d2f8] {
    width: 240px;
    height: 180px
}

.shangbiaoIntro .intro .item p[data-v-af05d2f8] {
    margin-top: 10px;
    font-size: 16px;
    color: #333333;
    line-height: 24px
}

.shangbiaoIntro .intro .item div[data-v-af05d2f8] {
    font-size: 14px;
    color: #999999;
    line-height: 22px
}

.pic-part[data-v-af05d2f8] {
    margin-left: 170px;
    height: 252px;
    width: 900px;
    margin-top: 15px;
    border-radius: 4px 4px 4px 4px;
    border: 1px solid #eeeeee;
    padding: 15px 15px;
    background-color: #fff
}

.pic-part .upFile[data-v-af05d2f8] {
    height: 170px
}

.pic-part .btnPart[data-v-af05d2f8] {
    text-align: center;
    margin-top: 15px
}

.pic-part .btnPart .btn[data-v-af05d2f8] {
    margin-right: 10px;
    min-width: 110px
}

.cases-modal .form-group-cases[data-v-3b80c546] {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee
}

.cases-modal .form-group-cases .label-col[data-v-3b80c546] {
    display: inline-block;
    float: left
}

.cases-modal .form-group-cases .switch-col[data-v-3b80c546] {
    float: right
}

.cases-modal .form-group-cases .act-bottom[data-v-3b80c546] {
    width: 100%;
    color: #999;
    clear: both
}

.cases-modal .form-group-cases[data-v-3b80c546]:after {
    display: table;
    content: ' ';
    clear: both
}

.cases-modal .form-group-cases[data-v-3b80c546]:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.cases-modal .series-cases-list[data-v-3b80c546] {
    max-height: 680px;
    overflow-y: auto
}

.cases-title[data-v-4d858895] {
    width: 90%
}

.case-watch-btn[data-v-4d858895] {
    width: 76px;
    height: 30px;
    font-size: 14px;
    vertical-align: middle;
    padding: 4px 6px
}

.cases-modal .form-group-cases[data-v-4b07d1de] {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee
}

.cases-modal .form-group-cases .label-col[data-v-4b07d1de] {
    display: inline-block;
    float: left
}

.cases-modal .form-group-cases .switch-col[data-v-4b07d1de] {
    float: right
}

.cases-modal .form-group-cases .act-bottom[data-v-4b07d1de] {
    width: 100%;
    color: #999;
    clear: both
}

.cases-modal .form-group-cases[data-v-4b07d1de]:after {
    display: table;
    content: ' ';
    clear: both
}

.cases-modal .form-group-cases[data-v-4b07d1de]:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.cases-modal .series-cases-list[data-v-4b07d1de] {
    max-height: 680px;
    overflow-y: auto
}

.app-cases .v-loading[data-v-67daeb30] {
    min-height: 500px
}

.app-cases .msearch-top[data-v-67daeb30] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/case_searchbg-78f5a906.png);
    background-size: cover;
    background-position: center;
    min-height: 250px;
    margin-bottom: 15px;
    padding-top: 20px;
    -webkit-transition: height .2s;
    -o-transition: height .2s;
    transition: height .2s
}

.app-cases .msearch-top .title[data-v-67daeb30] {
    text-align: center;
    font-size: 46px;
    color: #fff;
    font-weight: normal;
    margin-bottom: 30px
}

.app-cases .msearch-top .search-area[data-v-67daeb30] {
    position: relative;
    width: 900px;
    margin: 30px auto 20px auto
}

.app-cases .msearch-top .search-area .advance-select[data-v-67daeb30] {
    cursor: pointer;
    position: absolute;
    z-index: 15;
    line-height: 50px;
    top: 0px;
    left: 0px;
    width: 120px;
    text-align: center;
    border-right: solid 1px #eee;
    color: #333;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 16px
}

.app-cases .msearch-top .search-area .advance-select .caret[data-v-67daeb30] {
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    -o-transition: transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s
}

.app-cases .msearch-top .search-area .advance-select.active[data-v-67daeb30] {
    color: #128bed;
    border-right-color: transparent
}

.app-cases .msearch-top .search-area .advance-select.active .caret[data-v-67daeb30] {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.app-cases .msearch-top .search-area .advance-panel[data-v-67daeb30] {
    background: #fff;
    border-radius: 4px;
    left: 0px;
    right: 0px;
    top: 0px;
    z-index: 12;
    padding-top: 50px
}

.app-cases .msearch-top .search-area .advance-panel[data-v-67daeb30]:before {
    content: " ";
    position: absolute;
    top: 50px;
    height: 1px;
    left: 0px;
    right: 0px;
    background: #eee
}

.app-cases .msearch-top .search-area .advance-panel .search-center[data-v-67daeb30] {
    padding: 30px 20px
}

.app-cases .msearch-top .search-area .advance-panel .search-center .form-group[data-v-67daeb30] {
    position: relative
}

.app-cases .msearch-top .search-area .advance-panel .search-center .form-group[data-v-67daeb30]:first-child {
    width: 440px;
    margin-right: 5px
}

.app-cases .msearch-top .search-area .advance-panel .search-center .form-group label[data-v-67daeb30] {
    width: 65px;
    font-weight: normal;
    color: #333
}

.app-cases .msearch-top .search-area .advance-panel .search-center .form-group .form-control[data-v-67daeb30] {
    width: 340px
}

.app-cases .msearch-top .search-area .advance-panel .search-center .select-block[data-v-67daeb30] {
    position: absolute;
    z-index: 2;
    top: 1px;
    left: 71px
}

.app-cases .msearch-top .search-area .advance-panel .search-center .select-block .pills-item-top[data-v-67daeb30] {
    float: left;
    display: block;
    position: relative;
    color: #128bed;
    border: solid 1px #128bed;
    font-size: 12px;
    width: 99px;
    padding: 3px 10px;
    margin: 3px 3px;
    word-break: keep-all;
    border-radius: 2px
}

.app-cases .msearch-top .search-area .advance-panel .search-center .select-block .pills-item-top span[data-v-67daeb30] {
    display: inline-block;
    width: 70px;
    height: 12px;
    line-height: 12px;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.app-cases .msearch-top .search-area .advance-panel .search-center .select-block .pills-item-top[data-v-67daeb30]:after {
    content: "X";
    position: absolute;
    right: 4px;
    top: 4px
}

.app-cases .msearch-top .search-area .advance-panel .search-center .select-block .pills-item-top[data-v-67daeb30]:hover {
    color: #fff;
    background: #128bed
}

.app-cases .msearch-top .search-area .advance-panel .search-center .input-fake-btn[data-v-67daeb30] {
    position: absolute;
    right: 35px;
    top: 7px
}

.app-cases .msearch-top .search-area .advance-panel .search-bottom[data-v-67daeb30] {
    padding: 18px 20px;
    border-top: solid 1px #eee;
    line-height: 34px
}

.app-cases .msearch-top .search-area .advance-panel .search-bottom .btn[data-v-67daeb30] {
    width: 82px;
    margin-left: 10px
}

.app-cases .msearch-top .search-area > .input-group[data-v-67daeb30] {
    margin: auto;
    margin-top: 15px
}

.app-cases .msearch-top .search-area > .input-group .form-control[data-v-67daeb30] {
    border: none;
    font-size: 16px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border: solid 1px #eee;
    height: 50px;
    padding-left: 140px
}

.app-cases .msearch-top .search-area > .input-group .form-control.no-br[data-v-67daeb30] {
    border-bottom-left-radius: 0px !important
}

.app-cases .msearch-top .search-area > .input-group .searchbtn[data-v-67daeb30] {
    font-size: 20px;
    padding: 5px 20px 5px;
    height: 50px;
    border: none;
    border-radius: 0px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.app-cases .msearch-top .hot-data[data-v-67daeb30] {
    text-align: center;
    color: #fff;
    line-height: 55px;
    font-size: 15px
}

.app-cases .msearch-top .hot-data .hot-data-v[data-v-67daeb30] {
    margin-left: 8px;
    margin-right: 8px;
    color: #CFE8FD
}

.app-cases .msearch-top .hot-data .hot-data-v[data-v-67daeb30]:hover {
    color: #fff
}

.app-cases .intro[data-v-67daeb30] {
    padding-top: 30px;
    padding-bottom: 30px;
    padding: 50px 30px
}

.app-cases .intro .item[data-v-67daeb30] {
    margin: 10px 43px;
    float: left;
    display: block;
    text-align: center
}

.app-cases .intro .item img[data-v-67daeb30] {
    width: 300px
}

.app-cases .intro .item p[data-v-67daeb30] {
    font-size: 22px
}

.pushIcon[data-v-67daeb30] {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 17px;
    margin-top: -6px;
    top: 3px;
    margin-left: -2px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pushIcon-3ce2616f.png);
    background-repeat: no-repeat;
    background-size: 20px 20px
}

.app-cases.view-list[data-v-67daeb30] {
    background: #F6F6F6
}

.app-cases.view-list .msearch-top[data-v-67daeb30] {
    height: 283px;
    padding-top: 0px
}

.app-cases.view-list .msearch-top .title[data-v-67daeb30] {
    display: none
}

.app-cases.view-list .msearch-top .hot-data[data-v-67daeb30] {
    display: none
}

.app-cases.view-list .msearch-top .search-area[data-v-67daeb30] {
    margin: 30px auto
}

.app-cases.view-list .nm-footer[data-v-67daeb30] {
    display: none
}

.app-cases[data-v-1996e768] {
    background: #F6F6F6
}

.app-cases .msearch-top[data-v-1996e768] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/case_searchbg-78f5a906.png);
    background-size: cover;
    background-position: center;
    min-height: 250px;
    margin-bottom: 15px;
    padding-top: 25px;
    -webkit-transition: height .2s;
    -o-transition: height .2s;
    transition: height .2s
}

.app-cases .msearch-top .title[data-v-1996e768] {
    text-align: center;
    font-size: 46px;
    color: #fff;
    font-weight: normal
}

.app-cases .msearch-top .judgement-history-list[data-v-1996e768] {
    width: 679px;
    background: #fff;
    position: absolute;
    z-index: 99;
    margin: -20px auto 20px 280px;
    padding: 4px 0
}

.app-cases .msearch-top .judgement-history-list .hisList-scroll[data-v-1996e768] {
    height: auto;
    cursor: pointer
}

.app-cases .msearch-top .judgement-history-list .hisList-scroll .hisList-item[data-v-1996e768] {
    width: 97%;
    height: 45px;
    font-size: 14px;
    padding: 0 15px;
    line-height: 45px;
    color: #333;
    border-bottom: 1px solid #FAFAFA;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap
}

.app-cases .msearch-top .judgement-history-list .hisList-scroll .hisList-item.hover-act[data-v-1996e768] {
    color: #128bed;
    background: #F3F9FD
}

.app-cases .msearch-top .judgement-history-list .clear[data-v-1996e768]:after {
    content: ' ';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden
}

.app-cases .msearch-top .judgement-history-list .hisList-btn[data-v-1996e768] {
    height: 45px;
    padding: 10px 15px;
    font-weight: 500;
    background: #FAFAFA
}

.app-cases .msearch-top .judgement-history-list .hisList-btn .bt[data-v-1996e768] {
    width: 70px;
    color: #999;
    font-size: 12px;
    cursor: pointer;
    float: right
}

.app-cases .msearch-top .judgement-history-list .hisList-btn .bt[data-v-1996e768]:hover {
    color: #128BED
}

.app-cases .msearch-top .judgement-history-list .hisList-btn .bt > span[data-v-1996e768] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/nsearch_bt-a00554bd.png);
    background-size: 32px 32px;
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    top: 3px;
    left: -2px
}

.app-cases .msearch-top .judgement-history-list .hisList-btn .bt > .del[data-v-1996e768] {
    background-position: -16px 0px
}

.app-cases .msearch-top .judgement-history-list .hisList-btn .bt:hover > span[data-v-1996e768] {
    background-position-y: -16px
}

.app-cases .msearch-top .search-area[data-v-1996e768] {
    position: relative;
    width: 900px;
    margin: 30px auto 20px auto
}

.app-cases .msearch-top .search-area .advance-select[data-v-1996e768] {
    cursor: pointer;
    position: absolute;
    z-index: 15;
    line-height: 50px;
    top: 0px;
    left: 0px;
    width: 120px;
    text-align: center;
    border-right: solid 1px #eee;
    color: #333;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.app-cases .msearch-top .search-area .advance-select .caret[data-v-1996e768] {
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    -o-transition: transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s
}

.app-cases .msearch-top .search-area .advance-select.active[data-v-1996e768] {
    color: #128bed;
    border-right-color: transparent
}

.app-cases .msearch-top .search-area .advance-select.active .caret[data-v-1996e768] {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.app-cases .msearch-top .search-area .advance-panel[data-v-1996e768] {
    background: #fff;
    border-radius: 4px;
    left: 0px;
    right: 0px;
    top: 0px;
    z-index: 12;
    padding-top: 50px
}

.app-cases .msearch-top .search-area .advance-panel[data-v-1996e768]:before {
    content: " ";
    position: absolute;
    top: 50px;
    height: 1px;
    left: 0px;
    right: 0px;
    background: #eee
}

.app-cases .msearch-top .search-area .advance-panel .search-center[data-v-1996e768] {
    padding: 30px 20px
}

.app-cases .msearch-top .search-area .advance-panel .search-center .form-group[data-v-1996e768]:first-child {
    width: 440px;
    margin-right: 5px
}

.app-cases .msearch-top .search-area .advance-panel .search-center .form-group label[data-v-1996e768] {
    width: 90px;
    font-weight: normal;
    color: #333
}

.app-cases .msearch-top .search-area .advance-panel .search-center .form-group .form-control[data-v-1996e768] {
    width: 280px
}

.app-cases .msearch-top .search-area .advance-panel .search-center .form-group .range-input[data-v-1996e768] {
    width: 125px
}

.app-cases .msearch-top .search-area .advance-panel .search-center .form-group .range-ctext[data-v-1996e768] {
    display: inline-block;
    width: 21px;
    color: #666;
    text-align: center
}

.app-cases .msearch-top .search-area .advance-panel .search-bottom[data-v-1996e768] {
    padding: 18px 20px;
    border-top: solid 1px #eee;
    line-height: 34px
}

.app-cases .msearch-top .search-area .advance-panel .search-bottom .btn[data-v-1996e768] {
    width: 82px;
    margin-left: 10px
}

.app-cases .msearch-top .search-area > .input-group[data-v-1996e768] {
    margin: auto;
    margin-top: 15px
}

.app-cases .msearch-top .search-area > .input-group .form-control[data-v-1996e768] {
    border: none;
    font-size: 16px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border: solid 1px #eee;
    height: 50px;
    padding-left: 140px
}

.app-cases .msearch-top .search-area > .input-group .form-control.no-br[data-v-1996e768] {
    border-bottom-left-radius: 0px !important
}

.app-cases .msearch-top .search-area > .input-group .searchbtn[data-v-1996e768] {
    font-size: 20px;
    padding: 5px 20px 5px;
    height: 50px;
    border: none;
    border-radius: 0px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.app-cases .msearch-top .judgement-desc[data-v-1996e768] {
    width: 900px;
    height: 30px;
    margin: 5px auto 20px auto
}

.app-cases .msearch-top .dtext-desc[data-v-1996e768] {
    color: #fff;
    text-align: center;
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 20px
}

.app-cases .msearch-top .dtext-l[data-v-1996e768] {
    float: left;
    color: #fff;
    text-align: left;
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 20px
}

.app-cases .msearch-top .dtext-r[data-v-1996e768] {
    float: right;
    color: #fff;
    text-align: right;
    font-size: 16px;
    margin: 5px 0 20px 0
}

.app-cases .msearch-top .dtext-r .dtext-r-label[data-v-1996e768] {
    color: #fff
}

.app-cases .msearch-top .dtext-r .judgement-zhushi[data-v-1996e768] {
    color: #fff
}

.app-cases.view-list[data-v-1996e768] {
    background: #F6F6F6
}

.app-cases.view-list .v-loading[data-v-1996e768] {
    min-height: 500px
}

.app-cases.view-list .nm-footer[data-v-1996e768] {
    display: none
}

.app-cases[data-v-52b0b4ea] {
    background: #F6F6F6
}

.app-cases .msearch-top[data-v-52b0b4ea] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/case_searchbg-78f5a906.png);
    background-size: cover;
    background-position: center;
    min-height: 250px;
    margin-bottom: 15px;
    padding-top: 25px;
    -webkit-transition: height .2s;
    -o-transition: height .2s;
    transition: height .2s
}

.app-cases .msearch-top .title[data-v-52b0b4ea] {
    text-align: center;
    font-size: 46px;
    color: #fff;
    font-weight: normal
}

.app-cases .msearch-top .search-area[data-v-52b0b4ea] {
    position: relative;
    width: 900px;
    margin: 30px auto 20px auto
}

.app-cases .msearch-top .search-area .advance-select[data-v-52b0b4ea] {
    cursor: pointer;
    position: absolute;
    z-index: 15;
    line-height: 50px;
    top: 0px;
    left: 0px;
    width: 120px;
    text-align: center;
    border-right: solid 1px #eee;
    color: #333;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.app-cases .msearch-top .search-area .advance-select .caret[data-v-52b0b4ea] {
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    -o-transition: transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s
}

.app-cases .msearch-top .search-area .advance-select.active[data-v-52b0b4ea] {
    color: #128bed;
    border-right-color: transparent
}

.app-cases .msearch-top .search-area .advance-select.active .caret[data-v-52b0b4ea] {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.app-cases .msearch-top .search-area .advance-panel[data-v-52b0b4ea] {
    background: #fff;
    border-radius: 4px;
    left: 0px;
    right: 0px;
    top: 0px;
    z-index: 12;
    padding-top: 50px
}

.app-cases .msearch-top .search-area .advance-panel[data-v-52b0b4ea]:before {
    content: " ";
    position: absolute;
    top: 50px;
    height: 1px;
    left: 0px;
    right: 0px;
    background: #eee
}

.app-cases .msearch-top .search-area .advance-panel .search-center[data-v-52b0b4ea] {
    padding: 30px 20px
}

.app-cases .msearch-top .search-area .advance-panel .search-center .form-group[data-v-52b0b4ea]:first-child {
    width: 440px;
    margin-right: 5px
}

.app-cases .msearch-top .search-area .advance-panel .search-center .form-group label[data-v-52b0b4ea] {
    width: 90px;
    font-weight: normal;
    color: #333
}

.app-cases .msearch-top .search-area .advance-panel .search-center .form-group .form-control[data-v-52b0b4ea] {
    width: 280px
}

.app-cases .msearch-top .search-area .advance-panel .search-center .form-group .range-input[data-v-52b0b4ea] {
    width: 125px
}

.app-cases .msearch-top .search-area .advance-panel .search-center .form-group .range-ctext[data-v-52b0b4ea] {
    display: inline-block;
    width: 21px;
    color: #666;
    text-align: center
}

.app-cases .msearch-top .search-area .advance-panel .search-bottom[data-v-52b0b4ea] {
    padding: 18px 20px;
    border-top: solid 1px #eee;
    line-height: 34px
}

.app-cases .msearch-top .search-area .advance-panel .search-bottom .btn[data-v-52b0b4ea] {
    width: 82px;
    margin-left: 10px
}

.app-cases .msearch-top .search-area > .input-group[data-v-52b0b4ea] {
    margin: auto;
    margin-top: 15px
}

.app-cases .msearch-top .search-area > .input-group .form-control[data-v-52b0b4ea] {
    border: none;
    font-size: 16px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border: solid 1px #eee;
    height: 50px
}

.app-cases .msearch-top .search-area > .input-group .form-control.no-br[data-v-52b0b4ea] {
    border-bottom-left-radius: 0px !important
}

.app-cases .msearch-top .search-area > .input-group .searchbtn[data-v-52b0b4ea] {
    font-size: 20px;
    padding: 5px 20px 5px;
    height: 50px;
    border: none;
    border-radius: 0px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.app-cases .msearch-top .dtext[data-v-52b0b4ea] {
    color: #fff;
    text-align: center;
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 20px
}

.app-cases.view-list[data-v-52b0b4ea] {
    background: #F6F6F6
}

.app-cases.view-list .v-loading[data-v-52b0b4ea] {
    min-height: 500px
}

.app-cases.view-list .nm-footer[data-v-52b0b4ea] {
    display: none
}

.penalty-detail .list-group-nhover .text[data-v-7fefe4c3] {
    width: 160px;
    word-break: keep-all;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden
}

.penalty-detail .list-group-nhover .text[data-v-7fefe4c3], .penalty-detail .list-group-nhover .time[data-v-7fefe4c3] {
    font-size: 12px
}

.penalty-detail .item-card[data-v-7fefe4c3]:hover {
    background-color: #eff8fb
}

.penalty-detail .item-card[data-v-7fefe4c3]:hover .about-company a {
    color: #128bed
}

.penalty-detail .about-company[data-v-7fefe4c3] a {
    color: #333
}

.penalty-detail .content-main[data-v-7fefe4c3] {
    display: inline-block;
    color: #3c89e2
}

.app-assets[data-v-74e33834] {
    background: #fff
}

.app-assets .msearch-top[data-v-74e33834] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/asset_searchbg-9605b55e.png);
    background-size: cover;
    background-position: center;
    height: 300px;
    padding-top: 50px;
    -webkit-transition: height 0.2s;
    -o-transition: height 0.2s;
    transition: height 0.2s
}

.app-assets .msearch-top .title[data-v-74e33834] {
    text-align: center;
    font-size: 46px;
    color: #fff;
    font-weight: normal
}

.app-assets .msearch-top .search-area[data-v-74e33834] {
    height: 240px;
    position: relative;
    background-size: cover;
    background-position: center;
    margin-top: 30px
}

.app-assets .msearch-top .search-area .input-group[data-v-74e33834] {
    width: 900px;
    margin: auto;
    margin-top: 15px;
    background-color: #fff;
    border-radius: 4px
}

.app-assets .msearch-top .search-area .input-group .search-group[data-v-74e33834] {
    padding: 0 15px
}

.app-assets .msearch-top .search-area .input-group .form-control[data-v-74e33834] {
    border: none;
    font-size: 16px;
    height: 47px;
    padding: 14px 15px;
    line-height: 22px;
    border-radius: 4px
}

.app-assets .msearch-top .search-area .input-group .searchbtn[data-v-74e33834] {
    font-size: 20px;
    padding: 5px 20px 5px;
    height: 50px;
    border: none;
    border-radius: 0px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.app-assets .intro[data-v-74e33834] {
    padding-top: 30px;
    padding-bottom: 30px;
    padding: 50px 30px
}

.app-assets .intro .item[data-v-74e33834] {
    margin: 10px 43px;
    float: left;
    display: block;
    text-align: center
}

.app-assets .intro .item img[data-v-74e33834] {
    width: 300px
}

.app-assets .intro .item p[data-v-74e33834] {
    font-size: 22px
}

.view-list[data-v-74e33834] {
    background: #f6f6f6
}

.view-list .v-loading[data-v-74e33834] {
    min-height: 500px
}

.view-list .msearch-top[data-v-74e33834] {
    height: 300px
}

.view-list .nm-footer[data-v-74e33834] {
    display: none
}

.form-control-placeholder[data-v-74e33834] {
    color: #c2c2c2
}

.nodata-container[data-v-74e33834] {
    padding-top: 15px
}

.v-loading[data-v-74e33834] {
    margin-top: 15px
}

.app-assets[data-v-7690a926] {
    background: #fff
}

.app-assets .msearch-top[data-v-7690a926] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bg-4068625e.png);
    background-size: cover;
    background-position: center;
    height: 300px;
    padding-top: 60px;
    -webkit-transition: height 0.2s;
    -o-transition: height 0.2s;
    transition: height 0.2s
}

.app-assets .msearch-top .title[data-v-7690a926] {
    text-align: center;
    font-size: 46px;
    color: #fff;
    font-weight: normal
}

.app-assets .msearch-top .search-area[data-v-7690a926] {
    height: 50px;
    width: 900px;
    margin: 0 auto;
    position: relative;
    background-size: cover;
    background-position: center;
    margin-top: 30px
}

.app-assets .msearch-top .search-area .input-group[data-v-7690a926] {
    margin: auto;
    margin-top: 15px;
    background-color: #fff;
    border-radius: 4px
}

.app-assets .msearch-top .search-area .input-group .search-group[data-v-7690a926] {
    padding: 0 15px
}

.app-assets .msearch-top .search-area .input-group .form-control[data-v-7690a926] {
    border: none;
    font-size: 16px;
    height: 50px
}

.app-assets .msearch-top .search-area .input-group .searchbtn[data-v-7690a926] {
    font-size: 20px;
    padding: 5px 20px 5px;
    height: 50px;
    border: none;
    border-radius: 0px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.app-assets .intro[data-v-7690a926] {
    padding: 50px 30px;
    padding-top: 30px;
    padding-bottom: 30px
}

.app-assets .intro .item[data-v-7690a926] {
    margin: 0px 73px;
    float: left;
    display: block;
    text-align: center
}

.app-assets .intro .item img[data-v-7690a926] {
    width: 240px
}

.app-assets .intro .item p[data-v-7690a926] {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 0px
}

.view-list[data-v-7690a926] {
    background: #f6f6f6
}

.view-list .v-loading[data-v-7690a926] {
    min-height: 500px
}

.view-list .msearch-top[data-v-7690a926] {
    height: 300px
}

.view-list .nm-footer[data-v-7690a926] {
    display: none
}

.form-control-placeholder[data-v-7690a926] {
    color: #c2c2c2
}

.nodata-container[data-v-7690a926] {
    padding-top: 15px
}

.v-loading[data-v-7690a926] {
    margin-top: 15px
}

.industry-select[data-v-04bf3ce1] {
    display: inline-block;
    position: relative
}

.industry-select .dropdown-menu[data-v-04bf3ce1] {
    left: -470px
}

.industry-select .dropdown-menu[data-v-04bf3ce1] {
    border: 1px solid #eee
}

.industry-select.drop-hover .dropdown-menu[data-v-04bf3ce1] {
    display: block;
    visibility: hidden;
    -webkit-transition: all 0s linear 0.2s;
    -o-transition: all 0s linear 0.2s;
    transition: all 0s linear 0.2s
}

.industry-select.drop-hover:hover .dropdown-menu[data-v-04bf3ce1] {
    visibility: visible
}

.industry-select .industry-choose[data-v-04bf3ce1] {
    height: auto;
    width: 890px;
    position: relative;
    padding: 16px 14px;
    padding-bottom: 0px;
    padding-right: 0
}

.industry-select .industry-choose .chooselist[data-v-04bf3ce1] {
    font-size: 14px;
    position: relative;
    margin-bottom: 10px
}

.industry-select .industry-choose .chooselist .choosetitle[data-v-04bf3ce1] {
    color: #666;
    padding-right: 20px;
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
    margin-right: 20px;
    position: absolute;
    left: 0;
    top: 0
}

.industry-select .industry-choose .chooselist .choosetitle[data-v-04bf3ce1]::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    height: 14px;
    width: 1px;
    background-color: #d6d6d6;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.industry-select .industry-choose .chooselist .choosePart[data-v-04bf3ce1] {
    padding-left: 82px;
    display: inline-block
}

.industry-select .industry-choose .chooselist .chooseItem[data-v-04bf3ce1] {
    color: #333;
    display: inline-block;
    margin-right: 15px;
    cursor: pointer;
    margin-bottom: 8px
}

.industry-select .industry-choose .chooselist .chooseItem[data-v-04bf3ce1]:hover {
    color: #128bed
}

.checked-head[data-v-e744325a] {
    background-color: #fff;
    height: 167px;
    padding: 20px
}

.checked-head > *[data-v-e744325a] {
    display: inline-block;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    vertical-align: top
}

.checked-head .left-part[data-v-e744325a] {
    width: 439px;
    padding-right: 37px;
    position: relative;
    padding-top: 22px
}

.checked-head .left-part[data-v-e744325a]::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: #eeeeee
}

.checked-head .middle-part[data-v-e744325a] {
    width: 300px;
    text-align: center
}

.checked-head .middle-part .stutas[data-v-e744325a] {
    margin: 0 auto;
    height: 100px;
    width: 180px;
    background-color: #333333;
    background-size: 100% 100%
}

.checked-head .middle-part .stutas img[data-v-e744325a] {
    height: 100%;
    width: 100%
}

.checked-head .middle-part .detail[data-v-e744325a] {
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #666666;
    line-height: 22px;
    margin-top: 5px
}

.checked-head .right-part[data-v-e744325a] {
    padding-left: 40px;
    position: relative;
    padding-top: 22px;
    width: 430px
}

.checked-head .right-part[data-v-e744325a]::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: #eeeeee
}

.checked-head .left-part .head[data-v-e744325a], .checked-head .right-part .head[data-v-e744325a] {
    font-size: 14px;
    color: #666666;
    line-height: 22px;
    margin-bottom: 5px
}

.checked-head .left-part .desc[data-v-e744325a], .checked-head .right-part .desc[data-v-e744325a] {
    font-size: 20px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 28px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2
}

.checkNameTable[data-v-47d8f934] .ntag:not(:last-child) {
    margin-right: 0px !important
}

.startPos[data-v-51e65e50] {
    margin-top: -15px
}

.startPos .tab-item[data-v-51e65e50] {
    color: #333
}

.startPos .company-table[data-v-51e65e50] {
    margin-bottom: 40px
}

.startPos .company-nodata[data-v-51e65e50] {
    height: 293px;
    padding: 0 !important;
    padding-top: 32px !important;
    border: 1px solid #eee
}

.startPos .head-tip[data-v-51e65e50] {
    color: #999;
    padding: 20px 0;
    font-size: 14px
}

.startPos .head-tip span[data-v-51e65e50] {
    color: #ff6060
}

.app-cascader[data-v-201bdcfe] {
    display: inline-block;
    position: relative
}

.app-cascader .dropdown-menu[data-v-201bdcfe] {
    padding-bottom: 0px;
    border: 1px solid #eee
}

.app-cascader .choose-part[data-v-201bdcfe] {
    width: 429px;
    max-height: 287px;
    overflow: hidden;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-bottom: 0px;
    padding-right: 0px;
    padding-top: 2px
}

.app-cascader .choose-part .tips[data-v-201bdcfe] {
    font-size: 12px;
    font-weight: 400;
    color: #999999;
    line-height: 22px
}

.app-cascader .choose-part .chooseTabs[data-v-201bdcfe] {
    border-bottom: 1px solid #eee;
    margin-top: 5px;
    margin-right: 10px
}

.app-cascader .choose-part .chooseTabs .tabs-item[data-v-201bdcfe] {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 22px;
    margin-right: 22px;
    padding-bottom: 10px;
    cursor: pointer
}

.app-cascader .choose-part .chooseTabs .tabs-item[data-v-201bdcfe]:last-child {
    margin-right: 0px
}

.app-cascader .choose-part .chooseTabs .tabs-item.tabsActive[data-v-201bdcfe] {
    color: #008ef5;
    border-bottom: 2px solid #128bed
}

.app-cascader .choose-part .chooseList[data-v-201bdcfe] {
    padding-top: 15px;
    max-height: 215px;
    padding-bottom: 5px;
    overflow-y: auto
}

.app-cascader .choose-part .chooseList .chooseList-item[data-v-201bdcfe] {
    position: relative
}

.app-cascader .choose-part .chooseList .chooseList-item .chooseList-item-head[data-v-201bdcfe] {
    position: absolute;
    top: 0;
    left: 0
}

.app-cascader .choose-part .chooseList .chooseList-item .chooseList-item-list[data-v-201bdcfe] {
    padding-left: 10px
}

.app-cascader .choose-part .chooseList .chooseList-item .chooseList-item-list .chooseList-item-list-item[data-v-201bdcfe] {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 22px;
    display: inline-block;
    margin-left: 25px;
    margin-bottom: 10px;
    cursor: pointer
}

.app-cascader .choose-part .chooseList .chooseList-item .chooseList-item-list .chooseList-item-list-item[data-v-201bdcfe]:hover {
    color: #128bed
}

.app-cascader .choose-part .chooseList .chooseList-item .special[data-v-201bdcfe] {
    padding-left: 0px;
    margin-left: -25px
}

.app-cascader.drop-hover .dropdown-menu[data-v-201bdcfe] {
    display: block;
    visibility: hidden;
    -webkit-transition: all 0s linear 0.2s;
    -o-transition: all 0s linear 0.2s;
    transition: all 0s linear 0.2s
}

.app-cascader.drop-hover:hover .dropdown-menu[data-v-201bdcfe] {
    visibility: visible
}

.app-dselect[data-v-aecb9592] {
    display: inline-block;
    position: relative
}

.app-dselect .dropdown-menu[data-v-aecb9592] {
    width: 140px;
    border: 1px solid #eee
}

.app-dselect .dselect-text[data-v-aecb9592] {
    color: #333
}

.app-dselect .dselect-text.active[data-v-aecb9592] {
    color: #128bed
}

.app-dselect ul.drop-col[data-v-aecb9592] {
    margin-bottom: 0px;
    padding-left: 0px;
    position: relative;
    overflow: auto;
    max-height: 205px
}

.app-dselect ul.drop-col > li > a[data-v-aecb9592], .app-dselect .drop-x > a[data-v-aecb9592] {
    display: block;
    padding-left: 15px;
    padding-right: 5px;
    padding-top: 7px;
    padding-bottom: 5px;
    color: #333;
    line-height: 18px
}

.app-dselect ul.drop-col > li > a[data-v-aecb9592]:hover, .app-dselect ul.drop-col > li > a.hover[data-v-aecb9592], .app-dselect .drop-x > a[data-v-aecb9592]:hover, .app-dselect .drop-x > a.hover[data-v-aecb9592] {
    background-color: #f3f9fd;
    color: #128bed
}

.app-dselect ul.drop-col > li > a .text[data-v-aecb9592], .app-dselect .drop-x > a .text[data-v-aecb9592] {
    display: inline-block;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-right: 5px;
    margin-bottom: 0px;
    white-space: nowrap
}

.app-dselect ul.drop-col > li > a label.text[data-v-aecb9592], .app-dselect .drop-x > a label.text[data-v-aecb9592] {
    font-weight: normal
}

.app-dselect ul.drop-col > li > a label.text > input[data-v-aecb9592], .app-dselect .drop-x > a label.text > input[data-v-aecb9592] {
    float: left;
    margin-right: 6px;
    margin-top: 3px
}

.app-dselect ul.drop-col > li > a i[data-v-aecb9592], .app-dselect .drop-x > a i[data-v-aecb9592] {
    float: right;
    margin-top: 2px
}

.app-dselect ul.drop-col > li > a .drop-right[data-v-aecb9592], .app-dselect .drop-x > a .drop-right[data-v-aecb9592] {
    position: absolute;
    left: 158px;
    z-index: 1000;
    bottom: -1px
}

.app-dselect.drop-hover .dropdown-menu[data-v-aecb9592] {
    display: block;
    visibility: hidden;
    -webkit-transition: all 0s linear 0.3s;
    -o-transition: all 0s linear 0.3s;
    transition: all 0s linear 0.3s
}

.app-dselect.drop-hover:hover .dropdown-menu[data-v-aecb9592] {
    visibility: visible
}

.app-assets[data-v-ea6e533e] {
    background: #fff
}

.app-assets .msearch-top[data-v-ea6e533e] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bg-4068625e.png);
    background-size: cover;
    background-position: center;
    height: 300px;
    padding-top: 50px;
    -webkit-transition: height 0.2s;
    -o-transition: height 0.2s;
    transition: height 0.2s
}

.app-assets .msearch-top .title[data-v-ea6e533e] {
    text-align: center;
    font-size: 40px;
    color: #fff;
    font-weight: normal;
    margin-top: 0px
}

.app-assets .msearch-top .sub-title[data-v-ea6e533e] {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 60px
}

.app-assets .msearch-top .search-area[data-v-ea6e533e] {
    text-align: center;
    font-size: 0px
}

.app-assets .msearch-top .search-area > *[data-v-ea6e533e] {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px
}

.app-assets .msearch-top .search-area .form-control[data-v-ea6e533e] {
    border: none;
    font-size: 16px;
    height: 52px
}

.app-assets .msearch-top .search-area .select-part[data-v-ea6e533e] {
    position: relative;
    padding-right: 27px;
    background-color: #fff;
    border-radius: 4px;
    width: 150px
}

.app-assets .msearch-top .search-area .select-part input[data-v-ea6e533e] {
    border-radius: 4px
}

.app-assets .msearch-top .search-area .select-part .select-icon[data-v-ea6e533e] {
    position: absolute;
    cursor: pointer;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #c2c2c2;
    font-size: 14px
}

.app-assets .msearch-top .search-area .select-input[data-v-ea6e533e] {
    width: 123px;
    height: 52px
}

.app-assets .msearch-top .search-area .form-input[data-v-ea6e533e] {
    width: 300px;
    height: 52px;
    margin-right: 10px;
    border-radius: 4px;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden
}

.app-assets .msearch-top .search-area .searchbtn[data-v-ea6e533e] {
    font-size: 20px;
    padding: 5px 20px 5px;
    height: 52px;
    border: none;
    border-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.app-assets .intro[data-v-ea6e533e] {
    padding: 50px 30px;
    padding-top: 30px;
    padding-bottom: 30px
}

.app-assets .intro .item[data-v-ea6e533e] {
    margin: 0px 73px;
    float: left;
    display: block;
    text-align: center
}

.app-assets .intro .item img[data-v-ea6e533e] {
    width: 240px
}

.app-assets .intro .item p[data-v-ea6e533e] {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 0px
}

.app-assets .select[data-v-ea6e533e] {
    height: 52px;
    width: 150px;
    margin-right: 10px;
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #ffffff
}

.app-assets input[type="text"][data-v-ea6e533e]:disabled, .app-assets input[disabled][data-v-ea6e533e] {
    background-color: #fff;
    color: #333;
    opacity: 1;
    -webkit-text-fill-color: #333;
    -webkit-opacity: 1;
    cursor: pointer
}

.view-list[data-v-ea6e533e] {
    background: #f6f6f6
}

.view-list .v-loading[data-v-ea6e533e] {
    min-height: 500px
}

.view-list .msearch-top[data-v-ea6e533e] {
    height: 300px
}

.view-list .nm-footer[data-v-ea6e533e] {
    display: none
}

.form-control-placeholder[data-v-ea6e533e] {
    color: #c2c2c2
}

.nodata-container[data-v-ea6e533e] {
    padding-top: 15px
}

.v-loading[data-v-ea6e533e] {
    margin-top: 15px
}

.passwordsuc[data-v-64440d19] {
    text-align: center;
    background-color: #fff;
    padding: 50px;
    min-height: 700px;
    margin-bottom: -50px
}

.passwordsuc .login-now[data-v-64440d19] {
    margin-top: 100px
}

.bigsearch-nav[data-v-ca0e0c64] {
    position: relative;
    height: 40px
}

.bigsearch-nav .nav-wrap[data-v-ca0e0c64] {
    background: #fcfcfc;
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    height: 40px
}

.bigsearch-nav .item[data-v-ca0e0c64] {
    float: left;
    padding: 0px 10px;
    line-height: 40px
}

.bigsearch-nav .item > a[data-v-ca0e0c64] {
    display: inline-block;
    line-height: 36px;
    font-size: 15px;
    color: #333;
    padding: 0px 5px
}

.bigsearch-nav .item > a.text-primary[data-v-ca0e0c64] {
    color: #128bed
}

.bigsearch-nav .item .count[data-v-ca0e0c64] {
    font-size: 12px;
    color: #999
}

.bigsearch-nav .item.active > a[data-v-ca0e0c64] {
    color: #128bed;
    border-bottom: solid 2px #128bed
}

.bigsearch-nav .item.active > a > .count[data-v-ca0e0c64] {
    color: #128bed
}

.bigsearch-nav.fixed > .nav-wrap[data-v-ca0e0c64] {
    border-top: solid 1px #eee;
    position: fixed;
    z-index: 900;
    width: 100%;
    top: 56px;
    height: 41px
}

.bigsearch-nav .bicon-set3[data-v-ca0e0c64] {
    margin: 0px;
    top: 8px
}

.bigsearch-nav .nav-set[data-v-ca0e0c64] {
    padding: 5px 5px
}

.bigsearch-nav .nav-set .text[data-v-ca0e0c64] {
    color: #333;
    margin-bottom: 10px
}

.person-item[data-v-206b6fe4] {
    display: block;
    height: 180px;
    padding: 10px;
    color: #333
}

.person-item .img[data-v-206b6fe4] {
    float: left;
    margin-right: 10px
}

.person-item .title[data-v-206b6fe4] {
    font-size: 18px;
    font-weight: bold;
    color: #FD485E;
    margin-bottom: 4px;
    margin-top: 3px
}

.person-item .province-info[data-v-206b6fe4] {
    width: 100%;
    margin-top: 10px
}

.person-item .province-info td[data-v-206b6fe4] {
    padding-top: 5px;
    padding-bottom: 5px
}

.person-item[data-v-206b6fe4]:hover {
    background: #F3F9FE
}

.search-tags .click[data-v-505d4bbc] {
    cursor: pointer
}

.hit-reasons .sf[data-v-1f5faf2f]:not(:last-child):after {
    content: " ";
    display: inline-block;
    width: 1px;
    height: 12px;
    background: #eee;
    vertical-align: middle;
    position: relative;
    margin-left: 10px;
    margin-right: 8px
}

.search-owninfo .product-list[data-v-ff9aa7ee] {
    margin-top: 15px
}

.search-owninfo .product-item[data-v-ff9aa7ee] {
    float: left;
    margin-right: 15px;
    background: #fff
}

.search-owninfo .pcard-box[data-v-ff9aa7ee] {
    width: 120px;
    border: solid 1px #eee
}

.search-owninfo .pcard-box .pcard-img[data-v-ff9aa7ee] {
    display: block;
    padding: 5px
}

.search-owninfo .pcard-box .pcard-img .bimg[data-v-ff9aa7ee] {
    width: 265px;
    height: 64px;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    background: #fbfbfb;
    position: relative
}

.search-owninfo .pcard-box .pcard-img .bimg > img[data-v-ff9aa7ee] {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    vertical-align: middle
}

.search-owninfo .pcard-box .pcard-img .des[data-v-ff9aa7ee] {
    position: relative;
    color: #333;
    line-height: 1.6;
    font-size: 12px;
    height: 20px;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-top: 6px
}

.preview-contain[data-v-4a111ce6] {
    text-align: center;
    background: #ffffff;
    border-radius: 5px 5px 0px 0px;
    border: 1px solid #eeeeee;
    position: relative
}

.preview-contain .subtext[data-v-4a111ce6] {
    margin: 16px 0
}

.preview-contain .preview-table[data-v-4a111ce6] {
    width: 676px;
    overflow: auto
}

.preview-contain .preview-table[data-v-4a111ce6] .ntable {
    width: auto
}

.preview-contain .ntable-wrap[data-v-4a111ce6] {
    position: relative
}

.preview-contain .ntable-wrap .loading-mask[data-v-4a111ce6] {
    display: none
}

.preview-contain .ntable-wrap.loading[data-v-4a111ce6] {
    height: 500px;
    overflow: hidden;
    position: relative
}

.preview-contain .ntable-wrap.loading .loading-mask[data-v-4a111ce6] {
    display: block
}

.preview-contain .ntable[data-v-4a111ce6] {
    margin-bottom: 0px
}

.preview-contain .ntable th[data-v-4a111ce6] {
    text-align: left;
    padding-right: 2px;
    border: #e4eef6 1px solid
}

.preview-contain .ntable td[data-v-4a111ce6] {
    padding-top: 8px;
    padding-bottom: 8px;
    min-height: 62px;
    vertical-align: middle
}

.preview-contain .ntable .maininfo[data-v-4a111ce6] {
    position: relative
}

.preview-contain .ntable .img[data-v-4a111ce6] {
    width: 40px;
    height: 40px
}

.preview-contain .ntable .ntag[data-v-4a111ce6] {
    overflow: hidden;
    max-width: 100%;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    vertical-align: bottom
}

.preview-contain .ntable .ellipsis-content[data-v-4a111ce6] {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.preview-contain .ntable .ellipsis-content .title[data-v-4a111ce6] {
    display: inline;
    margin-bottom: 0px
}

.preview-contain .ntable .ellipsis-content .sub-title[data-v-4a111ce6] {
    font-size: 12px;
    color: #999
}

.preview-contain .ntable .check-label[data-v-4a111ce6] {
    margin: 0px 8px 0px 0px;
    display: block;
    line-height: 1
}

.preview-contain .ntable .check-label input[data-v-4a111ce6] {
    margin: 0px
}

.preview-contain .ntable .nstatus[data-v-4a111ce6] {
    font-size: 12px;
    padding: 4px 8px 4px 8px;
    line-height: 12px;
    display: inline-block;
    position: relative
}

.preview-contain .ntable .frtrt td[data-v-4a111ce6] {
    border-bottom: none
}

.preview-contain .ntable .frtrt[data-v-4a111ce6]:hover {
    background: #f3f9fe
}

.preview-contain .ntable .frtr td[data-v-4a111ce6] {
    border-top: none
}

.preview-contain .ntable .frtr td[data-v-4a111ce6] {
    padding: 3px 10px;
    background: #f3f9fe
}

.preview-contain .ntable .frtr td .fp-p[data-v-4a111ce6] {
    margin-top: 5px;
    margin-bottom: 5px
}

.preview-contain .ntable .frtr td .fp-p > span[data-v-4a111ce6] {
    margin-right: 20px
}

.preview-contain .preview-tags[data-v-4a111ce6] {
    background: -webkit-gradient(linear, left top, left bottom, from(#fd8e54), to(#f9552a));
    background: -o-linear-gradient(top, #fd8e54 0%, #f9552a 100%);
    background: linear-gradient(180deg, #fd8e54 0%, #f9552a 100%);
    border-radius: 7px 0px 7px 0px;
    font-size: 10px;
    color: #fff;
    padding: 2px 7px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 42px
}

.preview-contain .no-frist-border[data-v-4a111ce6] tr td:first-child, .preview-contain .no-frist-border[data-v-4a111ce6] tr th:first-child {
    border-left: 0px
}

.search-cell .batch-bar[data-v-e6f3a786] {
    height: 50px;
    background: #f3f9fe;
    padding: 9px 15px;
    border-top: solid 1px #eeeeee
}

.search-cell .batch-bar .btn[data-v-e6f3a786] {
    width: 98px;
    height: 32px;
    font-size: 12px;
    line-height: 18px
}

.search-cell .ntable .maininfo[data-v-e6f3a786] {
    position: relative
}

.search-cell .ntable .title[data-v-e6f3a786] {
    max-width: 860px;
    display: inline-block;
    margin-bottom: 0px
}

.search-cell .ntable .title + .ntag[data-v-e6f3a786] {
    position: relative;
    left: 3px;
    top: -2px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.search-cell .ntable .statustd[data-v-e6f3a786] {
    width: 100px
}

.search-cell .ntable .nstatus[data-v-e6f3a786] {
    font-size: 12px;
    padding: 0px 8px 0px 8px;
    line-height: 20px;
    display: inline-block;
    position: relative;
    top: -3px;
    left: 5px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.search-cell .ntable .tags[data-v-e6f3a786] {
    margin-top: 8px;
    margin-bottom: 7px
}

.search-cell .ntable .val.long-text[data-v-e6f3a786] {
    max-width: 820px
}

.search-cell .ntable .risk-item[data-v-e6f3a786] {
    display: inline-block;
    background: #fff7f6;
    font-size: 12px;
    position: relative;
    padding-left: 64px;
    padding-right: 6px;
    line-height: 22px;
    border-radius: 4px;
    color: #666;
    margin-top: 2px;
    margin-bottom: 2px
}

.search-cell .ntable .risk-item[data-v-e6f3a786]:hover {
    background: #fff1ef
}

.search-cell .ntable .risk-item .spline[data-v-e6f3a786] {
    color: #999;
    position: relative;
    top: -1px;
    margin-right: 2px;
    margin-left: 2px
}

.search-cell .ntable .risk-item .ricon-fxsm[data-v-e6f3a786] {
    position: absolute;
    width: 52px;
    height: 12px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/ricon_fxsm-8b38e081.png);
    background-size: 52px 12px;
    left: 6px;
    top: 5px
}

.search-cell .ntable .actions[data-v-e6f3a786] {
    position: absolute;
    top: 50%;
    margin-top: -12px;
    right: 0px;
    z-index: 10
}

.search-cell .ntable .checktd[data-v-e6f3a786] {
    text-align: right
}

.search-cell .ntable .checktd > label[data-v-e6f3a786] {
    position: relative;
    right: -5px
}

.search-cell .ntable .frtrt td[data-v-e6f3a786] {
    border-bottom: none
}

.search-cell .ntable .frtrt[data-v-e6f3a786]:hover {
    background: #f3f9fe
}

.search-cell .ntable .frtrt:hover .all[data-v-e6f3a786] {
    background: -webkit-gradient(linear, right top, left top, from(#f3f9fe), to(rgba(255, 255, 255, 0.2)));
    background: -o-linear-gradient(right, #f3f9fe, rgba(255, 255, 255, 0.2));
    background: linear-gradient(-90deg, #f3f9fe, rgba(255, 255, 255, 0.2))
}

.search-cell .ntable .frtr td[data-v-e6f3a786] {
    border-top: none
}

.search-cell .ntable .frtr td[data-v-e6f3a786] {
    padding: 3px 10px;
    background: #f3f9fe
}

.search-cell .ntable .frtr td .fp-p[data-v-e6f3a786] {
    margin-top: 5px;
    margin-bottom: 5px
}

.search-cell .ntable .frtr td .fp-p > span[data-v-e6f3a786] {
    margin-right: 20px
}

.search-cell .note-btn[data-v-e6f3a786] {
    display: inline-block;
    padding: 3px 6px;
    position: relative;
    border-radius: 2px;
    border: solid 1px #eee;
    color: #666;
    background: #fff
}

.search-cell .follow-btn[data-v-e6f3a786] {
    display: inline-block;
    padding: 3px 6px;
    position: relative;
    border-radius: 2px;
    border: solid 1px #128bed;
    color: #128bed;
    background: #fff
}

.search-cell .note-btn[data-v-e6f3a786]:hover, .search-cell .follow-btn[data-v-e6f3a786]:not(.active):hover {
    background-color: #128bed;
    border-color: #128bed;
    color: #fff
}

.search-cell .note-btn:hover .bicon[data-v-e6f3a786], .search-cell .follow-btn:not(.active):hover .bicon[data-v-e6f3a786] {
    background-position-x: -44px
}

.search-cell .note-btn:hover .text-primary[data-v-e6f3a786], .search-cell .follow-btn:not(.active):hover .text-primary[data-v-e6f3a786] {
    color: #fff
}

.search-cell .follow-btn.active[data-v-e6f3a786] {
    border-color: #eee;
    color: #666
}

.search-cell .follow-btn.active[data-v-e6f3a786]:hover {
    color: #666
}

.search-cell .plcqy[data-v-e6f3a786] {
    margin-right: 10px;
    color: #128bed
}

.search-cell .plcqy img[data-v-e6f3a786] {
    height: 20px;
    width: 20px
}

.search-cell .org-content[data-v-e6f3a786] {
    height: 151px;
    width: 100%;
    overflow: hidden;
    position: relative
}

.search-cell .org-list[data-v-e6f3a786] {
    width: 100%;
    overflow: hidden;
    margin-right: 24px;
    position: relative
}

.search-cell .org-list[data-v-e6f3a786]:after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}

.search-cell .org-list .org-link[data-v-e6f3a786] {
    display: inline-block;
    height: 143px;
    width: 347px;
    padding: 15px;
    color: #333;
    border: 1px solid #eee;
    margin-top: 8px;
    margin-right: 15px;
    position: relative;
    background-color: #fff;
    vertical-align: top
}

.search-cell .org-list .org-link .tags[data-v-e6f3a786] {
    position: absolute;
    right: -6px;
    top: -8px !important;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px
}

.search-cell .org-list .org-link .img[data-v-e6f3a786] {
    float: left;
    margin-right: 10px;
    width: auto;
    height: auto;
    border: 0px
}

.search-cell .org-list .org-link .img .pic[data-v-e6f3a786] {
    border-radius: 4px;
    background-color: #eee
}

.search-cell .org-list .org-link .tline[data-v-e6f3a786] {
    position: relative
}

.search-cell .org-list .org-link .title[data-v-e6f3a786] {
    color: #333;
    font-size: 18px;
    max-width: 175px;
    overflow: hidden;
    font-weight: normal;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    margin-right: 10px;
    font-weight: bold
}

.search-cell .org-list .org-link .desTitle[data-v-e6f3a786] {
    color: #666;
    font-size: 14px;
    max-width: none;
    font-weight: normal;
    margin-bottom: 2px;
    margin-right: 0px
}

.search-cell .org-list .org-link .ntag[data-v-e6f3a786] {
    position: absolute;
    top: 3px
}

.search-cell .org-list .org-link .rline .f[data-v-e6f3a786] {
    display: inline-block;
    color: #999
}

.search-cell .org-list .org-link .rline .f[data-v-e6f3a786]:first-child {
    margin-right: 5px;
    min-width: 135px
}

.search-cell .org-list .org-link .rline .f .val[data-v-e6f3a786] {
    color: #666
}

.search-cell .org-list .org-link .content[data-v-e6f3a786] {
    margin-top: 10px;
    font-size: 14px
}

.search-cell .org-list .org-link .content.desc[data-v-e6f3a786] {
    height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #666
}

.search-cell .org-list .org-link .oneline[data-v-e6f3a786] {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.search-cell .org-list .org-link:hover .title[data-v-e6f3a786] {
    color: #128bed
}

.search-cell .org-list .org-link:hover .desTitle[data-v-e6f3a786] {
    color: #666
}

.search-cell .org-list .org-link[data-v-e6f3a786]:last-child {
    margin-right: 0px
}

.search-cell .org-list .org-link .province-info[data-v-e6f3a786] {
    width: 100%;
    margin-top: 4px;
    border: none
}

.search-cell .org-list .org-link .province-info tr[data-v-e6f3a786] {
    border: none
}

.search-cell .org-list .org-link .province-info td[data-v-e6f3a786] {
    padding: 0;
    padding-top: 5px;
    border: none
}

.search-cell .all[data-v-e6f3a786] {
    position: absolute;
    height: 141px;
    width: 55px;
    right: -15px;
    bottom: 1px;
    z-index: 10;
    background: -webkit-gradient(linear, right top, left top, from(#fff), to(rgba(255, 255, 255, 0.2)));
    background: -o-linear-gradient(right, #fff, rgba(255, 255, 255, 0.2));
    background: linear-gradient(-90deg, #fff, rgba(255, 255, 255, 0.2))
}

.search-cell .all .all-img[data-v-e6f3a786] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/all-c02b2534.png);
    background-size: 100% 100%;
    height: 65px;
    width: 30px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer
}

.search-cell .all .all-img[data-v-e6f3a786]:hover {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/all_hover-f3611ac6.png);
    background-size: 100% 100%
}

.search-cell .imgPart[data-v-e6f3a786] {
    margin-top: -120px
}

.search-cell tr .imgtd[data-v-e6f3a786] {
    height: 130px
}

.search-cell tr .cell-tag[data-v-e6f3a786] {
    position: absolute;
    background-color: #fff;
    top: -16px;
    left: -130px;
    height: 22px;
    font-weight: normal;
    display: inline-block;
    line-height: 12px;
    font-size: 12px;
    padding: 4px 8px 4px 8px;
    color: #128bed;
    border: solid 1px #9FD0F8;
    border-bottom-right-radius: 4px
}

.search-cell tr .cell-tag.showBatchBar[data-v-e6f3a786] {
    left: -160px
}

.title-hover {
    color: #128bed !important
}

.longer-text {
    max-width: 100%
}

.app-search-all .search-all-contain {
    min-height: 550px
}

.app-search-all .search-all-contain .npanel-heading {
    position: relative
}

.app-search-all .search-all-contain .npanel-heading h4 {
    font-weight: bold
}

.app-search-all .search-all-contain .npanel-heading h4:before {
    content: " ";
    background: #128bed;
    position: absolute;
    width: 4px;
    height: 22px;
    left: 0px;
    top: 14px
}

.org-search .org-link[data-v-078db73c] {
    display: block;
    height: 130px;
    padding: 10px;
    color: #333;
    position: relative
}

.org-search .org-link .tags[data-v-078db73c] {
    position: absolute;
    top: 0px !important;
    right: 0;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px
}

.org-search .org-link .img[data-v-078db73c] {
    float: left;
    margin-right: 10px
}

.org-search .org-link .tline[data-v-078db73c] {
    position: relative
}

.org-search .org-link .title[data-v-078db73c] {
    color: #222;
    font-size: 18px;
    font-weight: bold;
    max-width: 175px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    margin-right: 10px
}

.org-search .org-link .ntag[data-v-078db73c] {
    position: absolute;
    top: 3px
}

.org-search .org-link .rline .f[data-v-078db73c] {
    display: inline-block;
    color: #999
}

.org-search .org-link .rline .f[data-v-078db73c]:first-child {
    margin-right: 5px;
    min-width: 135px
}

.org-search .org-link .rline .f .val[data-v-078db73c] {
    color: #666
}

.org-search .org-link .content[data-v-078db73c] {
    margin-top: 10px;
    font-size: 14px
}

.org-search .org-link .content.desc[data-v-078db73c] {
    height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #666
}

.org-search .org-link .oneline[data-v-078db73c] {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.org-search .org-link[data-v-078db73c]:hover {
    background-color: #f3f9fd
}

.org-search .org-link:hover .title[data-v-078db73c] {
    color: #128bed
}

.org-search .org-link .province-info[data-v-078db73c] {
    width: 100%;
    margin-top: 4px
}

.org-search .org-link .province-info td[data-v-078db73c] {
    padding-top: 5px
}

.org-search .org-link.person .title[data-v-078db73c] {
    color: #fd485e
}

.filter-list .form-group .col-pre[data-v-31f47c75], .filter-list .form-group .col-after[data-v-31f47c75] {
    float: left
}

.filter-list .form-group .col-pre[data-v-31f47c75] {
    font-weight: normal;
    color: #666;
    width: 75px
}

.filter-list .form-group .col-after[data-v-31f47c75] {
    width: 500px;
    margin-right: -15px
}

.filter-list .choosen[data-v-31f47c75] {
    margin-top: -6px
}

.filter-list .choosen .item[data-v-31f47c75] {
    float: left;
    color: #128bed;
    border: solid 1px #128bed;
    border-radius: 2px;
    line-height: 22px;
    padding: 0px 6px 0px 6px;
    font-size: 12px;
    max-width: 250px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    position: relative;
    margin-left: 0px;
    margin-right: 8px;
    margin-top: 3px;
    margin-bottom: 3px
}

.filter-list .modal-body-list[data-v-31f47c75] {
    padding: 0px;
    padding-bottom: 5px;
    min-height: 400px;
    max-height: calc(100vh - 150px);
    overflow-y: auto
}

.filter-list .modal-body-list .filter-cell[data-v-31f47c75] {
    display: block;
    padding: 15px
}

.filter-list .modal-body-list .filter-cell[data-v-31f47c75]:not(:last-child) {
    border-bottom: solid 1px #eee
}

.filter-list .modal-body-list .filter-cell .title[data-v-31f47c75] {
    color: #666
}

.filter-list .modal-body-list .filter-cell[data-v-31f47c75]:hover {
    background-color: #F3F9FD
}

.filter-list .modal-body-list .filter-cell:hover .title[data-v-31f47c75] {
    color: #128bed
}

.adsearch-filter[data-v-2f808527] {
    position: relative
}

.adsearch-filter .npanel[data-v-2f808527] {
    margin-bottom: 37px
}

.adsearch-filter .npanel .npanel-body[data-v-2f808527] {
    padding: 10px 15px
}

.adsearch-filter .pills[data-v-2f808527]:not(:last-child) {
    margin-bottom: 0px
}

.adsearch-filter .line[data-v-2f808527] {
    background: #eee;
    height: 1px;
    margin-top: 8px;
    margin-bottom: 8px
}

.adsearch-filter .pills[data-v-2f808527] {
    vertical-align: bottom
}

.adsearch-filter .pills.hmore[data-v-2f808527] {
    height: 33px
}

.adsearch-filter .pills-header[data-v-2f808527] {
    position: relative
}

.adsearch-filter .pills-header .vip-tag[data-v-2f808527] {
    position: absolute;
    width: 24px;
    height: 24px;
    margin-left: 0px;
    margin-top: -3px
}

.adsearch-filter .choosen[data-v-2f808527] {
    border-bottom: solid 1px #eee;
    padding-bottom: 10px;
    margin-bottom: 10px
}

.adsearch-filter .choosen .pills-after[data-v-2f808527] {
    padding-left: 12px;
    max-width: 1000px
}

.adsearch-filter .choosen .pills-item[data-v-2f808527] {
    position: relative;
    color: #128bed;
    background: #fff;
    border: solid 1px #128bed;
    line-height: 22px;
    padding: 0px 20px 0px 6px;
    font-size: 12px;
    max-width: 250px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    position: relative;
    margin-left: 0px;
    margin-right: 10px;
    cursor: pointer
}

.adsearch-filter .choosen .pills-item[data-v-2f808527]:hover {
    background: #128bed;
    color: #fff
}

.adsearch-filter .choosen .pills-item[data-v-2f808527]:after {
    content: "X";
    position: absolute;
    right: 6px;
    top: 0px
}

.adsearch-filter .expand-btn[data-v-2f808527] {
    background-color: #fff;
    width: 100px;
    height: 22px;
    position: absolute;
    left: 50%;
    bottom: -21px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    background: -o-linear-gradient(160deg, transparent 15px, #fff 0) right, -o-linear-gradient(20deg, transparent 15px, #fff 0) left;
    background: linear-gradient(-70deg, transparent 15px, #fff 0) right, linear-gradient(70deg, transparent 15px, #fff 0) left;
    background-size: 50% 100%;
    background-repeat: no-repeat;
    cursor: pointer
}

.adsearch-filter .expand-btn > i[data-v-2f808527] {
    font-size: 18px;
    color: #666
}

.adsearch-filter .expanded-wrap[data-v-2f808527] {
    height: 30px;
    overflow: hidden
}

.adsearch-filter .expanded-wrap-all[data-v-2f808527] {
    height: 30px;
    overflow: hidden
}

.adsearch-filter .expanded-mask[data-v-2f808527] {
    cursor: pointer;
    position: absolute;
    left: 2px;
    right: 2px;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(rgba(255, 255, 255, 0.2)));
    background-image: -o-linear-gradient(bottom, #fff, rgba(255, 255, 255, 0.2));
    background-image: linear-gradient(0deg, #fff, rgba(255, 255, 255, 0.2));
    height: 30px;
    bottom: 8px
}

.adsearch-filter.expanded .expanded-wrap[data-v-2f808527], .adsearch-filter.expanded .expanded-wrap-all[data-v-2f808527] {
    height: auto;
    overflow: visible
}

.adsearch-filter .search-new-icon[data-v-2f808527] {
    width: 44px;
    height: 14px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/search_new_icon-656173c7.png);
    background-size: 44px 14px;
    position: absolute;
    top: 5px;
    right: -42px
}

.adsearch-filter .multi-check-icon[data-v-2f808527] {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-top: -6px;
    right: -4px;
    top: 6px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/multi_check_icon-c61d8f7c.png);
    background-size: 22px 22px
}

.adsearch-filter .filter-save-part[data-v-2f808527] {
    padding: 0px !important
}

.adsearch-filter .filter-save-part > div[data-v-2f808527] {
    padding: 0 14px;
    cursor: pointer
}

.adsearch-filter .filter-save-part > div .filter-save-list[data-v-2f808527] {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    white-space: nowrap;
    position: relative
}

.adsearch-filter .filter-save-part > div .filter-save-list .filter-save-head[data-v-2f808527] {
    display: inline-block;
    width: 98px;
    margin-right: 7px
}

.adsearch-filter .filter-save-part > div .filter-save-list .filter-save-value[data-v-2f808527], .adsearch-filter .filter-save-part > div .filter-save-list .filter-save-head[data-v-2f808527] {
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all
}

.adsearch-filter .filter-save-part > div .filter-save-list .save-filter-head[data-v-2f808527] {
    position: absolute;
    top: 50%;
    left: 0px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.adsearch-filter .filter-save-part > div .filter-save-list .save-filter-value[data-v-2f808527] {
    padding-left: 105px
}

.adsearch-filter .filter-save-part > div .filter-save-list .filter-save-value[data-v-2f808527] {
    width: 1060px;
    display: inline-block;
    margin-bottom: -5px
}

.adsearch-filter .filter-save-part > div .filter-save-list .filter-save-value .filter-save-item[data-v-2f808527] {
    position: relative;
    color: #999;
    background: #fff;
    border: solid 1px #d6d6d6;
    display: inline-block;
    line-height: 20px;
    padding: 0px 6px 0px 6px;
    font-size: 12px;
    max-width: 225px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    margin-left: 0px;
    margin-right: 10px;
    cursor: pointer
}

.adsearch-filter .filter-save-part > div[data-v-2f808527]:hover {
    background-color: #f3f9fd
}

.adsearch-filter .filter-save-part > div:hover .filter-save-value .filter-save-item[data-v-2f808527] {
    border: solid 1px #128bed;
    color: #128bed
}

.adsearch-filter .filter-save-part .filter-save-more[data-v-2f808527] {
    text-align: center;
    padding: 10px 0px;
    cursor: auto
}

.adsearch-filter .filter-save-part .filter-save-more[data-v-2f808527]:hover {
    background-color: #fff
}

.adsearch-filter .bicon-save[data-v-2f808527] {
    background-position-y: 0px
}

.columns-set[data-v-a1b31420] {
    line-height: 40px
}

.columns-config[data-v-a1b31420] {
    margin: -8px -10px;
    width: 220px;
    height: 345px;
    overflow-y: auto
}

.columns-config .cell-wrap[data-v-a1b31420] {
    height: 40px
}

.columns-config .cell-item[data-v-a1b31420] {
    padding: 8px 5px 8px 15px;
    line-height: 22px
}

.columns-config .cell-item .bicon-drag[data-v-a1b31420] {
    margin-right: 8px;
    cursor: move
}

.columns-config .cell-item .bicon-drag.disable-drag[data-v-a1b31420] {
    opacity: .3;
    cursor: not-allowed;
    background-position: 0px -22px
}

.columns-config .cell-item .name[data-v-a1b31420] {
    display: inline-block;
    width: 130px
}

.columns-config .cell-item .checkbox-right[data-v-a1b31420] {
    display: inline-block
}

.columns-config .cell-item[data-v-a1b31420]:hover {
    background: #F2F9FC
}

.columns-config .cell-item.dragging[data-v-a1b31420] {
    position: absolute;
    z-index: 9999;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    background: #fff;
    width: 210px
}

.columns-config .cell-item.after-sort[data-v-a1b31420]:not(.dragging) {
    -webkit-box-shadow: 0px 0px 4px rgba(30, 147, 224, 0.2);
    box-shadow: 0px 0px 4px rgba(30, 147, 224, 0.2)
}

.columns-config .static-area.auto-pos[data-v-a1b31420] {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.search-table .batch-bar[data-v-cd187e26] {
    height: 50px;
    background: #f3f9fe;
    padding: 9px 15px;
    border-top: solid 1px #eeeeee
}

.search-table .batch-bar .btn[data-v-cd187e26] {
    width: 98px;
    height: 32px;
    font-size: 12px;
    line-height: 18px
}

.search-table .ntable-wrap[data-v-cd187e26] {
    position: relative;
    border-top: solid 1px #eee;
    padding: 15px
}

.search-table .ntable-wrap .loading-mask[data-v-cd187e26] {
    display: none
}

.search-table .ntable-wrap.loading[data-v-cd187e26] {
    height: 500px;
    overflow: hidden;
    position: relative
}

.search-table .ntable-wrap.loading .loading-mask[data-v-cd187e26] {
    display: block
}

.search-table .columns-set[data-v-cd187e26] {
    position: absolute;
    right: 15px;
    top: 15px;
    height: 41px;
    background: #f2f9fc;
    width: 44px;
    text-align: center;
    z-index: 10;
    border: solid 1px #eee
}

.search-table .ntable[data-v-cd187e26] {
    margin-bottom: 0px
}

.search-table .ntable th[data-v-cd187e26] {
    text-align: left;
    padding-right: 2px;
    border: #e4eef6 1px solid
}

.search-table .ntable td[data-v-cd187e26] {
    padding-top: 8px;
    padding-bottom: 8px;
    min-height: 62px;
    vertical-align: middle
}

.search-table .ntable .maininfo[data-v-cd187e26] {
    position: relative
}

.search-table .ntable .img[data-v-cd187e26] {
    width: 40px;
    height: 40px
}

.search-table .ntable .ntag[data-v-cd187e26] {
    overflow: hidden;
    max-width: 100%;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    vertical-align: bottom
}

.search-table .ntable .ellipsis-content[data-v-cd187e26] {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.search-table .ntable .ellipsis-content .title[data-v-cd187e26] {
    display: inline;
    margin-bottom: 0px
}

.search-table .ntable .ellipsis-content .sub-title[data-v-cd187e26] {
    font-size: 12px;
    color: #999
}

.search-table .ntable .check-label[data-v-cd187e26] {
    margin: 0px 8px 0px 0px;
    display: block;
    line-height: 1
}

.search-table .ntable .check-label input[data-v-cd187e26] {
    margin: 0px
}

.search-table .ntable .nstatus[data-v-cd187e26] {
    font-size: 12px;
    padding: 4px 8px 4px 8px;
    line-height: 12px;
    display: inline-block;
    position: relative
}

.search-table .ntable .frtrt td[data-v-cd187e26] {
    border-bottom: none
}

.search-table .ntable .frtrt[data-v-cd187e26]:hover {
    background: #f3f9fe
}

.search-table .ntable .frtr td[data-v-cd187e26] {
    border-top: none
}

.search-table .ntable .frtr td[data-v-cd187e26] {
    padding: 3px 10px;
    background: #f3f9fe
}

.search-table .ntable .frtr td .fp-p[data-v-cd187e26] {
    margin-top: 5px;
    margin-bottom: 5px
}

.search-table .ntable .frtr td .fp-p > span[data-v-cd187e26] {
    margin-right: 20px
}

.search-table .follow-btn.active[data-v-cd187e26] {
    color: #999
}

.search-table .follow-btn.active[data-v-cd187e26]:hover {
    color: #666
}

.search-table .plcqy[data-v-cd187e26] {
    margin-right: 10px;
    color: #128bed
}

.search-table .plcqy img[data-v-cd187e26] {
    height: 20px;
    width: 20px
}

.adsearch-list .twos-info[data-v-3729936f] {
    padding: 15px;
    background: #f3f9fe;
    border: solid 1px #eee;
    margin-bottom: 15px
}

.adsearch-list .vt-drop[data-v-3729936f] {
    position: relative
}

.adsearch-list .vt-drop img[data-v-3729936f] {
    width: 708px;
    position: absolute;
    z-index: 100;
    top: 35px;
    left: -348px;
    -webkit-transition-property: visibility;
    -o-transition-property: visibility;
    transition-property: visibility;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
    visibility: hidden
}

.adsearch-list .vt-drop:hover img[data-v-3729936f] {
    visibility: visible
}

.adsearch-list .searchmore[data-v-3729936f] {
    width: 430px;
    margin: auto
}

.adsearch-list .searchmore h2[data-v-3729936f] {
    color: #666;
    font-size: 16px;
    font-weight: normal;
    margin-top: 30px;
    margin-bottom: 30px
}

.adsearch-list .search-page[data-v-3729936f] {
    margin-top: 20px
}

.adsearch-list .search-page .rtext[data-v-3729936f] {
    float: right;
    margin-top: 5px
}

.adsearch-list .switch-btn[data-v-3729936f] {
    display: inline-block;
    font-size: 12px;
    height: 32px;
    border: 1px solid #d6d6d6;
    background-color: #fff;
    position: relative;
    line-height: 24px;
    padding: 3px;
    border-radius: 2px
}

.adsearch-list .switch-btn > .item[data-v-3729936f] {
    color: #333;
    padding: 0px 8px;
    border-radius: 2px;
    display: inline-block;
    letter-spacing: 0
}

.adsearch-list .switch-btn > .item.active[data-v-3729936f] {
    color: #fff;
    background: #128bed
}

.adsearch-list .snodata[data-v-3729936f] {
    text-align: left;
    margin-left: 470px;
    margin-top: 20px;
    color: #333
}

.mask[data-v-3729936f] {
    position: absolute;
    width: 455px;
    height: 48px;
    z-index: 999
}

.app-search .twos-info[data-v-7952444a] {
    padding: 15px;
    background: #F3F9FE;
    border: solid 1px #eee;
    margin-bottom: 15px
}

.search-advance-plist .plist .title[data-v-b03317de] {
    font-size: 14px;
    color: #999;
    display: inline-block;
    word-break: break-all
}

.search-advance-plist .plist .time[data-v-b03317de] {
    font-size: 12px;
    color: #999
}

.search-advance-plist .plist .plist-btn[data-v-b03317de] {
    margin-left: 6px
}

.search-advance-plist .plist .plist-btn:hover .aicon[data-v-b03317de] {
    color: #128bed
}

.search-advance-plist-save .plist-wrap[data-v-b03317de] {
    padding: 10px 5px 25px 5px
}

.app-search-advance .banner-bg[data-v-77eb1a69] {
    display: block;
    position: relative;
    height: 100px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/banner-9e297541.jpg);
    background-size: 1220px 100px
}

.app-search-advance .banner-bg .btn[data-v-77eb1a69] {
    position: absolute;
    color: #fff;
    left: 860px;
    top: 32px;
    background-color: #E57630;
    width: 100px;
    height: 36px;
    border-radius: 18px;
    text-align: center;
    line-height: 20px;
    font-weight: bold;
    -webkit-box-shadow: 0 0 2px #E68344;
    box-shadow: 0 0 2px #E68344
}

.app-search-advance .full .page-col-lg[data-v-77eb1a69] {
    width: 100%
}

.app-search-advance .full .page-col-sm[data-v-77eb1a69] {
    display: none
}

.app-search-advance .ptitle[data-v-77eb1a69] {
    position: relative;
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px
}

.app-search-advance .ptitle[data-v-77eb1a69]:before {
    content: " ";
    display: block;
    position: absolute;
    width: 6px;
    height: 24px;
    background: #128bed;
    left: -15px
}

.app-search-advance .searchkey[data-v-77eb1a69] {
    margin-top: -1px;
    width: 386px
}

.app-search-advance .sk-tip[data-v-77eb1a69] {
    color: #FD485E;
    line-height: 28px;
    float: left;
    margin-left: 20px
}

.app-search-advance[data-v-77eb1a69] .sk-choose {
    line-height: 28px;
    margin-left: 20px;
    float: left
}

.app-search-advance[data-v-77eb1a69] .sk-choose:not(.disable) .ant-popover {
    display: none !important
}

.app-search-advance[data-v-77eb1a69] .sk-choose.disable .drop-hover .dselect-text {
    color: #D6D6D6;
    cursor: not-allowed;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.app-search-advance[data-v-77eb1a69] .sk-choose.disable .drop-hover .dropdown-menu {
    display: none !important
}

.app-search-advance .fixed-bottom[data-v-77eb1a69] {
    height: 64px;
    background: #fff;
    border-top: solid 1px #eee;
    padding-top: 15px;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 10
}

.app-search-advance .fixed-bottom .container[data-v-77eb1a69] {
    max-width: 1250px;
    width: auto
}

@media (max-width: 1200px) {
    .app-search-advance .fixed-bottom .container .kzz-text[data-v-77eb1a69] {
        display: none
    }
}

.app-search-advance .fixed-bottom .smultitext[data-v-77eb1a69] {
    line-height: 34px;
    font-size: 16px;
    float: left
}

.app-search-advance .fixed-bottom .btn[data-v-77eb1a69] {
    width: 82px
}

.app-search-advance .vt-popover[data-v-77eb1a69] {
    margin-left: 5px;
    position: relative;
    top: 1px
}

.app-search-advance .vt-popover .aicon[data-v-77eb1a69] {
    font-size: 16px
}

.app-search-advance .vt-popover img[data-v-77eb1a69] {
    display: none;
    width: 708px;
    left: -347px;
    position: absolute;
    z-index: 2
}

.app-search-advance .vt-popover:hover img[data-v-77eb1a69] {
    display: block
}

.app-search-advance .hchoosen[data-v-34d2c56d] {
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px
}

.app-search-advance .hchoosen .pills-after[data-v-34d2c56d] {
    width: 950px
}

.app-fx-popover .app-fx-popover-content {
    width: 690px;
    padding-left: 250px
}

.app-fx-popover .app-fx-popover-content img {
    width: 240px;
    margin-left: -250px;
    float: left;
    margin-top: 4px
}

.app-fx-popover .app-fx-popover-content .txt {
    font-size: 12px
}

.app-fx-popover .app-fx-popover-content .txt > button {
    width: 86px
}

.app-fx-popover .app-fx-popover-content:after {
    display: table;
    content: ' ';
    clear: both
}

.app-fx-popover .app-fx-popover-btn {
    padding: 10px 0 0 0;
    text-align: right;
    position: relative
}

.app-fx-popover .app-fx-popover-btn:before {
    content: '';
    border-top: 1px solid #eee;
    position: absolute;
    left: -10px;
    right: -10px;
    top: 0
}

.app-fx-popover .app-fx-popover-btn .btn {
    margin-top: 0 !important
}

.risk-overview[data-v-283807c6] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.risk-overview .overview-content[data-v-283807c6] {
    width: 100%;
    min-height: 90px;
    position: relative
}

.risk-overview .overview-content .overview-logo[data-v-283807c6] {
    float: left;
    width: 80px;
    height: auto;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0 25px 0 10px
}

.risk-overview .overview-content .overview-logo img[data-v-283807c6] {
    display: inline-block;
    width: 80px;
    height: auto;
    border: 1px solid #EEEEEE;
    border-radius: 4px
}

.risk-overview .overview-content .overview-info[data-v-283807c6] {
    float: right;
    width: 1075px
}

.risk-overview .overview-content .overview-info .company-name[data-v-283807c6] {
    display: inline-block;
    font-size: 18px;
    color: #222;
    line-height: 26px;
    font-weight: bold;
    margin-bottom: 5px;
    cursor: pointer
}

.risk-overview .overview-content .overview-info .company-name[data-v-283807c6]:hover {
    color: #128bed
}

.risk-overview .overview-content .overview-info .risk-body[data-v-283807c6] {
    width: 100%;
    height: auto;
    position: relative;
    border: 1px solid #FFDADF;
    padding: 8px;
    background: rgba(253, 237, 237, 0.2)
}

.risk-overview .overview-content .overview-info .risk-body .risk-panel[data-v-283807c6] {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: rgba(253, 237, 237, 0.2)
}

.risk-overview .overview-content .overview-info .risk-body .risk-panel .risk-tr[data-v-283807c6] {
    height: 52px
}

.risk-overview .overview-content .overview-info .risk-body .risk-panel .risk-tr[data-v-283807c6] td, .risk-overview .overview-content .overview-info .risk-body .risk-panel .risk-tr th[data-v-283807c6] {
    padding-left: 10px
}

.risk-overview .overview-content .overview-info .risk-body .risk-panel .risk-self-filter[data-v-283807c6] {
    background: rgba(253, 72, 94, 0.04)
}

.risk-overview .overview-content .overview-info .risk-body .risk-panel .cursor-hand[data-v-283807c6] {
    cursor: pointer
}

.risk-overview .overview-content .overview-info .risk-body .risk-panel .risk-go[data-v-283807c6] {
    color: #FD485E
}

.risk-overview .overview-content .overview-info .risk-body .risk-panel .m_question[data-v-283807c6] {
    margin: 6px 10px 0 0
}

.risk-overview .overview-content .overview-info .risk-body .risk-panel .risk-header-icon[data-v-283807c6] {
    font-size: 18px;
    vertical-align: sub
}

.risk-overview .overview-content .overview-info .risk-body .risk-panel .risk-icon-status[data-v-283807c6] {
    color: #ff6060
}

.risk-overview .overview-content .overview-info .risk-body .risk-panel .risk-tag[data-v-283807c6] {
    display: inline-block;
    background: #FDEDED;
    border-radius: 2px;
    color: #FD485E;
    width: 62px;
    font-size: 12px;
    text-align: center
}

.risk-overview .overview-content .overview-info .risk-body .risk-panel .risk-tag.none-risk-tag[data-v-283807c6] {
    color: #999;
    background: #f0f0f0;
    border-color: #eee
}

.risk-overview .overview-content .overview-info .risk-body .risk-info[data-v-283807c6] {
    width: 100%;
    height: 100%;
    margin: 0
}

.risk-overview .overview-content .overview-info .risk-body .risk-info .risk-item[data-v-283807c6] {
    display: block;
    width: 100%;
    height: 44px;
    list-style: none;
    margin: 5px 0
}

.risk-overview .overview-content .overview-info .risk-body .risk-info .risk-item li[data-v-283807c6] {
    display: inline;
    width: 90px;
    height: 43px;
    line-height: 43px;
    float: left
}

.risk-overview .overview-content .overview-info .risk-body .risk-info .risk-item .risk-num[data-v-283807c6] {
    text-align: center
}

.risk-overview .overview-content .overview-info .risk-body .risk-info .risk-item .risk-num span[data-v-283807c6] {
    display: inline-block;
    height: 22px;
    line-height: 16px;
    width: 80%;
    margin-top: 11px;
    background: #FDEDED;
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 12px;
    color: #FD485E
}

.risk-overview .overview-content .overview-info .risk-body .risk-info .risk-item .risk-num span.risk-empty[data-v-283807c6] {
    color: #999;
    background: #f0f0f0;
    border-color: #eee
}

.risk-overview .overview-content .overview-info .risk-body .risk-info .risk-item .risk-detail[data-v-283807c6] {
    line-height: 22px;
    min-width: 700px
}

.risk-overview .overview-content .overview-info .risk-body .risk-info .risk-item .risk-detail .rd-text[data-v-283807c6] {
    font-size: 14px;
    color: #333
}

.risk-overview .overview-content .overview-info .risk-body .risk-info .risk-item .risk-detail .rd-text .rdt-go[data-v-283807c6] {
    cursor: pointer;
    color: #FD485E
}

.risk-overview .overview-content .overview-info .risk-body .risk-info .risk-item .risk-detail .rd-text .new-text-line[data-v-283807c6] {
    display: inline-block;
    width: 85%;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap
}

.risk-overview .overview-content .overview-info .risk-body .risk-info .risk-item .risk-detail .rd-text.single-line[data-v-283807c6] {
    line-height: 44px
}

.risk-overview .overview-content .overview-info .risk-body .btn-danger[data-v-283807c6] {
    font-size: 12px;
    width: 82px;
    margin-right: 8px
}

.risk-overview .overview-content .overview-info .risk-body .overview-look[data-v-283807c6] {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: inherit;
    text-align: center
}

.risk-overview .overview-content .overview-info .risk-body .overview-look a[data-v-283807c6] {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden
}

.risk-overview .overview-content .overview-info .risk-body .overview-look .hover-local[data-v-283807c6] {
    position: relative;
    top: 44.2%;
    left: 3px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 999
}

.risk-overview .rquestion-hover:hover .rquestion-panel[data-v-283807c6] {
    visibility: visible
}

.risk-overview .rquestion-panel[data-v-283807c6] {
    position: absolute;
    width: 638px;
    background: #fff;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 100;
    right: 20px;
    font-size: 12px;
    padding: 10px;
    visibility: hidden;
    -webkit-transition-property: visibility;
    -o-transition-property: visibility;
    transition-property: visibility;
    -webkit-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s;
    cursor: default;
    margin-top: 10px
}

.app-dselect[data-v-df15f018] {
    display: inline-block;
    position: relative
}

.app-dselect .dropdown-menu[data-v-df15f018] {
    width: 140px
}

.app-dselect .dselect-text[data-v-df15f018] {
    color: #333
}

.app-dselect .dselect-text.active[data-v-df15f018] {
    color: #128bed
}

.app-dselect ul.drop-col[data-v-df15f018] {
    margin-bottom: 0px;
    padding-left: 0px;
    position: relative;
    overflow: auto;
    max-height: 205px
}

.app-dselect ul.drop-col > li > a[data-v-df15f018], .app-dselect .drop-x > a[data-v-df15f018] {
    display: block;
    padding-left: 15px;
    padding-right: 5px;
    padding-top: 7px;
    padding-bottom: 5px;
    color: #333;
    line-height: 18px
}

.app-dselect ul.drop-col > li > a[data-v-df15f018]:hover, .app-dselect ul.drop-col > li > a.hover[data-v-df15f018], .app-dselect .drop-x > a[data-v-df15f018]:hover, .app-dselect .drop-x > a.hover[data-v-df15f018] {
    background-color: #F3F9FD;
    color: #128bed
}

.app-dselect ul.drop-col > li > a .text[data-v-df15f018], .app-dselect .drop-x > a .text[data-v-df15f018] {
    display: inline-block;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-right: 5px;
    margin-bottom: 0px;
    white-space: nowrap
}

.app-dselect ul.drop-col > li > a label.text[data-v-df15f018], .app-dselect .drop-x > a label.text[data-v-df15f018] {
    font-weight: normal
}

.app-dselect ul.drop-col > li > a label.text > input[data-v-df15f018], .app-dselect .drop-x > a label.text > input[data-v-df15f018] {
    float: left;
    margin-right: 6px;
    margin-top: 3px
}

.app-dselect ul.drop-col > li > a i[data-v-df15f018], .app-dselect .drop-x > a i[data-v-df15f018] {
    float: right;
    margin-top: 2px
}

.app-dselect ul.drop-col > li > a .drop-right[data-v-df15f018], .app-dselect .drop-x > a .drop-right[data-v-df15f018] {
    position: absolute;
    left: 158px;
    z-index: 1000;
    bottom: -1px
}

.app-dselect.drop-hover .dropdown-menu[data-v-df15f018] {
    display: block;
    visibility: hidden;
    -webkit-transition: all 0s linear 0.3s;
    -o-transition: all 0s linear 0.3s;
    transition: all 0s linear 0.3s
}

.app-dselect.drop-hover:hover .dropdown-menu[data-v-df15f018] {
    visibility: visible
}

.adsearch-filter[data-v-9c99e9f6] {
    position: relative
}

.adsearch-filter .npanel[data-v-9c99e9f6] {
    margin-bottom: 37px
}

.adsearch-filter .npanel .npanel-body[data-v-9c99e9f6] {
    padding: 10px 15px
}

.adsearch-filter .pills[data-v-9c99e9f6]:not(:last-child) {
    margin-bottom: 0px
}

.adsearch-filter .line[data-v-9c99e9f6] {
    background: #eee;
    height: 1px;
    margin-top: 8px;
    margin-bottom: 8px
}

.adsearch-filter .pills[data-v-9c99e9f6] {
    vertical-align: bottom
}

.adsearch-filter .type-around[data-v-9c99e9f6] .pills-after .fitem {
    width: 111px;
    padding: 3px 0 3px 6px
}

.adsearch-filter .pills.hmore[data-v-9c99e9f6] {
    height: 33px
}

.adsearch-filter .pills-header[data-v-9c99e9f6] {
    position: relative
}

.adsearch-filter .choosen[data-v-9c99e9f6] {
    border-bottom: solid 1px #eee;
    padding-bottom: 10px;
    margin-bottom: 10px
}

.adsearch-filter .choosen .pills-after[data-v-9c99e9f6] {
    padding-left: 12px;
    max-width: 1000px
}

.adsearch-filter .choosen .pills-item[data-v-9c99e9f6] {
    position: relative;
    color: #128bed;
    background: #fff;
    border: solid 1px #128bed;
    line-height: 22px;
    padding: 0px 20px 0px 6px;
    font-size: 12px;
    max-width: 250px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    position: relative;
    margin-left: 0px;
    margin-right: 10px;
    cursor: pointer
}

.adsearch-filter .choosen .pills-item[data-v-9c99e9f6]:hover {
    background: #128bed;
    color: #fff
}

.adsearch-filter .choosen .pills-item[data-v-9c99e9f6]:after {
    content: "X";
    position: absolute;
    right: 6px;
    top: 0px
}

.adsearch-filter .expand-btn[data-v-9c99e9f6] {
    background-color: #fff;
    width: 100px;
    height: 22px;
    position: absolute;
    left: 50%;
    bottom: -21px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    background: -o-linear-gradient(160deg, transparent 15px, #fff 0) right, -o-linear-gradient(20deg, transparent 15px, #fff 0) left;
    background: linear-gradient(-70deg, transparent 15px, #fff 0) right, linear-gradient(70deg, transparent 15px, #fff 0) left;
    background-size: 50% 100%;
    background-repeat: no-repeat;
    cursor: pointer
}

.adsearch-filter .expand-btn > i[data-v-9c99e9f6] {
    font-size: 18px;
    color: #666
}

.adsearch-filter .expanded-wrap[data-v-9c99e9f6] {
    height: 28px;
    overflow: hidden
}

.adsearch-filter .expanded-mask[data-v-9c99e9f6] {
    cursor: pointer;
    position: absolute;
    left: 2px;
    right: 2px;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(rgba(255, 255, 255, 0.2)));
    background-image: -o-linear-gradient(bottom, #fff, rgba(255, 255, 255, 0.2));
    background-image: linear-gradient(0deg, #fff, rgba(255, 255, 255, 0.2));
    height: 30px;
    bottom: 8px
}

.adsearch-filter.expanded .expanded-wrap[data-v-9c99e9f6] {
    height: auto;
    overflow: visible
}

.adsearch-filter .search-new-icon[data-v-9c99e9f6] {
    width: 44px;
    height: 14px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/search_new_icon-656173c7.png);
    background-size: 44px 14px;
    position: absolute;
    top: 5px;
    right: -42px
}

.adsearch-filter .multi-check-icon[data-v-9c99e9f6] {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-top: -6px;
    right: -4px;
    top: 6px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/multi_check_icon-c61d8f7c.png);
    background-size: 22px 22px
}

.app-search-risk .risk-noData[data-v-7a40a262] {
    padding: 100px 10px 20px 10px !important
}

.app-search-risk .export-company-noData[data-v-7a40a262] {
    text-align: center;
    padding-bottom: 70px
}

.app-search-risk .risk-overview[data-v-7a40a262] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.app-search-risk .risk-overview .overview-content[data-v-7a40a262] {
    width: 100%;
    min-height: 90px;
    position: relative
}

.app-search-risk .risk-overview .overview-content .overview-logo[data-v-7a40a262] {
    display: inline-block;
    float: left;
    width: 80px;
    height: auto;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0 25px 0 10px
}

.app-search-risk .risk-overview .overview-content .overview-logo img[data-v-7a40a262] {
    display: inline-block;
    width: 80px;
    height: auto;
    border: 1px solid #EEEEEE;
    border-radius: 4px
}

.app-search-risk .risk-overview .overview-content .risk-overview[data-v-7a40a262] {
    width: 1075px;
    float: right
}

.app-search-risk .risk-overview .overview-content .risk-overview .company-name[data-v-7a40a262] {
    display: inline-block;
    font-size: 18px;
    color: #222;
    line-height: 26px;
    font-weight: bold;
    margin-bottom: 5px;
    cursor: pointer
}

.app-search-risk .risk-overview .overview-content .risk-overview .company-name[data-v-7a40a262]:hover {
    color: #128bed
}


.person-list .pcard-body[data-v-32dec9ea] {
    padding-bottom: 0
}

.person-list .pcard-body .boss-list[data-v-32dec9ea] {
    height: 330px;
    padding-right: 7.5px;
    padding-left: 7.5px;
    margin-bottom: 20px
}

.person-list .pcard-body .boss-list .pcard-npanel[data-v-32dec9ea] {
    position: relative;
    border: 1px solid #eee;
    background-color: #fff;
    height: 100%;
    padding: 15px;
    cursor: pointer
}

.person-list .pcard-body .boss-list .pcard-npanel .cell-tag[data-v-32dec9ea] {
    position: absolute;
    background-color: #fff;
    top: -1px;
    right: -1px;
    height: 22px;
    font-weight: normal;
    display: inline-block;
    line-height: 12px;
    font-size: 12px;
    padding: 4px 8px 4px 8px;
    color: #128bed;
    border: solid 1px #9FD0F8;
    border-bottom-left-radius: 4px
}

.person-list .pcard-body .boss-list .pcard-npanel .pcard-profile[data-v-32dec9ea] {
    width: 100%;
    height: 62px
}

.person-list .pcard-body .boss-list .pcard-npanel .pcard-profile .pcard-portraits[data-v-32dec9ea] {
    float: left;
    height: 100%;
    margin-right: 5px
}

.person-list .pcard-body .boss-list .pcard-npanel .pcard-profile .pcard-info[data-v-32dec9ea] {
    float: left;
    width: 80%;
    height: 100%;
    margin-left: 10px
}

.person-list .pcard-body .boss-list .pcard-npanel .pcard-profile .pcard-info .pcard-name[data-v-32dec9ea] {
    width: 97%;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 20px;
    color: #000;
    cursor: pointer
}

.person-list .pcard-body .boss-list .pcard-npanel .pcard-province[data-v-32dec9ea] {
    width: 100%;
    height: 90px;
    margin: 5px 0 0 0
}

.person-list .pcard-body .boss-list .pcard-npanel .pcard-province .province-item[data-v-32dec9ea] {
    margin-top: 5px
}

.person-list .pcard-body .boss-list .pcard-npanel .pcard-province .province-item .prov-place[data-v-32dec9ea] {
    float: left
}

.person-list .pcard-body .boss-list .pcard-npanel .pcard-province .province-item .prov-info[data-v-32dec9ea] {
    float: right;
    text-align: right
}

.person-list .pcard-body .boss-list .pcard-npanel .pcard-province .province-item[data-v-32dec9ea]:after {
    display: table;
    content: ' ';
    clear: both
}

.person-list .pcard-body .boss-list .pcard-npanel .pcard-partner[data-v-32dec9ea] {
    width: 100%;
    height: 132px;
    margin: 10px 0 0 0
}

.person-list .pcard-body .boss-list .pcard-npanel .pcard-partner .pcard-partner-title[data-v-32dec9ea] {
    width: 100%;
    color: #999;
    margin-bottom: 10px
}

.person-list .pcard-body .boss-list .pcard-npanel .pcard-partner .pcard-partner-list[data-v-32dec9ea] {
    width: 100%;
    height: 102px;
    overflow: hidden
}

.person-list .pcard-body .boss-list .pcard-npanel .pcard-partner .pcard-partner-list .pcard-partner-item[data-v-32dec9ea] {
    height: 100%;
    padding: 0 7px 0 0
}

.person-list .pcard-body .boss-list .pcard-npanel .pcard-partner .pcard-partner-list .pcard-partner-item .pcard-partner-npanel[data-v-32dec9ea] {
    width: 100%;
    height: 100%;
    border: 1px solid #eee;
    background-color: #f6f6f6;
    padding: 6px
}

.person-list .pcard-body .boss-list .pcard-npanel .pcard-partner .pcard-partner-list .pcard-partner-item .pcard-partner-npanel .pcard-partner-profile .pcard-partner-header[data-v-32dec9ea] {
    float: left;
    width: 20%
}

.person-list .pcard-body .boss-list .pcard-npanel .pcard-partner .pcard-partner-list .pcard-partner-item .pcard-partner-npanel .pcard-partner-profile .pcard-partner-profile-name[data-v-32dec9ea] {
    margin-left: 6px;
    font-size: 16px;
    color: #000;
    float: left;
    width: 60%;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 3px
}

.person-list .pcard-body .boss-list .pcard-npanel .pcard-partner .pcard-partner-list .pcard-partner-item .pcard-partner-npanel .pcard-partner-profile[data-v-32dec9ea]:after {
    display: table;
    content: ' ';
    clear: both
}

.person-list .pcard-body .boss-list .pcard-npanel .pcard-partner .pcard-partner-list .pcard-partner-item .pcard-partner-npanel .pcard-partner-company[data-v-32dec9ea] {
    margin-top: 10px;
    font-size: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden
}

.person-list .pcard-body .boss-list .pcard-npanel .pcard-partner .pcard-partner-list .pcard-partner-item .pcard-partner-npanel:hover .pcard-partner-profile .pcard-partner-profile-name[data-v-32dec9ea] {
    color: #128bed
}

.person-list .pcard-body .boss-list .pcard-npanel[data-v-32dec9ea]:hover {
    background-color: #F3F9FE
}

.person-list .pcard-body .boss-list .pcard-npanel:hover .pcard-profile .pcard-info .pcard-name[data-v-32dec9ea] {
    color: #128bed
}

.person-list .pcard-body .boss-list .pcard-npanel:hover .pcard-partner .pcard-partner-list .pcard-partner-item .pcard-partner-npanel[data-v-32dec9ea] {
    background-color: #fff
}

.person-list .nodata-sk[data-v-32dec9ea] {
    color: #999
}

.recommend-list .recommend-item[data-v-fe1abe4a] {
    margin: 0 5px
}

.recommend-list .recommend-item a[data-v-fe1abe4a] {
    color: #333
}

.recommend-list .recommend-item a[data-v-fe1abe4a]:hover {
    color: #128bed
}

.search-page[data-v-1d8fb130] {
    margin: 20px 0 50px
}

.app-search-risk .loading[data-v-3e4a08c2] {
    width: 100%;
    border: 1px solid #eee;
    border-top: 0
}

.app-search-risk .head[data-v-3e4a08c2] {
    margin-bottom: 0px
}

.app-search-risk .top-head[data-v-3e4a08c2] {
    border-top: 0px;
    margin-top: 0px !important
}

.app-search-risk .top-head .bigsearch-filter[data-v-3e4a08c2] {
    margin-bottom: 0px
}

.app-search-risk .risk-noData[data-v-3e4a08c2] {
    padding: 100px 10px 20px 10px !important
}

.app-search-risk .bigsearch-filter[data-v-3e4a08c2] {
    margin-bottom: 15px
}

.app-search-risk .export-company-noData[data-v-3e4a08c2] {
    text-align: center;
    padding-bottom: 70px
}

.app-search-risk #searchImage[data-v-3e4a08c2] {
    -o-object-fit: contain;
    object-fit: contain
}

.app-search-risk .risk-overview[data-v-3e4a08c2] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.app-search-risk .risk-overview .overview-content[data-v-3e4a08c2] {
    width: 100%;
    min-height: 90px;
    position: relative
}

.app-search-risk .risk-overview .overview-content .overview-logo[data-v-3e4a08c2] {
    display: inline-block;
    float: left;
    width: 80px;
    height: auto;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0 25px 0 10px
}

.app-search-risk .risk-overview .overview-content .overview-logo img[data-v-3e4a08c2] {
    display: inline-block;
    width: 80px;
    height: auto;
    border: 1px solid #eeeeee;
    border-radius: 4px
}

.app-search-risk .risk-overview .overview-content .risk-overview[data-v-3e4a08c2] {
    width: 1075px;
    float: right
}

.app-search-risk .risk-overview .overview-content .risk-overview .company-name[data-v-3e4a08c2] {
    display: inline-block;
    font-size: 18px;
    color: #222;
    line-height: 26px;
    font-weight: bold;
    margin-bottom: 5px;
    cursor: pointer
}

.app-search-risk .risk-overview .overview-content .risk-overview .company-name[data-v-3e4a08c2]:hover {
    color: #128bed
}

.app-search-risk[data-v-3e4a08c2] .rjzzq-list .npanel {
    margin-top: 15px
}

.app-search-risk .pills-item.camera[data-v-3e4a08c2] {
    padding-left: 30px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_camera-N-f2abd385.png);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 6px 4px
}

.app-search-risk .pills-item.camera[data-v-3e4a08c2]:hover {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_camera-H-35dbcb0b.png);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 6px 4px
}

.app-search-risk .pills-item.pic[data-v-3e4a08c2] {
    padding-left: 30px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_pic_N-bfe71c92.png);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 6px 4px
}

.app-search-risk .pills-item.pic[data-v-3e4a08c2]:hover {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_pic_H-090553ca.png);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 6px 4px
}

.app-search-risk .choosen[data-v-3e4a08c2] {
    border-bottom: solid 1px #eee;
    padding-bottom: 15px;
    margin-bottom: 10px
}

.app-search-risk .choosen .pills-after[data-v-3e4a08c2] {
    padding-left: 12px;
    max-width: 1000px
}

.app-search-risk .choosen .pills-item[data-v-3e4a08c2] {
    position: relative;
    color: #128bed;
    background: #fff;
    border: solid 1px #128bed;
    line-height: 22px;
    padding: 0px 20px 0px 6px;
    font-size: 12px;
    max-width: 250px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    position: relative;
    margin-left: 0px;
    margin-right: 10px;
    cursor: pointer
}

.app-search-risk .choosen .pills-item[data-v-3e4a08c2]:hover {
    background: #128bed;
    color: #fff
}

.app-search-risk .choosen .pills-item[data-v-3e4a08c2]:after {
    content: "X";
    position: absolute;
    right: 6px;
    top: 0px
}

.app-search-risk .list[data-v-3e4a08c2] {
    margin-bottom: 20px
}

.app-search-risk .picture[data-v-3e4a08c2] .ntable-list tr:hover {
    background: #fff
}

.app-search-risk .imgPart[data-v-3e4a08c2] {
    padding: 15px 25px;
    border-top: 1px solid #eee
}

.app-search-risk .noLoading[data-v-3e4a08c2] {
    margin-top: -20px
}

.app-search-risk .noData .npanel[data-v-3e4a08c2], .app-search-risk .noData .bigsearch-filter[data-v-3e4a08c2] {
    border-top: 0
}

.app-search-risk .uploadPart[data-v-3e4a08c2] {
    height: 280px
}

.app-search-risk .pic-search-check[data-v-3e4a08c2] {
    color: #333;
    padding: 3px 10px;
    margin: 3px 3px;
    float: left
}

.app-search-risk .pic-search-check .checkbox_btn[data-v-3e4a08c2] {
    margin-right: 4px;
    display: inline-block;
    margin-bottom: -8px
}

.app-search-risk .trademark_edit[data-v-3e4a08c2], .app-search-risk .trademark_reset[data-v-3e4a08c2] {
    height: 22px;
    width: 22px;
    background-size: 100% 100%;
    display: inline-block;
    margin-bottom: -6px
}

.app-search-risk .trademark_edit[data-v-3e4a08c2] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/trademark_edit-197ea4be.png)
}

.app-search-risk .trademark_reset[data-v-3e4a08c2] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/trademark_reset-eb921237.png)
}

#comTag .fit-table-img[data-v-1de1edb6] {
    display: inline-block;
    width: 80px;
    height: auto
}

#comtag-filter .choosen[data-v-30f2e6ca] {
    border-bottom: solid 1px #eee;
    padding-bottom: 10px;
    margin-bottom: 10px
}

#comtag-filter .choosen .pills-after[data-v-30f2e6ca] {
    padding-left: 12px;
    max-width: 1000px
}

#comtag-filter .choosen .pills-item[data-v-30f2e6ca] {
    position: relative;
    color: #128bed;
    background: #fff;
    border: solid 1px #128bed;
    line-height: 22px;
    padding: 0px 20px 0px 6px;
    font-size: 12px;
    max-width: 250px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    position: relative;
    margin-left: 0px;
    margin-right: 10px;
    cursor: pointer
}

#comtag-filter .choosen .pills-item[data-v-30f2e6ca]:hover {
    background: #128bed;
    color: #fff
}

#comtag-filter .choosen .pills-item[data-v-30f2e6ca]:after {
    content: "X";
    position: absolute;
    right: 6px;
    top: 0px
}


.pay-page-select-service {
    width: 100%
}

.pay-page-select-service td {
    padding-top: 5px;
    padding-bottom: 5px
}

.pay-page-select-service td .radio-inline {
    vertical-align: top;
    position: relative;
    top: -1px
}

.pay-page-custom-meal form {
    display: block
}

.pay-page-custom-meal label.col-pre {
    margin-left: 0px
}

.radio-control {
    height: 34px;
    padding-top: 7px
}

.pay-intro .first_td_hover {
    position: relative;
    height: 100%
}

.pay-intro .first_td_hover .first_center {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.pay-intro .intro_vip_show {
    position: absolute;
    left: 300px;
    top: -11px;
    background: #fff;
    width: 600px;
    border-radius: 4px;
    -webkit-box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #eeeeee;
    padding: 20px 30px 30px 30px;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in;
    -o-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
    z-index: -1
}

.pay-intro .intro_vip_show .title {
    font-size: 20px;
    color: #333;
    font-weight: 500
}

.pay-intro .intro_vip_show .des {
    font-size: 16px !important;
    color: #999
}

.pay-intro .intro_vip_show .intro_img {
    background: #f6f6f6;
    margin-top: 20px;
    width: 540px
}

.pay-intro .intro_vip_show .intro_img img {
    width: 100%
}

.pay-intro .hover_title {
    color: #128bed !important
}

.pay-intro .hover_arrow {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/hover_arrow-7d0961d6.png) no-repeat;
    background-size: 100% 100%;
    height: 22px;
    width: 22px;
    margin-bottom: -5px;
    display: inline-block
}

.pay-intro .first_td {
    position: relative
}

.pay-intro .title:hover .intro_vip_show {
    opacity: 1;
    z-index: 100
}

.pay-intro .shujuhuiyuan {
    width: 67px;
    height: 14px;
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: -2px
}

.pay-intro .zhushi {
    font-size: 16px;
    display: inline-block;
    position: relative
}

.pay-intro .vip-popover {
    margin-right: 10px;
    margin-left: 10px
}

.pay-intro .xf {
    font-size: 14px;
    position: relative;
    top: -1px
}

.pay-page .pay-top {
    height: 356px;
    background: #128bed url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pay_top_bg-d8785acf.png) no-repeat top;
    background-size: cover;
    padding-top: 35px;
    margin-bottom: 80px
}

.pay-page .pay-top .pay-title .title {
    font-size: 44px;
    font-family: "Microsoft YaHei", Arial;
    color: #fff;
    text-align: center
}

.pay-page .pay-top .pay-title .sub-title {
    font-size: 26px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #fff;
    margin-top: 20px;
    text-align: center
}

.pay-page .pay-top .pay-panel-scroll {
    position: relative
}

.pay-page .pay-top .pay-panel {
    width: 320px;
    height: 340px;
    position: absolute;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(18, 139, 237, 0.05);
    box-shadow: 0px 10px 30px 0px rgba(18, 139, 237, 0.05);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    text-align: center
}

.pay-page .pay-top .pay-panel.sort1 {
    top: 100px;
    left: 0px;
    z-index: 2
}

.pay-page .pay-top .pay-panel.sort2 {
    left: 340px;
    top: 35px;
    z-index: 3
}

.pay-page .pay-top .pay-panel.sort3 {
    top: 100px;
    left: 900px;
    z-index: 1
}

.pay-page .pay-top .pay-panel .pay-panel-header {
    height: 182px;
    background-size: 320px 182px;
    padding-top: 35px;
    border-radius: 12px 12px 0 0
}

.pay-page .pay-top .pay-panel .pay-panel-header .title {
    font-size: 34px;
    font-weight: bold
}

.pay-page .pay-top .pay-panel .pay-panel-header .sub-title {
    font-size: 18px;
    margin-top: 15px
}

.pay-page .pay-top .pay-panel .pay-panel-wrap {
    height: 158px;
    background: #fff;
    padding-top: 20px;
    border-radius: 0 0 12px 12px
}

.pay-page .pay-top .pay-panel .pay-panel-wrap .price {
    font-size: 18px
}

.pay-page .pay-top .pay-panel .pay-panel-wrap .price b {
    font-size: 28px
}

.pay-page .pay-top .pay-panel .pay-panel-wrap .pay-btn {
    margin-top: 12px;
    width: 140px;
    line-height: 28px;
    border-radius: 4px
}

.pay-page .pay-top .pay-panel.big {
    width: 540px;
    height: 520px
}

.pay-page .pay-top .pay-panel.big .pay-panel-header {
    height: 200px;
    background-size: 540px 200px;
    padding-top: 40px
}

.pay-page .pay-top .pay-panel.big .pay-panel-header .title {
    font-size: 40px
}

.pay-page .pay-top .pay-panel.big .pay-panel-header .sub-title {
    font-size: 26px;
    margin-top: 20px
}

.pay-page .pay-top .pay-panel.big .pay-panel-wrap {
    height: 320px;
    padding-top: 50px;
    overflow: hidden
}

.pay-page .pay-top .pay-panel.big .pay-panel-wrap .price {
    font-size: 18px
}

.pay-page .pay-top .pay-panel.big .pay-panel-wrap .pay-btn {
    margin-top: 50px;
    width: 300px;
    font-size: 18px
}

.pay-page .pay-top .pay-panel.big .pay-panel-wrap .after-bar {
    margin-top: 25px
}

.pay-page .pay-top .pay-panel.big .pay-panel-wrap .origin-price {
    color: #ccc;
    font-size: 14px;
    line-height: 22px;
    text-decoration: line-through;
    margin-top: -2px
}

.pay-page .pay-top .goods-list {
    white-space: nowrap
}

.pay-page .pay-top .goods-list .item {
    position: relative;
    width: 160px;
    height: 95px;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    background-color: #fff;
    border: solid 2px #eee;
    border-radius: 4px;
    padding-top: 13px
}

.pay-page .pay-top .goods-list .item .price small {
    font-size: 14px
}

.pay-page .pay-top .goods-list .item .price b {
    font-size: 24px;
    font-weight: bold
}

.pay-page .pay-top .goods-list .item .price .unit {
    font-size: 14px;
    color: #666666
}

.pay-page .pay-top .goods-list .item .offset {
    margin-top: 10px;
    color: #999
}

.pay-page .pay-top .goods-list .item .recomend {
    position: absolute;
    width: 48px;
    height: 24px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/recomend2-1c26e241.png);
    background-size: 48px 24px;
    top: -12px;
    left: -2px
}

.pay-page .pay-top .goods-list .item .check {
    width: 0;
    height: 0;
    border-bottom: 26px solid #128bed;
    border-left: 26px solid transparent;
    position: absolute;
    z-index: 2;
    bottom: 0px;
    right: 0px;
    line-height: 26px
}

.pay-page .pay-top .goods-list .item .check .fa {
    position: absolute;
    color: #fff;
    font-weight: 100;
    right: 0px;
    top: 10px
}

.pay-page .pay-top .pay-panel.vip .pay-panel-header {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_panelbg-4e2ffe58.png);
    background-color: #f6cda0;
    color: #864d07
}

.pay-page .pay-top .pay-panel.vip.big .pay-panel-header {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_panelbg_big-6a046a17.png)
}

.pay-page .pay-top .pay-panel.vip .price {
    color: #864d07
}

.pay-page .pay-top .pay-panel.vip .pay-btn {
    background-color: #f6cda0;
    color: #864d07
}

.pay-page .pay-top .pay-panel.vip .goods-list .item .price {
    color: #864d07
}

.pay-page .pay-top .pay-panel.vip .goods-list .item.active {
    border-color: #f6cda0;
    background-color: #fefaf5
}

.pay-page .pay-top .pay-panel.vip .goods-list .item .check {
    border-bottom-color: #f6cda0
}

.pay-page .pay-top .pay-panel.vip .sm-text {
    color: #864d07
}

.pay-page .pay-top .pay-panel.svip .pay-panel-header {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/svip_panelbg-dcbf47c9.png);
    background-color: #f9d354;
    color: #aa6715
}

.pay-page .pay-top .pay-panel.svip.big .pay-panel-header {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/svip_panelbg_big-a1d87fee.png)
}

.pay-page .pay-top .pay-panel.svip .price {
    color: #aa6715
}

.pay-page .pay-top .pay-panel.svip .pay-btn {
    background-color: #f9d354;
    color: #aa6715
}

.pay-page .pay-top .pay-panel.svip .goods-list .item .price {
    color: #aa6715
}

.pay-page .pay-top .pay-panel.svip .goods-list .item.active {
    border-color: #f9d354;
    background-color: #fffbee
}

.pay-page .pay-top .pay-panel.svip .goods-list .item .check {
    border-bottom-color: #f9d354
}

.pay-page .pay-top .pay-panel.svip .sm-text {
    color: #aa6715
}

.pay-page .pay-top .pay-panel.qiye .pay-panel-header {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/qiye_panelbg-67c16ee1.png);
    background-color: #467fe8;
    color: #fff
}

.pay-page .pay-top .pay-panel.qiye.big .pay-panel-header {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/qiye_panelbg_big-3ff6bb48.png)
}

.pay-page .pay-top .pay-panel.qiye .pay-panel-wrap {
    padding-top: 20px
}

.pay-page .pay-top .pay-panel.qiye .price {
    color: #467fe8
}

.pay-page .pay-top .pay-panel.qiye .pay-btn {
    background-color: #467fe8;
    color: #fff
}

.pay-page .pay-top .pay-panel.qiye .goods-list .item .price {
    color: #467fe8
}

.pay-page .pay-top .pay-panel.qiye .goods-list .item.active {
    border-color: #467fe8;
    background-color: #f5f9ff
}

.pay-page .pay-top .pay-panel.qiye .goods-list .item .check {
    border-bottom-color: #467fe8
}

.pay-page .pay-top .pay-panel.qiye .meal-change-spin {
    margin-top: 20px
}

.pay-page .pay-top .pay-panel.qiye .meal-change-spin .mnumber-input {
    width: 180px;
    height: 42px;
    margin: auto
}

.pay-page .pay-top .pay-panel.qiye .price-computed {
    margin-top: 10px;
    color: #999
}

.pay-page .pay-top .pay-panel.qiye .sm-text {
    color: #467fe8
}

.pay-page .pay-top .pay-panel.big.qiye .pay-btn {
    margin-top: 15px
}

.pay-page .pay-top .pay-panel.big.qiye .after-bar {
    margin-top: 13px
}

.pay-page .pay-top .qiye-switch-group {
    margin-top: 15px
}

.pay-page .pay-top .qiye-switch-group .switch-vip, .pay-page .pay-top .qiye-switch-group .switch-svip {
    display: inline-block;
    width: 168px;
    height: 46px;
    border: solid 2px #fadcb9;
    margin-left: 5px;
    margin-right: 5px;
    color: #fadcb9;
    font-size: 18px;
    line-height: 26px;
    padding-top: 8px;
    position: relative
}

.pay-page .pay-top .qiye-switch-group .switch-vip .qicon, .pay-page .pay-top .qiye-switch-group .switch-svip .qicon {
    display: inline-block;
    width: 26px;
    height: 26px;
    background-size: 26px 26px;
    position: relative;
    margin-right: 2px;
    margin-top: -7px;
    position: relative;
    top: 7px
}

.pay-page .pay-top .qiye-switch-group .switch-vip.active, .pay-page .pay-top .qiye-switch-group .switch-svip.active {
    width: 168px;
    height: 46px;
    border: none;
    background-size: 168px 46px;
    top: -1px;
    padding-top: 9px
}

.pay-page .pay-top .qiye-switch-group .switch-vip {
    border-radius: 23px 0 0 23px
}

.pay-page .pay-top .qiye-switch-group .switch-vip .qicon {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/ent_vip_icon-3db1efb4.png)
}

.pay-page .pay-top .qiye-switch-group .switch-vip.active {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/qiye_switch_btn1-a620add8.png)
}

.pay-page .pay-top .qiye-switch-group .switch-svip {
    border-radius: 0 23px 23px 0
}

.pay-page .pay-top .qiye-switch-group .switch-svip .pay_hot {
    height: 14px;
    width: 28px;
    position: absolute;
    top: -7px;
    right: 0px
}

.pay-page .pay-top .qiye-switch-group .switch-svip .qicon {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/ent_svip_icon-64e9b45b.png)
}

.pay-page .pay-top .qiye-switch-group .switch-svip.active {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/qiye_switch_btn2-7b6d88a7.png)
}

.pay-page .pay-intro {
    border-radius: 2px;
    margin-top: 370px;
    margin-bottom: 60px
}

.pay-page .pay-intro table {
    width: 100%;
    background-color: #fff
}

.pay-page .pay-intro table td {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    border-left: solid 1px #eee;
    border-right: solid 1px #eee
}

.pay-page .pay-intro table td:first-child {
    padding-left: 30px;
    padding-right: 10px;
    text-align: left
}

.pay-page .pay-intro table td.current {
    border-left: solid 2px #128bed !important;
    border-right: solid 2px #128bed !important
}

.pay-page .pay-intro .intro-header {
    height: 161px
}

.pay-page .pay-intro .intro-header table.fixed {
    position: fixed;
    top: 0px;
    width: 1220px;
    background: #fff;
    z-index: 101;
    -webkit-box-shadow: 0px 4px 3px -4px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 3px -4px rgba(0, 0, 0, 0.1)
}

.pay-page .pay-intro .intro-header table td {
    position: relative;
    vertical-align: top;
    padding-top: 25px;
    padding-bottom: 20px;
    border-bottom: solid 1px #eee;
    border-top: solid 1px #eee
}

.pay-page .pay-intro .intro-header table td.current:before {
    content: " ";
    position: absolute;
    height: 2px;
    top: -1px;
    left: 0px;
    right: 0px;
    background: #128bed
}

.pay-page .pay-intro .intro-header table td:first-child {
    vertical-align: middle
}

.pay-page .pay-intro .intro-header table td .recomend {
    position: absolute;
    width: 35px;
    height: 35px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/recomend1-1960e042.png);
    background-size: 35px 35px;
    top: 0px;
    right: 0px
}

.pay-page .pay-intro .intro-header table td .title {
    font-size: 20px;
    font-weight: bold
}

.pay-page .pay-intro .intro-header table td .vicon img {
    width: 34px;
    height: 34px;
    margin-right: 5px;
    position: relative;
    top: -2px
}

.pay-page .pay-intro .intro-header table td .pay-btn {
    width: 140px;
    height: 38px;
    border-radius: 2px;
    margin-top: 11px;
    font-size: 16px
}

.pay-page .pay-intro .intro-header table td .offsetText {
    margin-top: 10px;
    color: #999
}

.pay-page .pay-intro .intro-header table td.vip .title {
    color: #864d07
}

.pay-page .pay-intro .intro-header table td.vip .pay-btn {
    color: #864d07;
    border-color: #f6cda0
}

.pay-page .pay-intro .intro-header table td.vip.current .pay-btn {
    background-color: #f6cda0
}

.pay-page .pay-intro .intro-header table td.vip .offsetText .p {
    color: #864d07
}

.pay-page .pay-intro .intro-header table td.svip .title {
    color: #aa6715
}

.pay-page .pay-intro .intro-header table td.svip .pay-btn {
    color: #aa6715;
    border-color: #f9d354
}

.pay-page .pay-intro .intro-header table td.svip.current .pay-btn {
    background-color: #f9d354
}

.pay-page .pay-intro .intro-header table td.svip .offsetText .p {
    color: #aa6715
}

.pay-page .pay-intro .intro-header table td.ent .title, .pay-page .pay-intro .intro-header table td.entSvip .title {
    color: #173b9e
}

.pay-page .pay-intro .intro-header table td.ent .pay-btn, .pay-page .pay-intro .intro-header table td.entSvip .pay-btn {
    color: #467fe8;
    border-color: #467fe8
}

.pay-page .pay-intro .intro-header table td.ent.current .pay-btn, .pay-page .pay-intro .intro-header table td.entSvip.current .pay-btn {
    color: #fff;
    background-color: #467fe8
}

.pay-page .pay-intro .intro-header table td.ent .offsetText .p, .pay-page .pay-intro .intro-header table td.entSvip .offsetText .p {
    color: #467fe8
}

.pay-page .pay-intro .intro-content table td {
    font-size: 16px;
    border-bottom: solid 1px #eee;
    height: 64px
}

.pay-page .pay-intro .intro-content table td .open-btn {
    font-size: 12px;
    margin-left: 8px
}

.pay-page .pay-intro .intro-content table td .open-btn > img {
    height: 12px;
    position: relative;
    top: -1px
}

.pay-page .pay-intro .intro-content table .blank-td {
    border-left-color: #fff
}

.pay-page .pay-intro .intro-content table .blank-td:not(:last-child) {
    border-right-color: #fff
}

.pay-page .pay-intro .intro-content table tr:nth-child(odd) td {
    background: #f5f9ff
}

.pay-page .pay-intro .intro-content table tr:nth-child(odd) td.current {
    background: #e5efff
}

.pay-page .pay-intro .intro-content table .group-title {
    font-weight: 600;
    font-size: 22px;
    line-height: 59px;
    position: relative;
    padding-left: 25px;
    border-right-color: #fff
}

.pay-page .pay-intro .intro-content table .group-title:after {
    content: " ";
    position: absolute;
    left: 0px;
    width: 5px;
    height: 22px;
    background: #128bed;
    top: 27px
}

.pay-page .pay-intro .intro-content table .des {
    color: #999;
    font-size: 12px
}

.pay-page .pay-intro .intro-content table .fa-check {
    font-size: 22px;
    color: #00cc66
}

.pay-page .pay-intro .intro-content table .x {
    font-size: 28px;
    font-weight: bolder;
    color: #999;
    line-height: 1
}

.pay-page .pay-intro .intro-group:last-child tr:last-child td.current {
    border-bottom: solid 2px #128bed
}

.pay-page .pay-intro .datavip-intro {
    width: 400px
}

.pay-page .pay-intro .datavip-intro p {
    margin-bottom: 0px;
    line-height: 1.8
}

.pay-page .pay-intro .datavip-intro .group:not(:last-child) {
    margin-bottom: 10px
}

.pay-page.activity .pay-top {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/top_bg-abca18d5.jpg);
    background-color: #ffeed8
}

.pay-page.activity .pay-top .pay-title {
    height: 160px;
    position: relative
}

.pay-page.activity .pay-top .pay-title .title {
    position: relative;
    font-size: 54px;
    color: #B9491B;
    font-weight: bold;
    margin-top: 6px;
    margin-bottom: 0;
    text-shadow: 2px 3px 1px rgba(255, 255, 255, 0.7)
}

.pay-page.activity .pay-top .pay-title .sub-title {
    font-size: 30px;
    line-height: 42px;
    color: #B9491B;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 0
}

.pay-page.activity .pay-top .pay-title .rules-btn {
    position: absolute;
    line-height: 22px;
    font-size: 14px;
    color: #B9491B;
    padding: 0 5px;
    border-radius: 2px;
    border: 1px solid #B9491B;
    cursor: pointer;
    margin-left: 6px;
    font-weight: normal;
    text-shadow: none
}

.pay-page.activity .pay-top .pay-title .rules-btn:hover {
    background: #B9491B;
    color: #fff
}

.pay-page.activity .pay-top .pay-title b {
    font-weight: bold;
    color: #FF8787;
    background: -webkit-linear-gradient(0deg, #E62828, #FF5454);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 42px;
    vertical-align: bottom
}

.pay-page.activity.h5xf .pay-top {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/h5xf_top_bg-4481852b.jpg)
}

.pay-page.activity.h5xf .pay-top .goods-list .item {
    padding-top: 10px
}

.pay-page.activity.h5xf .pay-top .goods-list .item .price {
    margin-top: -6px
}

.pay-page.activity.iqiyi .pay-top {
    padding-top: 20px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/iqiyi_top_bg-ba4691b8.jpg)
}

.pay-page.activity.iqiyi .pay-top .pay-title {
    height: 176px
}

.pay-page.activity.iqiyi .pay-top .pay-title .image > img {
    width: 407px;
    display: block;
    margin: 0 auto
}

.pay-page.activity.iqiyi .pay-panel .pay-panel-wrap {
    padding-top: 12px
}

.pay-page.activity.iqiyi .pay-panel.big .pay-panel-wrap {
    padding-top: 32px
}

.pay-page.activity.iqiyi .pay-panel.big .pay-btn {
    margin-top: 30px
}

.pay-page.activity.iqiyi .pay-panel.big .after-bar {
    margin-top: 20px
}

.pay-page.activity .pay-panels {
    position: relative;
    width: 880px;
    margin: 0 auto
}

.pay-page.activity .pay-panel {
    position: absolute;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    top: 90px
}

.pay-page.activity .pay-panel.vip {
    right: 0
}

.pay-page.activity .pay-panel.svip {
    left: 0
}

.pay-page.activity .pay-panel.svip .pay-panel-wrap .good-benefit-selected .benefit-select {
    border-color: #F9D354;
    background: #F9D354
}

.pay-page.activity .pay-panel.big {
    top: 0
}

.pay-page.activity .pay-panel .pay-panel-wrap .price {
    position: relative
}

.pay-page.activity .pay-panel .pay-panel-wrap .price .add-day {
    position: absolute;
    background: -webkit-gradient(linear, left top, left bottom, from(#FD8E54), to(#F9552A));
    background: -o-linear-gradient(top, #FD8E54 0%, #F9552A 100%);
    background: linear-gradient(180deg, #FD8E54 0%, #F9552A 100%);
    background-color: #F9552A;
    border-radius: 10px 0px 10px 0px;
    color: #fff;
    padding: 2px 5px;
    right: 30px;
    top: -8px;
    font-size: 14px
}

.pay-page.activity .pay-panel .pay-panel-wrap .good-extra {
    line-height: 22px;
    font-size: 14px;
    font-weight: bold;
    color: #AA6715;
    margin-top: 5px
}

.pay-page.activity .pay-panel .pay-panel-wrap .good-extra span {
    color: #999;
    font-weight: normal;
    margin-left: 5px
}

.pay-page.activity .pay-panel .pay-panel-wrap .good-benefit {
    margin-top: 30px
}

.pay-page.activity .pay-panel .pay-panel-wrap .good-benefit .benefit-select {
    width: 14px;
    height: 14px;
    border: 1px solid #d6d6d6;
    display: inline-block;
    vertical-align: -2px;
    margin-right: 2px;
    cursor: pointer
}

.pay-page.activity .pay-panel .pay-panel-wrap .good-benefit .benefit-desc {
    color: #864D07;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    display: inline-block
}

.pay-page.activity .pay-panel .pay-panel-wrap .good-benefit .benefit-desc span {
    margin-left: 5px;
    color: #999;
    font-size: 14px;
    font-weight: normal
}

.pay-page.activity .pay-panel .pay-panel-wrap .good-benefit-selected .benefit-select {
    border-color: #F6CDA0;
    background: #F6CDA0;
    position: relative;
    border-radius: 1px
}

.pay-page.activity .pay-panel .pay-panel-wrap .good-benefit-selected .benefit-select:before {
    content: '';
    width: 8px;
    height: 5px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    position: absolute;
    -webkit-transform: rotate(-50deg);
    -ms-transform: rotate(-50deg);
    transform: rotate(-50deg);
    top: 2px;
    left: 2px
}

.pay-page.activity .activity-vip-modal .rules-list .item {
    font-size: 14px;
    line-height: 22px
}

.pay-page.activity .activity-vip-modal .modal-footer .btn {
    min-width: 82px;
    color: #fff;
    background: #128BED;
    font-size: 12px
}

@media screen and (max-width: 1370px) {
    .pay-page.activity .pay-top {
        background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/top_bg_s-d86c8f2b.jpg)
    }

    .pay-page.activity.h5xf .pay-top {
        background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/h5xf_top_s_bg-45c5d424.jpg)
    }

    .pay-page.activity.iqiyi .pay-top {
        background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/iqiyi_top_s_bg-64fcf0df.jpg)
    }
}

.ipay-qiye {
    width: 780px;
    background: #fff
}

.ipay-vip {
    width: 780px;
    background: #fff
}

.ipay-qiye {
    width: 780px;
    background: #fff
}

.keywords-condition-wrapper > .first-label[data-v-27c500e2] {
    margin-left: 20px;
    color: #666
}

.keywords-condition-wrapper > .first-input[data-v-27c500e2] {
    margin-left: 5px;
    width: 300px
}

.keywords-condition-wrapper > .second-label[data-v-27c500e2] {
    margin-left: 50px;
    color: #666
}

.keywords-condition-wrapper > .second-input[data-v-27c500e2] {
    margin-left: 5px;
    width: 300px
}

.chart-container-wrapper[data-v-7e7713bb] {
    background-color: #fff;
    border-radius: 4px
}

.chart-container-wrapper > .title-wrapper[data-v-7e7713bb] {
    position: relative
}

.chart-container-wrapper > .title-wrapper > .title[data-v-7e7713bb] {
    border-bottom: 1px solid #e8e8e8;
    padding: 19px 20px;
    font-size: 16px;
    font-weight: bold
}

.chart-container-wrapper > .title-wrapper > .operation-wrapper[data-v-7e7713bb] {
    position: absolute;
    right: 12px;
    top: 16px
}

.chart-container-wrapper > .content[data-v-7e7713bb] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/qcc-shuiyin-9982a019.svg);
    background-position: center;
    background-repeat: space
}

.chart-container-wrapper > .content > .h-split-wrapper[data-v-7e7713bb] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.chart-container-wrapper > .content > .h-split-wrapper > .split-item[data-v-7e7713bb] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.chart-container-wrapper > .content > .h-split-wrapper > .split-item[data-v-7e7713bb]:not(:first-child) {
    margin-left: 15px
}

.develop > .chart-wrapper > .split-container[data-v-3512687a] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.develop > .chart-wrapper > .split-container > .split-item[data-v-3512687a] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.develop > .chart-wrapper > .split-container > .split-item[data-v-3512687a]:not(:first-child) {
    margin-left: 15px
}

.ability > .chart-wrapper > .split-container[data-v-ee67a294] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.ability > .chart-wrapper > .split-container > .split-item[data-v-ee67a294] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.ability > .chart-wrapper > .split-container > .split-item[data-v-ee67a294]:not(:first-child) {
    margin-left: 15px
}

.law > .chart-wrapper > .split-container[data-v-014ef6a2] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.law > .chart-wrapper > .split-container > .split-item[data-v-014ef6a2] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.law > .chart-wrapper > .split-container > .split-item[data-v-014ef6a2]:not(:first-child) {
    margin-left: 15px
}

.charge > .chart-wrapper > .split-container[data-v-7e5433fc] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.charge > .chart-wrapper > .split-container > .split-item[data-v-7e5433fc] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.charge > .chart-wrapper > .split-container > .split-item[data-v-7e5433fc]:not(:first-child) {
    margin-left: 15px
}

.operation > .chart-wrapper > .split-container[data-v-eaa45aba] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.operation > .chart-wrapper > .split-container > .split-item[data-v-eaa45aba] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.operation > .chart-wrapper > .split-container > .split-item[data-v-eaa45aba]:not(:first-child) {
    margin-left: 15px
}

.macro-analysis-main[data-v-0fe34c77] {
    width: 1220px;
    margin: 15px auto 0
}

.macro-analysis-main > .loading-wrapper[data-v-0fe34c77] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999
}

.macro-analysis-main > .loading-wrapper > .icon[data-v-0fe34c77] {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: rotate(-50%, -50%);
    -ms-transform: rotate(-50%, -50%);
    transform: rotate(-50%, -50%)
}

.macro-analysis-main > .title[data-v-0fe34c77] {
    padding: 13.5px 20px;
    background-color: #fff;
    border-bottom: 1px solid #eee
}

.macro-analysis-main > .title > .left[data-v-0fe34c77] {
    float: left;
    font-size: 16px
}

.macro-analysis-main > .title > .left > .text[data-v-0fe34c77] {
    font-weight: bold
}

.macro-analysis-main > .title > .left > .remark[data-v-0fe34c77] {
    color: #999
}

.macro-analysis-main > .title > .left > .search-count[data-v-0fe34c77] {
    color: #999
}

.macro-analysis-main > .title > .left > .search-count > .count[data-v-0fe34c77] {
    color: #FD485E
}

.macro-analysis-main > .title > .right[data-v-0fe34c77] {
    float: right
}

.macro-analysis-main > .keyword-condition-wrapper[data-v-0fe34c77] {
    background-color: #fff;
    padding: 20px;
    border-bottom: 1px solid #eee
}

.macro-analysis-main > .condition-filter-wrapper[data-v-0fe34c77] {
    position: relative;
    background-color: #fff;
    padding: 20px
}

.macro-analysis-main > .condition-filter-wrapper > .filter-item[data-v-0fe34c77] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px
}

.macro-analysis-main > .condition-filter-wrapper > .filter-item > .filter-item__label[data-v-0fe34c77] {
    width: 70px;
    margin-right: 15px
}

.macro-analysis-main > .condition-filter-wrapper > .filter-item > .filter-item__data[data-v-0fe34c77] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.macro-analysis-main > .condition-filter-wrapper > .filter-item > .filter-item__data > .filter-item__data-conditions[data-v-0fe34c77] {
    margin-left: 20px;
    display: block;
    background-color: #d6d6d6;
    color: #666;
    border-radius: 4px;
    font-size: 12px;
    padding: 3px 8px;
    cursor: pointer;
    max-width: 250px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    padding-right: 20px
}

.macro-analysis-main > .condition-filter-wrapper > .filter-item > .filter-item__data > .filter-item__data-conditions > .close-icon[data-v-0fe34c77] {
    position: absolute;
    top: 6px;
    right: 5px
}

.macro-analysis-main > .condition-filter-wrapper > .mask[data-v-0fe34c77] {
    background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#fff));
    background: -o-linear-gradient(top, #666, #fff);
    background: linear-gradient(to bottom, #666, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.macro-analysis-main > .condition-filter-wrapper > .expand-condition[data-v-0fe34c77] {
    background-color: #fff;
    width: 100px;
    height: 22px;
    position: absolute;
    left: 50%;
    bottom: -22px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    background: -o-linear-gradient(160deg, transparent 15px, #fff 0) right, -o-linear-gradient(20deg, transparent 15px, #fff 0) left;
    background: linear-gradient(-70deg, transparent 15px, #fff 0) right, linear-gradient(70deg, transparent 15px, #fff 0) left;
    background-size: 50% 100%;
    background-repeat: no-repeat;
    cursor: pointer
}

.macro-analysis-main > .condition-filter-wrapper > .up[data-v-0fe34c77], .macro-analysis-main > .condition-filter-wrapper .down[data-v-0fe34c77] {
    color: #666
}

.macro-analysis-main > .search-result > .gap[data-v-0fe34c77] {
    background-color: #f6f6f6;
    height: 15px;
    margin: 0 -20px;
    padding-bottom: 40px
}

.macro-analysis-main > .search-result > .chart-wrapper > .split-container[data-v-0fe34c77] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.macro-analysis-main > .search-result > .chart-wrapper > .split-container > .split-item[data-v-0fe34c77] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.macro-analysis-main > .search-result > .chart-wrapper > .split-container > .split-item[data-v-0fe34c77]:not(:first-child) {
    margin-left: 15px
}

.macro-analysis-main > .search-result > .no-data[data-v-0fe34c77] {
    margin-top: 50px
}

.macro-analysis-main .section-header[data-v-0fe34c77] {
    padding-bottom: 20px
}

.macro-analysis-main .section-header .section-line-14[data-v-0fe34c77] {
    width: 3px;
    background-color: #128bed;
    margin-right: 5px;
    height: 16px;
    display: inline-block;
    height: 14px
}

.macro-analysis-main .section-header .section-title-14[data-v-0fe34c77] {
    display: inline-block;
    vertical-align: text-bottom;
    font-weight: bold;
    font-size: 16px;
    font-size: 14px
}

.macro-analysis-main .section-header .section-line-16[data-v-0fe34c77] {
    width: 3px;
    background-color: #128bed;
    margin-right: 5px;
    height: 16px;
    display: inline-block;
    height: 16px
}

.macro-analysis-main .section-header .section-title-16[data-v-0fe34c77] {
    display: inline-block;
    vertical-align: text-bottom;
    font-weight: bold;
    font-size: 16px;
    font-size: 16px
}

.macro-analysis-main .slide-enter-active[data-v-0fe34c77], .macro-analysis-main .slide-leave-active[data-v-0fe34c77] {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    height: auto
}

.macro-analysis-main .slide-enter[data-v-0fe34c77], .macro-analysis-main .slide-leave-to[data-v-0fe34c77] {
    opacity: 0;
    height: 0px
}

.bd-detail .list-group-nhover .text[data-v-0c84f016] {
    width: 160px;
    word-break: keep-all;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden
}

.bd-detail .list-group-nhover .text[data-v-0c84f016], .bd-detail .list-group-nhover .time[data-v-0c84f016] {
    font-size: 12px
}

.companyDetailList {
    margin-bottom: 20px
}

.info-content[data-v-67a9c875], .info-title[data-v-67a9c875] {
    padding: 25px 15px;
    border-radius: 0px;
    border: 1px solid #eee;
    min-height: 845px
}

.info-title[data-v-67a9c875] {
    padding: 20px;
    min-height: 0px
}

.info-title .title[data-v-67a9c875] {
    font-size: 22px;
    line-height: 30px;
    color: #000;
    font-weight: bold
}

.info-title .sub-title[data-v-67a9c875] {
    font-size: 16px;
    font-weight: 500;
    color: #999999;
    line-height: 24px
}

.info-title .tags[data-v-67a9c875] {
    margin-top: 11px
}

.recommends[data-v-67a9c875] {
    padding-left: 0px
}

.recommends .panel[data-v-67a9c875] {
    border-radius: 0%
}

.recommends .head[data-v-67a9c875] {
    padding: 14px 15px;
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    line-height: 23px;
    background-color: #fcfcfc;
    border-bottom: 1px solid #eee
}

.recommends .download[data-v-67a9c875] {
    padding: 10px 30px 20px 30px;
    text-align: center
}

.recommends .download img[data-v-67a9c875] {
    width: 230px;
    height: 180px;
    margin-bottom: 10px
}

.recommends .recommends-list[data-v-67a9c875] {
    padding: 15px;
    font-size: 14px;
    font-weight: 400;
    color: #128bed;
    line-height: 22px
}

.recommends .recommends-list > div[data-v-67a9c875]:not(:last-child) {
    margin-bottom: 10px
}

.panel[data-v-67a9c875] {
    margin-bottom: 15px
}


.app-detail[data-v-a3a15298] {
    margin-top: 15px
}

.app-detail .tab-item[data-v-a3a15298] {
    color: #333
}

.app-detail .npanel-body[data-v-a3a15298] {
    padding: 15px
}

.app-detail .npanel-body .logo[data-v-a3a15298] {
    height: 76px;
    width: 76px;
    vertical-align: top;
    float: left
}

.app-detail .npanel-body .logo img[data-v-a3a15298] {
    height: 100%;
    width: 100%
}

.app-detail .npanel-body .intro[data-v-a3a15298] {
    padding-left: 102px;
    vertical-align: top;
    color: #333;
    font-size: 14px
}

.app-detail .npanel-body .intro .head[data-v-a3a15298] {
    margin: 0px;
    font-size: 22px;
    font-weight: bold
}

.app-detail .npanel-body .intro .fl[data-v-a3a15298], .app-detail .npanel-body .intro .head[data-v-a3a15298] {
    margin-bottom: 10px
}

.app-detail .npanel-body .subhead[data-v-a3a15298] {
    color: #666
}

.app-detail .count[data-v-a3a15298] {
    color: #999
}

.app-detail .version-list .logo[data-v-a3a15298] {
    height: 44px;
    width: 44px
}

.app-detail .version-list .main-part[data-v-a3a15298] {
    margin-left: 59px;
    position: relative
}

.app-detail .version-list .main-part .main-intro[data-v-a3a15298] {
    margin-left: 22px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #333
}

.app-detail .version-list .main-part .main-intro .head[data-v-a3a15298] {
    font-weight: bold
}

.app-detail .version-list .main-part .main-intro .head[data-v-a3a15298], .app-detail .version-list .main-part .main-intro .detail[data-v-a3a15298] {
    margin-bottom: 5px
}

.app-detail .version-list .main-part .main-intro .intro[data-v-a3a15298] {
    padding-left: 0
}

.app-detail .version-list .main-part .dot[data-v-a3a15298] {
    height: 10px;
    width: 10px;
    border: 1px solid #999;
    background-color: #fff;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    left: 1px;
    top: 6px
}

.app-detail .version-list .main-part .dotActive[data-v-a3a15298] {
    width: 12px;
    height: 12px;
    background: #128bed;
    border: 2px solid #e9f3ff;
    left: 0px
}

.app-detail .version-list .main-part .line[data-v-a3a15298] {
    position: absolute;
    background: #d6d6d6;
    width: 1px;
    height: 100%;
    top: 20px;
    left: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.app-detail .yyjs[data-v-a3a15298], .app-detail .versionIntro[data-v-a3a15298] {
    position: relative;
    overflow: hidden;
    max-height: auto
}

.app-detail .yyjs .more[data-v-a3a15298], .app-detail .versionIntro .more[data-v-a3a15298] {
    position: absolute;
    right: 0;
    bottom: 0px;
    background-color: #fff;
    width: 45px;
    text-align: right
}

.app-detail .versionIntro[data-v-a3a15298] {
    color: #666 !important
}

.app-detail .logo[data-v-a3a15298] {
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden
}

.content-t[data-v-47e77e29] {
    font-size: 15px;
    font-weight: 500
}

.e_history[data-v-6efd9c66] {
    position: relative;
    float: left
}

.e_history .ea_item[data-v-6efd9c66] {
    width: 100%;
    float: left
}

.e_history .ea_item > div[data-v-6efd9c66] {
    width: 100%;
    float: left;
    margin-bottom: 4px
}

.e_history .ea_item .ea_num[data-v-6efd9c66] {
    border-radius: 100%;
    border: #9e9e9e 1px solid;
    width: 22px;
    height: 22px;
    line-height: 21px;
    font-size: 14px;
    color: #9e9e9e;
    float: left;
    text-align: center
}

.e_history .ea_item .ea_last[data-v-6efd9c66] {
    border-color: #128bed;
    color: #128bed
}

.e_history .ea_item .ea_date[data-v-6efd9c66] {
    margin-left: 10px;
    line-height: 22px;
    float: left
}

.e_history .ea_item .ea_line[data-v-6efd9c66] {
    height: 30px;
    width: 1px;
    background-color: #9e9e9e;
    margin-left: 11px;
    float: left
}

.e_history .ea_item .ea_content[data-v-6efd9c66] {
    height: 30px;
    line-height: 30px;
    margin-left: 30px;
    margin-top: 25px
}

.recommends[data-v-264ee554] {
    padding-left: 0px
}

.recommends .panel[data-v-264ee554] {
    border-radius: 0%
}

.recommends .head[data-v-264ee554] {
    padding: 14px 15px;
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    line-height: 23px;
    background-color: #fcfcfc;
    border-bottom: 1px solid #eee
}

.recommends .recommends-list[data-v-264ee554] {
    font-size: 14px;
    font-weight: 400;
    color: #128bed
}

.recommends .recommends-list .recommends-list-item[data-v-264ee554] {
    padding: 7px 14px;
    border-bottom: 1px solid #eee;
    color: #333;
    display: block;
    line-height: 26px
}

.recommends .recommends-list .recommends-list-item[data-v-264ee554]:last-child {
    border-bottom: none
}

.recommends .recommends-list .recommends-list-item[data-v-264ee554]:hover {
    background-color: #f1f9fe;
    color: #128bed
}

.tabs-part[data-v-264ee554] {
    padding: 0px;
    padding-top: 54px
}

.tabs-part .row[data-v-264ee554] {
    margin-left: 0;
    margin-right: 0
}

.tabs-part .tabs[data-v-264ee554] {
    padding: 0;
    width: 906.5px;
    position: absolute;
    top: 0px;
    border: 1px solid #eee;
    border-left: none
}

.tabs-part .tabs.fixed[data-v-264ee554] {
    position: fixed;
    top: 56px;
    z-index: 100
}

.tabs-part .tabs .tabs-item[data-v-264ee554] {
    text-align: center;
    cursor: pointer;
    height: 44px;
    line-height: 44px;
    border-left: 1px solid #eee;
    background: #fcfcfc;
    padding: 0px;
    text-align: center
}

.tabs-part .tabs .tabs-item[data-v-264ee554]:first-child {
    border-left: none
}

.tabs-part .tabs .tabs-item.tabs-item-active[data-v-264ee554] {
    color: #128bed;
    background-color: #fff;
    font-weight: bold
}

.tabs-part .tabs .tabs-item.tabs-item-disabled[data-v-264ee554] {
    cursor: auto;
    color: #999
}

.tabs-part .tabs .tabs-item .tabs-item-logo-disabled[data-v-264ee554] {
    opacity: 0.5
}

.sub-part[data-v-264ee554] {
    margin-bottom: 20px
}

.sub-part[data-v-264ee554]:last-child {
    margin-bottom: 0px
}

.sub-part .sub-title[data-v-264ee554] {
    font-size: 14px;
    color: #000000;
    margin-bottom: 12px
}

.brand-detail .brand-head[data-v-264ee554] {
    padding: 20px
}

.brand-detail .brand-head .pic[data-v-264ee554] {
    float: left;
    margin-right: 20px
}

.brand-detail .brand-head .rows[data-v-264ee554] {
    margin-top: 11px
}

.brand-detail .brand-head .title[data-v-264ee554] {
    font-weight: bold;
    color: #333;
    font-size: 22px
}

.brand-detail .brand-head .fc[data-v-264ee554] {
    color: #666;
    font-size: 14px;
    display: inline-block;
    margin-right: 52px
}

.brand-detail .brand-head .fc .val[data-v-264ee554] {
    color: #333
}

.brand-detail .nav-tab[data-v-264ee554] {
    font-size: 14px;
    color: #333;
    line-height: 44px;
    border-right: 1px solid #eee;
    background: #fcfcfc;
    cursor: pointer
}

.brand-detail .nav-tab[data-v-264ee554]:last-child {
    border-right: none
}

.brand-detail .nav-tab.tab-active[data-v-264ee554] {
    background: #fff;
    color: #128bed
}

.brand-detail .brand-body[data-v-264ee554] {
    margin-top: 15px
}

.brand-detail .assignSameBrand .recommends-list-item[data-v-264ee554], .brand-detail .assignOtherBrand .recommends-list-item[data-v-264ee554] {
    padding: 15px;
    color: #333
}

.brand-detail .assignSameBrand .recommends-list-item[data-v-264ee554] em, .brand-detail .assignOtherBrand .recommends-list-item[data-v-264ee554] em {
    font-style: normal
}

.brand-detail .assignSameBrand .recommends-list-item a[data-v-264ee554], .brand-detail .assignOtherBrand .recommends-list-item a[data-v-264ee554] {
    color: #333
}

.brand-detail .assignSameBrand .recommends-list-item a[data-v-264ee554]:hover, .brand-detail .assignOtherBrand .recommends-list-item a[data-v-264ee554]:hover {
    color: #128bed
}

.brand-detail .assignSameBrand .recommends-list-item .right-part[data-v-264ee554], .brand-detail .assignOtherBrand .recommends-list-item .right-part[data-v-264ee554] {
    float: left;
    width: 200px
}

.brand-detail .assignSameBrand .recommends-list-item .detail[data-v-264ee554], .brand-detail .assignOtherBrand .recommends-list-item .detail[data-v-264ee554] {
    color: #666;
    font-size: 14px
}

.brand-detail .assignSameBrand .recommends-list-item .icon[data-v-264ee554], .brand-detail .assignOtherBrand .recommends-list-item .icon[data-v-264ee554] {
    height: 54px;
    width: 54px;
    border: 1px solid #eee;
    float: left;
    margin-right: 10px
}

.brand-detail .assignSameBrand .recommends-list-item[data-v-264ee554]:hover, .brand-detail .assignOtherBrand .recommends-list-item[data-v-264ee554]:hover {
    color: #333
}

.brand-detail .assignSameBrand .myhead[data-v-264ee554], .brand-detail .assignOtherBrand .myhead[data-v-264ee554] {
    font-size: 16px
}

.brand-detail .assignSameBrand .detail[data-v-264ee554], .brand-detail .assignSameBrand .myhead[data-v-264ee554], .brand-detail .assignSameBrand .right-part[data-v-264ee554], .brand-detail .assignOtherBrand .detail[data-v-264ee554], .brand-detail .assignOtherBrand .myhead[data-v-264ee554], .brand-detail .assignOtherBrand .right-part[data-v-264ee554] {
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    white-space: nowrap
}

.brand-detail .assignOtherBrand .icon[data-v-264ee554] {
    margin-top: 12px
}

.brand-detail .patentdetailbox-content[data-v-264ee554] {
    padding: 30px 15px 15px 15px
}

.brand-detail .patentdetailbox-content .part[data-v-264ee554] {
    margin-bottom: 50px
}

.brand-detail .patentdetailbox-content .ma_center[data-v-264ee554] {
    text-align: center
}

.brand-detail .patentdetailbox-content .part-content[data-v-264ee554] {
    padding: 10px;
    border: 1px solid #e4eef6;
    color: #333;
    font-size: 14px;
    line-height: 1.6
}

.brand-detail .bt-no[data-v-264ee554] {
    border-bottom: none !important
}

.brand-detail .goodsServiceListInValid[data-v-264ee554] {
    text-decoration: line-through;
    color: #999
}

.brand-detail .version-list .main-part[data-v-264ee554] {
    margin-left: 90px;
    position: relative
}

.brand-detail .version-list .main-part .main-intro[data-v-264ee554] {
    margin-left: 22px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #333
}

.brand-detail .version-list .main-part .main-intro .intro-part[data-v-264ee554] {
    margin-bottom: 5px
}

.brand-detail .version-list .main-part .main-intro .intro-part > *[data-v-264ee554]:first-child {
    font-weight: bold
}

.brand-detail .version-list .main-part .dot[data-v-264ee554] {
    height: 10px;
    width: 10px;
    border: 1px solid #999;
    background-color: #fff;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    left: 1px;
    top: 6px
}

.brand-detail .version-list .main-part .dotActive[data-v-264ee554] {
    width: 12px;
    height: 12px;
    background: #128bed;
    border: 2px solid #e9f3ff;
    left: 0px
}

.brand-detail .version-list .main-part .line[data-v-264ee554] {
    position: absolute;
    background: #d6d6d6;
    width: 1px;
    height: 100%;
    top: 20px;
    left: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.brand-detail .version-list .left-part[data-v-264ee554] {
    float: left;
    color: #999
}

.brand-detail .insert-wrap[data-v-264ee554] {
    width: 780px;
    background: #fff;
    border: solid 1px #eee;
    margin: 80px auto
}

.e_history[data-v-bd373d2a] {
    position: relative;
    float: left
}

.e_history .ea_item[data-v-bd373d2a] {
    width: 100%;
    float: left
}

.e_history .ea_item > div[data-v-bd373d2a] {
    width: 100%;
    float: left;
    margin-bottom: 4px
}

.e_history .ea_item .ea_num[data-v-bd373d2a] {
    border-radius: 100%;
    border: #9e9e9e 1px solid;
    width: 22px;
    height: 22px;
    line-height: 21px;
    font-size: 14px;
    color: #9e9e9e;
    float: left;
    text-align: center
}

.e_history .ea_item .ea_last[data-v-bd373d2a] {
    border-color: #128bed;
    color: #128bed
}

.e_history .ea_item .ea_date[data-v-bd373d2a] {
    margin-left: 10px;
    line-height: 22px;
    float: left
}

.e_history .ea_item .ea_line[data-v-bd373d2a] {
    height: 30px;
    width: 1px;
    background-color: #9e9e9e;
    margin-left: 11px;
    float: left
}

.e_history .ea_item .ea_content[data-v-bd373d2a] {
    height: 30px;
    line-height: 30px;
    margin-left: 30px;
    margin-top: 25px
}

.patent-detail .info-content[data-v-1ce262ce], .patent-detail .info-title[data-v-1ce262ce] {
    padding: 25px 15px;
    border-radius: 0px;
    border: 1px solid #eee;
    min-height: 845px
}

.patent-detail .info-title[data-v-1ce262ce] {
    padding: 20px 15px;
    min-height: 0px;
    position: relative
}

.patent-detail .info-title .download[data-v-1ce262ce] {
    background: #128bed;
    border-radius: 2px;
    border: 1px solid #128bed;
    position: absolute;
    color: #fff;
    padding: 4px 8px;
    cursor: pointer;
    right: 15px;
    top: 20px
}

.patent-detail .info-title .download[data-v-1ce262ce]:hover {
    color: #fff;
    background-color: #146ca4;
    border-color: transparent
}

.patent-detail .info-title .download .icon[data-v-1ce262ce] {
    font-size: 16px;
    color: #fff;
    margin-right: 3px;
    position: relative;
    top: 2px
}

.patent-detail .info-title .title[data-v-1ce262ce] {
    font-size: 22px;
    line-height: 30px;
    color: #000;
    font-weight: bold;
    display: inline-block;
    padding-right: 130px
}

.patent-detail .info-title .tags[data-v-1ce262ce] {
    margin-top: 10px
}

.patent-detail .recommends[data-v-1ce262ce] {
    padding-left: 0px
}

.patent-detail .recommends .panel[data-v-1ce262ce] {
    border-radius: 0%
}

.patent-detail .recommends .head[data-v-1ce262ce] {
    padding: 14px 15px;
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    line-height: 23px;
    background-color: #fcfcfc;
    border-bottom: 1px solid #eee
}

.patent-detail .recommends .download[data-v-1ce262ce] {
    padding: 10px 30px 20px 30px;
    text-align: center
}

.patent-detail .recommends .download img[data-v-1ce262ce] {
    width: 230px;
    height: 180px;
    margin-bottom: 10px
}

.patent-detail .recommends .recommends-list[data-v-1ce262ce] {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px
}

.patent-detail .recommends .recommends-list .recommends-list-item[data-v-1ce262ce] {
    padding: 7px 14px;
    border-bottom: 1px solid #eee;
    color: #333;
    display: block
}

.patent-detail .recommends .recommends-list .recommends-list-item[data-v-1ce262ce]:last-child {
    border-bottom: none
}

.patent-detail .recommends .recommends-list .recommends-list-item[data-v-1ce262ce]:hover {
    background-color: #f1f9fe;
    color: #128bed
}

.patent-detail .npanel[data-v-1ce262ce] {
    margin-bottom: 16px
}

.patent-detail .patentdetailbox[data-v-1ce262ce] {
    padding: 0px;
    padding-top: 54px
}

.patent-detail .patentdetailbox .row[data-v-1ce262ce] {
    margin-left: 0;
    margin-right: 0
}

.patent-detail .patentdetailbox .tabs[data-v-1ce262ce] {
    padding: 0;
    width: 906.5px;
    position: absolute;
    top: 0px;
    border: 1px solid #eee;
    border-left: none
}

.patent-detail .patentdetailbox .tabs.fixed[data-v-1ce262ce] {
    position: fixed;
    top: 56px;
    z-index: 100
}

.patent-detail .patentdetailbox .tabs .tabs-item[data-v-1ce262ce] {
    text-align: center;
    cursor: pointer;
    height: 44px;
    line-height: 44px;
    border-left: 1px solid #eee;
    background: #fcfcfc
}

.patent-detail .patentdetailbox .tabs .tabs-item[data-v-1ce262ce]:first-child {
    border-left: none
}

.patent-detail .patentdetailbox .tabs .tabs-item.tabs-item-active[data-v-1ce262ce] {
    color: #128bed;
    background-color: #fff;
    font-weight: bold
}

.patent-detail .patentdetailbox .tabs .tabs-item.tabs-item-disabled[data-v-1ce262ce] {
    cursor: auto;
    color: #999
}

.patent-detail .detailContent[data-v-1ce262ce] {
    padding: 20px 15px;
    padding-bottom: 0px
}

.patent-detail .detailContent .part[data-v-1ce262ce] {
    margin-bottom: 50px
}

.patent-detail .detailContent .part-content[data-v-1ce262ce] {
    padding: 10px;
    border: 1px solid #e4eef6;
    color: #333;
    font-size: 14px;
    line-height: 1.6
}

.patent-detail .detailContent .preview-img[data-v-1ce262ce] {
    padding-right: 0px;
    padding-left: 9px;
    padding-bottom: 0px
}

.patent-detail .detailContent .ea_instructions[data-v-1ce262ce] h1 {
    font-weight: 600;
    font-size: 18px;
    text-align: center
}

.patent-detail .detailContent .ea_instructions[data-v-1ce262ce] h2 {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 4px
}

.patent-detail .detailContent .ea_instructions[data-v-1ce262ce] p {
    color: #333 !important;
    margin-top: 6px !important;
    margin-bottom: 8px !important;
    line-height: 1.8
}

.patent-detail .sub-part[data-v-1ce262ce] {
    margin-bottom: 20px
}

.patent-detail .sub-part[data-v-1ce262ce]:last-child {
    margin-bottom: 0px
}

.patent-detail .sub-part .sub-title[data-v-1ce262ce] {
    font-size: 14px;
    color: #000000;
    margin-bottom: 12px
}

.patent-detail[data-v-1ce262ce] .col-md-2 {
    width: 20%
}

.wenshu-detail #searchlist em {
    color: #e33244;
    font-style: normal
}

.wenshu-detail #searchlist .name {
    font-size: 17px;
    font-weight: 700
}

.wenshu-detail #searchlist small {
    font-size: 14px;
    color: #888
}

.wenshu-detail #searchlist .panel-footer {
    background: #fafafa
}

.wenshu-detail #searchlist .label {
    font-weight: normal;
    padding: .1em 0.6em .2em
}

.wenshu-detail #searchlist .btn-default {
    border: 1px solid #dedede;
    color: #999
}

.wenshu-detail .br-line {
    content: " ";
    width: 100%;
    height: 1px;
    background: #eee;
    -webkit-transform: scaleY(0.5);
    -ms-transform: scaleY(0.5);
    transform: scaleY(0.5);
    margin: 15px 0
}

@media (min-width: 960px) {
    .wenshu-detail .modal-dialog {
        width: 960px;
        margin: 30px auto
    }

    .wenshu-detail #feedModal .modal-dialog, .wenshu-detail #shareModal .modal-dialog {
        width: 560px;
        margin: 30px auto
    }
}

.wenshu-detail .detail-row .dt {
    display: inline-block;
    padding-left: 30px;
    color: #128bed;
    margin-left: 10px;
    position: relative;
    color: #666
}

.wenshu-detail .detail-row .dt.download > span {
    background-position: -168px 0px
}

.wenshu-detail .detail-row .dt.download.ing > span {
    background-size: 18px 18px;
    background-position: 0px 0px;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 5px;
    position: relative;
    top: 5px;
    -webkit-animation: rotating 1.2s linear infinite;
    animation: rotating 1.2s linear infinite
}

.wenshu-detail .detail-row .dt > span {
    display: block;
    position: absolute;
    background-size: 264px 48px;
    height: 24px;
    width: 24px;
    margin-left: -28px
}

.wenshu-detail .header-info {
    width: 100%;
    height: auto;
    position: relative
}

.wenshu-detail .header-info .ws-title {
    width: 90%;
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 10px
}

.wenshu-detail .header-info .ws-download {
    position: absolute;
    top: 0;
    right: 0
}

.wenshu-detail .header-active a {
    vertical-align: middle
}

.wenshu-detail .header-active a span {
    margin-top: 3px
}

.wenshu-detail .wenshu-box .title {
    font-size: 24px;
    font-weight: 600
}

.wenshu-detail #wsview em {
    color: #e33244
}

.wenshu-detail .more-hidden {
    height: 94px;
    overflow: hidden;
    position: relative
}

.wenshu-detail .show-all-btn {
    background-color: #fff;
    color: #128bed;
    display: inline-block;
    position: absolute;
    bottom: 1px;
    right: 0;
    font-size: 14px;
    line-height: 1.5
}

.wenshu-detail .format-font {
    font-size: 14px;
    color: #666
}

.wenshu-detail #wsview .qcc_lawyer_redirect {
    color: #666 !important
}

.wenshu-detail .wenshu-box {
    padding: 20px
}

.wenshu-detail .wenshu-box .title {
    color: #333;
    line-height: 1.2
}

.wenshu-detail .wenshu-box .des {
    font-size: 14px;
    color: #999
}

.wenshu-detail .wenshu-box .from {
    display: inline-block;
    margin-right: 50px
}

.wenshu-detail .wenshu-box .from:after {
    content: " ";
    width: 1px;
    height: 16px;
    background: #aaa;
    position: relative;
    display: inline-block;
    left: 25px;
    top: 3px
}

.wenshu-detail .wenshu-box a {
    color: #128bed
}

.wenshu-detail #wsview > div {
    color: #333;
    font-size: 16px !important;
    line-height: 1.5 !important
}

.wenshu-detail #wsview a {
    color: #128bed !important
}

.wenshu-detail #wsview {
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative
}

.wenshu-detail #wsview em a {
    color: #e33244 !important
}

.wenshu-detail #wsview:before {
    content: " ";
    position: absolute;
    right: 0px;
    left: 80px;
    height: 1px;
    top: -25px;
    background: #eee
}

.wenshu-detail #wsview .tline {
    position: absolute;
    font-size: 16px;
    font-weight: 600;
    top: -36px
}

.wenshu-detail #wsview .tline:before {
    content: " ";
    display: block;
    position: absolute;
    width: 6px;
    height: 24px;
    background: #128bed;
    left: -20px
}

.wenshu-detail #wsview h1 {
    font-size: 24px;
    color: #333
}

.wenshu-detail .wenshu-box .relatcom {
    margin-top: 10px
}

.wenshu-detail .wenshu-box .relatcom-head {
    padding: 4px 0px;
    color: #666
}

.wenshu-detail .wenshu-box .relatcom-item {
    padding: 2px 8px;
    color: #128bed;
    background: #EAF2FF;
    margin-right: 5px;
    display: inline-block;
    margin-bottom: 8px;
    border-radius: 2px
}

.wenshu-detail .wenshu-box .relatcom-item.disable {
    color: #999;
    background: none
}

.wenshu-detail .wenshu-box:after {
    display: table;
    content: ' ';
    clear: both
}

.wenshu-detail .qcc_law_doc span {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    word-break: break-all
}

.wenshu-detail .qcc_law_court, .wenshu-detail .qcc_law_paper_type, .wenshu-detail .qcc_law_case_no {
    color: #333333;
    font-size: 14px;
    margin-bottom: 10px
}

.wenshu-detail .qcc_law_case_no {
    margin-bottom: 25px
}

.wenshu-detail .qcc_law_judge_party_label, .wenshu-detail .qcc_law_judge_trial_label, .wenshu-detail .qcc_law_pre_plaintiff_request_label, .wenshu-detail .qcc_law_pre_court_review_label, .wenshu-detail .qcc_law_pre_court_identification_label, .wenshu-detail .qcc_law_appellant_request_label, .wenshu-detail .qcc_law_appellee_arguing_label, .wenshu-detail .qcc_law_current_review_label, .wenshu-detail .qcc_law_current_identification_label, .wenshu-detail .qcc_law_judge_result_label, .wenshu-detail .qcc_law_judge_collegiate_bench_label, .wenshu-detail .qcc_law_judge_date_label, .wenshu-detail .qcc_law_judge_recorder_label, .wenshu-detail .qcc_law_plaintiff_request_label, .wenshu-detail .qcc_law_defendant_arguing_label, .wenshu-detail .qcc_law_execute_process_label, .wenshu-detail .qcc_law_pre_defendant_arguing_label, .wenshu-detail .qcc_law_judge_appendix_label {
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
    padding-left: 10px
}

.wenshu-detail .qcc_law_judge_party_label:before, .wenshu-detail .qcc_law_judge_trial_label:before, .wenshu-detail .qcc_law_pre_plaintiff_request_label:before, .wenshu-detail .qcc_law_pre_court_review_label:before, .wenshu-detail .qcc_law_pre_court_identification_label:before, .wenshu-detail .qcc_law_appellant_request_label:before, .wenshu-detail .qcc_law_appellee_arguing_label:before, .wenshu-detail .qcc_law_current_review_label:before, .wenshu-detail .qcc_law_current_identification_label:before, .wenshu-detail .qcc_law_judge_result_label:before, .wenshu-detail .qcc_law_judge_collegiate_bench_label:before, .wenshu-detail .qcc_law_judge_date_label:before, .wenshu-detail .qcc_law_judge_recorder_label:before, .wenshu-detail .qcc_law_plaintiff_request_label:before, .wenshu-detail .qcc_law_defendant_arguing_label:before, .wenshu-detail .qcc_law_execute_process_label:before, .wenshu-detail .qcc_law_pre_defendant_arguing_label:before, .wenshu-detail .qcc_law_judge_appendix_label:before {
    content: " ";
    display: block;
    position: absolute;
    width: 4px;
    height: 15px;
    background: #128bed;
    left: 0px;
    margin-top: 4px
}

.wenshu-detail .qcc_law_judge_party, .wenshu-detail .qcc_law_judge_trial, .wenshu-detail .qcc_law_pre_plaintiff_request, .wenshu-detail .qcc_law_pre_court_review, .wenshu-detail .qcc_law_pre_court_identification, .wenshu-detail .qcc_law_appellant_request, .wenshu-detail .qcc_law_appellee_arguing, .wenshu-detail .qcc_law_current_review, .wenshu-detail .qcc_law_current_identification, .wenshu-detail .qcc_law_judge_result, .wenshu-detail .qcc_law_judge_collegiate_bench, .wenshu-detail .qcc_law_judge_date, .wenshu-detail .qcc_law_judge_recorder, .wenshu-detail .qcc_law_plaintiff_request, .wenshu-detail .qcc_law_defendant_arguing, .wenshu-detail .qcc_law_execute_process, .wenshu-detail .qcc_law_pre_defendant_arguing {
    font-size: 14px;
    color: #666;
    line-height: 22px;
    margin-bottom: 20px
}

.wenshu-detail .arcdetail {
    padding: 20px
}

.wenshu-detail .arcdetail .title {
    line-height: 1.2;
    color: #333;
    font-size: 26px;
    margin-bottom: 20px
}

.wenshu-detail .arcdetail .rline {
    color: #999
}

.wenshu-detail .arcdetail .rline .f {
    margin-right: 25px
}

.wenshu-detail .arcdetail .rline .val {
    color: #666
}

.wenshu-detail .arcdetail .content {
    position: relative;
    margin-bottom: 50px;
    margin-top: 70px
}

.wenshu-detail .arcdetail .content a {
    color: #128bed
}

.wenshu-detail .arcdetail .content:before {
    content: " ";
    position: absolute;
    right: 0px;
    left: 80px;
    height: 1px;
    top: -25px;
    background: #eee
}

.wenshu-detail .arcdetail .tline {
    position: absolute;
    font-size: 16px;
    font-weight: 600;
    top: -36px;
    background: #fff;
    padding-right: 15px
}

.wenshu-detail .arcdetail .tline:before {
    content: " ";
    display: block;
    position: absolute;
    width: 6px;
    height: 24px;
    background: #128bed;
    left: -20px
}

.wenshu-detail .arcdetail .fo-txt {
    background: transparent;
    border: none;
    padding: 0px;
    margin: 0px;
    white-space: pre-line;
    font-size: 16px;
    font-family: "Microsoft YaHei", Arial;
    line-height: 1.8
}

.wenshu-detail .ntag.text-gary {
    color: #999;
    background: #f6f6f6
}

.wenshu-detail .ntag {
    height: 22px;
    font-weight: normal;
    display: inline-block;
    line-height: 14px;
    font-size: 12px;
    padding: 4px 8px 4px 8px;
    margin: 0 10px 10px 0;
    border-radius: 2px
}

.wenshu-detail .srelatcase-new .case-title-out {
    position: relative;
    padding-top: 5px
}

.wenshu-detail .srelatcase-new .case-title-out:before {
    content: " ";
    position: absolute;
    width: 6px;
    height: 24px;
    background: #128bed;
    left: -20px
}

.wenshu-detail .srelatcase-new .case-title {
    color: #333;
    font-weight: 600;
    font-size: 16px !important;
    height: 24px;
    line-height: 24px;
    display: inline-block
}

.wenshu-detail .cases-ntag {
    margin: 0
}

.wenshu-detail .case-info .item-title {
    margin-bottom: 10px;
    font-weight: 600
}

.wenshu-detail .srelatcase-new .case-info {
    width: 875px;
    padding: 15px;
    background: #FAFAFA;
    margin: 8px 0;
    overflow: hidden;
    -webkit-transition: height .5s;
    -o-transition: height .5s;
    transition: height .5s;
    display: block;
    color: #333
}

.wenshu-detail .srelatcase-new .item-title {
    font-size: 16px;
    width: 99%;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap
}

.wenshu-detail .srelatcase-new .item-title > a {
    color: #333333
}

.wenshu-detail .srelatcase-new table td {
    padding-top: 6px;
    vertical-align: top
}

.wenshu-detail .srelatcase-new .case-info:hover {
    background: #F3F9FD
}

.wenshu-detail .srelatcase-new .case-info:hover .item-title {
    color: #128bed
}

.wenshu-detail .case-down {
    cursor: pointer
}

.wenshu-detail .case-down .case-down-icon {
    background-position: -22px 0px
}

.wenshu-detail .ws-detail-row {
    position: relative
}

.wenshu-detail .wenshu-body {
    padding-right: 0px
}

.wenshu-detail .is-fixed {
    position: fixed;
    top: 56px;
    right: 0;
    z-index: 1
}

.wenshu-detail .menu-item:hover {
    color: #128bed !important
}

.wenshu-detail .menu-section ul {
    max-height: 300px;
    overflow-y: auto
}

.wenshu-detail .text-wenshu-label {
    color: #666
}

.patent-detail .info-content[data-v-f7050524], .patent-detail .info-title[data-v-f7050524] {
    padding: 25px 15px;
    border-radius: 0px;
    border: 1px solid #eee;
    min-height: 845px
}

.patent-detail .info-title[data-v-f7050524] {
    padding: 20px 15px;
    min-height: 0px;
    position: relative
}

.patent-detail .info-title .download[data-v-f7050524] {
    background: #128bed;
    border-radius: 2px;
    border: 1px solid #128bed;
    position: absolute;
    color: #fff;
    padding: 4px 8px;
    cursor: pointer;
    right: 15px;
    top: 20px
}

.patent-detail .info-title .download[data-v-f7050524]:hover {
    color: #fff;
    background-color: #146ca4;
    border-color: transparent
}

.patent-detail .info-title .download .icon[data-v-f7050524] {
    font-size: 16px;
    color: #fff;
    margin-right: 3px;
    position: relative;
    top: 2px
}

.patent-detail .info-title .download .tags[data-v-f7050524] {
    position: absolute;
    right: -1px;
    top: -16px;
    background: #ffedd1;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 400;
    color: #e8a113;
    line-height: 16px;
    margin-top: 0px;
    padding: 2px 5px
}

.patent-detail .info-title .title[data-v-f7050524] {
    font-size: 22px;
    line-height: 30px;
    color: #000;
    font-weight: bold;
    display: inline-block;
    padding-right: 130px
}

.patent-detail .info-title .tags[data-v-f7050524] {
    margin-top: 10px
}

.patent-detail .recommends[data-v-f7050524] {
    padding-left: 0px
}

.patent-detail .recommends .panel[data-v-f7050524] {
    border-radius: 0%
}

.patent-detail .recommends .head[data-v-f7050524] {
    padding: 14px 15px;
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    line-height: 23px;
    background-color: #fcfcfc;
    border-bottom: 1px solid #eee
}

.patent-detail .recommends .download[data-v-f7050524] {
    padding: 10px 30px 20px 30px;
    text-align: center
}

.patent-detail .recommends .download img[data-v-f7050524] {
    width: 230px;
    height: 180px;
    margin-bottom: 10px
}

.patent-detail .recommends .recommends-list[data-v-f7050524] {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px
}

.patent-detail .recommends .recommends-list .recommends-list-item[data-v-f7050524] {
    padding: 7px 14px;
    border-bottom: 1px solid #eee;
    color: #333;
    display: block
}

.patent-detail .recommends .recommends-list .recommends-list-item[data-v-f7050524]:last-child {
    border-bottom: none
}

.patent-detail .recommends .recommends-list .recommends-list-item[data-v-f7050524]:hover {
    background-color: #f1f9fe;
    color: #128bed
}

.patent-detail .npanel[data-v-f7050524] {
    margin-bottom: 16px
}

.patent-detail .patentdetailbox[data-v-f7050524] {
    padding: 0px;
    padding-top: 54px
}

.patent-detail .patentdetailbox .row[data-v-f7050524] {
    margin-left: 0;
    margin-right: 0
}

.patent-detail .patentdetailbox .tabs[data-v-f7050524] {
    padding: 0;
    width: 906.5px;
    position: absolute;
    top: 0px;
    border: 1px solid #eee;
    border-left: none
}

.patent-detail .patentdetailbox .tabs.fixed[data-v-f7050524] {
    position: fixed;
    top: 56px;
    z-index: 100
}

.patent-detail .patentdetailbox .tabs .tabs-item[data-v-f7050524] {
    text-align: center;
    cursor: pointer;
    height: 44px;
    line-height: 44px;
    border-left: 1px solid #eee;
    background: #fcfcfc
}

.patent-detail .patentdetailbox .tabs .tabs-item[data-v-f7050524]:first-child {
    border-left: none
}

.patent-detail .patentdetailbox .tabs .tabs-item.tabs-item-active[data-v-f7050524] {
    color: #128bed;
    background-color: #fff;
    font-weight: bold
}

.patent-detail .patentdetailbox .tabs .tabs-item.tabs-item-disabled[data-v-f7050524] {
    cursor: auto;
    color: #999
}

.patent-detail .detailContent[data-v-f7050524] {
    padding: 20px 15px;
    padding-bottom: 0px
}

.patent-detail .detailContent .part[data-v-f7050524] {
    margin-bottom: 50px
}

.patent-detail .detailContent .part-content[data-v-f7050524] {
    padding: 10px;
    border: 1px solid #e4eef6;
    color: #333;
    font-size: 14px;
    line-height: 1.6
}

.patent-detail .detailContent .preview-img[data-v-f7050524] {
    padding-right: 0px;
    padding-left: 9px;
    padding-bottom: 0px
}

.patent-detail .detailContent .ea_instructions[data-v-f7050524] h1 {
    font-weight: 600;
    font-size: 18px;
    text-align: center
}

.patent-detail .detailContent .ea_instructions[data-v-f7050524] h2 {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 4px
}

.patent-detail .detailContent .ea_instructions[data-v-f7050524] p {
    color: #333 !important;
    margin-top: 6px !important;
    margin-bottom: 8px !important;
    line-height: 1.8
}

.patent-detail .sub-part[data-v-f7050524] {
    margin-bottom: 20px
}

.patent-detail .sub-part[data-v-f7050524]:last-child {
    margin-bottom: 0px
}

.patent-detail .sub-part .sub-title[data-v-f7050524] {
    font-size: 14px;
    color: #000000;
    margin-bottom: 12px
}

.patent-detail[data-v-f7050524] .col-md-2 {
    width: 25%
}

.mao-head[data-v-11d550f8] {
    position: absolute;
    top: 58px;
    width: 100%;
    z-index: 10;
    line-height: 1.8;
    height: 50px
}

.mao-head a[data-v-11d550f8] {
    color: #3c4144;
    text-decoration: none
}

.reply[data-v-11d550f8] {
    position: relative;
    top: -3px
}

.mao-head.whitebg[data-v-11d550f8] {
    background: rgba(255, 255, 255, 0.9)
}

.mao-head .mao-title[data-v-11d550f8] {
    float: left;
    font-size: 14px;
    color: #128bed;
    height: 50px
}

.mao-head .mao-title li[data-v-11d550f8] {
    position: relative;
    height: 100%;
    line-height: 50px
}

.mao-head .mao-title a[data-v-11d550f8] {
    color: #128bed
}

.mao-head .mao-title .text-primary[data-v-11d550f8] {
    padding-left: 25px
}

.mao-head .mao-title img[data-v-11d550f8] {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 22px;
    height: 22px
}

.mao-head .mao-title.breadcrumb[data-v-11d550f8] {
    padding: 0 15px 0 0;
    margin: 0
}

.mao-head .mao-nav[data-v-11d550f8] {
    float: left;
    font-size: 14px;
    color: #666;
    margin: 0;
    padding-left: 35px;
    height: 50px
}

.mao-nav li[data-v-11d550f8] {
    margin-left: 30px;
    display: inline-block;
    position: relative;
    height: 100%;
    line-height: 50px
}

.mao-nav li[data-v-11d550f8]:first-child {
    margin-left: 15px
}

.mao-nav li a[data-v-11d550f8] {
    display: inline-block
}

.mao-nav li .tag-img[data-v-11d550f8] {
    position: absolute;
    right: -18px;
    display: block;
    width: 20px;
    height: 8px;
    top: 10px
}

.mao-nav li .ntag[data-v-11d550f8] {
    position: absolute;
    right: -24px;
    display: block;
    top: 12px
}

.mao-nav li .svip-n[data-v-11d550f8] {
    right: -35px
}

.mao-nav a[data-v-11d550f8]:hover {
    color: #128bed
}

.mao-nav .active > a[data-v-11d550f8] {
    color: #128bed;
    height: 45px;
    border-bottom: 2px solid #128bed
}

.charts-layout[data-v-088906a4] .app-nheader-wrap {
    height: 58px
}

.charts-layout[data-v-4c048811] .app-nheader-wrap {
    height: 58px
}

.risk-category[data-v-e7636ef0] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 20px;
    position: relative
}

.risk-category[data-v-e7636ef0]:before {
    content: '';
    position: absolute;
    border-top: 1px solid #eee;
    left: 15px;
    right: 15px;
    top: 0
}

.risk-category .middle[data-v-e7636ef0] {
    width: 60px
}

.risk-category .left[data-v-e7636ef0], .risk-category .right[data-v-e7636ef0] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.risk-category .left .header[data-v-e7636ef0], .risk-category .right .header[data-v-e7636ef0] {
    position: relative;
    font-weight: bold;
    padding: 18px 0 18px 12px;
    font-size: 16px
}

.risk-category .left .header[data-v-e7636ef0]::before, .risk-category .right .header[data-v-e7636ef0]::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 15px;
    background: #128bed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 1px
}

.risk-category .left .risk-total[data-v-e7636ef0], .risk-category .right .risk-total[data-v-e7636ef0] {
    font-weight: bold;
    padding: 10px;
    background: #f6f6f6;
    color: #666
}

.risk-category .left .risk-total > span[data-v-e7636ef0], .risk-category .right .risk-total > span[data-v-e7636ef0] {
    color: #FD485E
}

.risk-category .left .risk-total > span.gray[data-v-e7636ef0], .risk-category .right .risk-total > span.gray[data-v-e7636ef0] {
    color: #999999
}

.risk-category .left .chart-wrapper[data-v-e7636ef0], .risk-category .right .chart-wrapper[data-v-e7636ef0] {
    padding: 30px 0
}

.risk-category .no-data-count .number[data-v-e7636ef0] {
    color: #999999
}

.major-risk[data-v-8f71e170] {
    padding: 15px
}

.major-risk .content[data-v-8f71e170] {
    padding: 20px;
    border: 1px solid #128BED;
    border-radius: 8px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/major-risk-bg-5d95dc0a.png) no-repeat #F2F9FE;
    background-position: 98% 22px;
    background-size: 225px 184px
}

.major-risk .content.bg-bottom[data-v-8f71e170] {
    background-position: 98% 100%
}

.major-risk .title img[data-v-8f71e170] {
    height: 28px
}

.major-risk .header[data-v-8f71e170] {
    position: relative;
    font-weight: bold;
    margin-top: 15px;
    font-size: 16px;
    padding-left: 12px
}

.major-risk .header[data-v-8f71e170]::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 15px;
    background: #128bed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 1px
}

.major-risk .items[data-v-8f71e170] {
    margin-top: 5px
}

.major-risk .items > div[data-v-8f71e170] {
    position: relative;
    padding-left: 13px;
    line-height: 24px;
    font-size: 16px;
    color: #666;
    margin-top: 2px
}

.major-risk .items > div[data-v-8f71e170]:first-child {
    margin-top: 0
}

.major-risk .items > div.gray[data-v-8f71e170] {
    color: #999
}

.major-risk .items > div[data-v-8f71e170]:before {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background: #666;
    position: absolute;
    left: 0;
    top: 10px
}

.major-risk .items > div[data-v-8f71e170] em {
    color: #FF6060
}

.title[data-v-0a1541c4] {
    padding: 20px 20px 10px;
    font-size: 20px;
    line-height: 28px;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.title .new[data-v-0a1541c4] {
    color: #FD485E;
    margin-left: 5px
}

.title .text[data-v-0a1541c4] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.title .text .anticon[data-v-0a1541c4] {
    color: #ccc;
    font-size: 16px;
    margin-left: 5px
}

.title .go-detail[data-v-0a1541c4] {
    text-align: right;
    font-size: 14px;
    color: #128BED;
    font-weight: normal;
    cursor: pointer
}

.risk-case-list[data-v-8b59840c] .ant-table-content .ant-table-body .ant-table-thead th[key='SerialNumber'], .risk-case-list[data-v-8b59840c] .ant-table-content .ant-table-body .ant-table-thead th[key='CaseReason'], .risk-case-list[data-v-8b59840c] .ant-table-content .ant-table-body .ant-table-thead th[key='AnNoList'], .risk-case-list[data-v-8b59840c] .ant-table-content .ant-table-body .ant-table-thead th[key='CourtList'] {
    min-width: 50px
}

.risk-case-list[data-v-8b59840c] .ant-table-content .ant-table-body .ant-table-thead th[key='CaseTypeArray'] {
    min-width: 75px
}

.risk-case-list[data-v-8b59840c] .ant-table-content .ant-table-body .ant-table-thead th[key='LatestTrialRound'] {
    min-width: 105px
}

.risk-property-clue[data-v-4df2fced] {
    color: #F5A623;
    cursor: pointer
}


.icon > span[data-v-127e3a4d] {
    cursor: default
}

.customTooltip .ant-tooltip-inner {
    width: 350px;
    background: #fff;
    color: #666;
    padding: 10px;
    line-height: 22px
}

.customTooltip .ant-tooltip-arrow::before {
    background: #fff
}


.break-faith .wrap[data-v-72e4d60c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.break-faith .wrap .chart-wrap[data-v-72e4d60c] {
    width: 380px
}

.break-faith .wrap .same-case-person[data-v-72e4d60c] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 20px
}

.break-faith .wrap-no-right .chart-wrap[data-v-72e4d60c] {
    width: 100%
}


.judgement-document .wrap .module-container[data-v-90312602] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.judgement-document .wrap .wrap-module[data-v-90312602] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.court-announcement .wrap .module-container[data-v-700e7359] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.court-announcement .wrap .wrap-module[data-v-700e7359] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.delivery-notice .wrap .module-container[data-v-139e318e] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.delivery-notice .wrap .wrap-module[data-v-139e318e] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.cate[data-v-6525c3a4] {
    padding: 20px 20px 10px;
    font-size: 20px;
    font-weight: bold
}

.nodata[data-v-6525c3a4] {
    padding: 18px 20px;
    color: #999;
    background: #fff;
    border-radius: 4px
}

.environment-punishment .wrap .module-container[data-v-39916038] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.environment-punishment .wrap .wrap-module[data-v-39916038] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.stock-equity .wrap-module .type-table[data-v-75ffe218] {
    margin-top: 20px
}

.stock-equity .wrap-module .type-table[data-v-75ffe218]:first-child {
    margin-top: 0
}

.risk-analysis-module-model .ant-modal-title {
    font-weight: bold
}

.risk-analysis-module-model .ant-modal-header {
    padding: 16px 24px 16px 20px
}

.risk-analysis-module-model .ant-modal-body {
    height: 540px;
    overflow-y: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 20px 0 20px
}

.risk-analysis-module-model .ant-modal-body:after {
    content: '';
    display: block;
    padding-bottom: 20px
}

.risk-analysis-module-model .model-info {
    font-size: 14px;
    line-height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.risk-analysis-module-model .model-info > div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.risk-analysis-module-model .model-content {
    padding-top: 10px
}

.risk-analysis-module-model .model-content > div {
    margin-top: 10px
}

.risk-analysis-module-model .model-content .ant-table-body .ant-table-thead th {
    font-weight: bold
}

.risk-analysis-module-model .model-content .ant-table-body .ant-table-thead th[key='SerialNumber'], .risk-analysis-module-model .model-content .ant-table-body .ant-table-thead th[key='CaseReason'], .risk-analysis-module-model .model-content .ant-table-body .ant-table-thead th[key='Status'] {
    min-width: 50px
}

.risk-analysis-module-model .model-content .ant-table-body .ant-table-thead th[key='CaseBody2'], .risk-analysis-module-model .model-content .ant-table-body .ant-table-thead th[key='ContentDetail'] {
    min-width: 75px
}

.risk-analysis-module-model .model-content .ant-table-body .ant-table-thead th[key='Amount'] {
    min-width: 115px
}

.risk-analysis-module-model .model-content .ant-table-body .ant-table-thead th[key='CaseRole'] {
    min-width: 200px
}

.risk-analysis-module-model .model-content .ant-table-body .ant-table-tbody tr:hover .spread-btn {
    background: #F3F9FD
}

.risk-analysis-module-model .model-content .ant-table-body .ant-table-tbody .content-spread {
    line-height: 22px;
    max-height: 88px;
    overflow-y: hidden;
    position: relative
}

.risk-analysis-module-model .model-content .ant-table-body .ant-table-tbody .spread-btn {
    position: absolute;
    background: #fff;
    text-align: right;
    bottom: 0;
    right: 0;
    cursor: pointer
}

.risk-analysis-module-model .model-content .ant-table-body .ant-table-tbody .spread-btn span {
    color: #128BED
}

.risk-analysis-module-model .model-detail-outer {
    margin-top: 20px
}

.risk-analysis-module-model .model-detail-outer .model-detail {
    margin-top: 10px
}

.risk-analysis-module-model .model-detail .detail-row .detail-col .col-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.risk-analysis-module-model .model-detail .detail-row .detail-col .col-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.risk-analysis-module-model .margin-top-0 {
    margin-top: 0
}

.risk-analysis-module-model .model-detail-title {
    color: #333;
    font-weight: bold;
    margin-bottom: 10px
}

.risk-analysis-module-model .model-detail {
    border: 1px solid #eee
}

.risk-analysis-module-model .model-detail .detail-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid #eee
}

.risk-analysis-module-model .model-detail .detail-row:first-child {
    border-top: none
}

.risk-analysis-module-model .model-detail .detail-row .detail-col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 22px;
    border-left: 1px solid #eee
}

.risk-analysis-module-model .model-detail .detail-row .detail-col:first-child {
    border-left: none
}

.risk-analysis-module-model .model-detail .detail-row .detail-col > div {
    padding: 15px 10px
}

.risk-analysis-module-model .model-detail .detail-row .detail-col .col-title {
    width: 148px;
    min-width: 148px;
    border-right: 1px solid #eee;
    background: #F6F6F6
}

.risk-analysis-module-model .model-detail .detail-row .detail-col .col-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.risk-analysis-module-model .click-active {
    color: #128BED;
    cursor: pointer
}

.risk-analysis .container[data-v-821f3ee0] em {
    font-style: normal
}

.risk-analysis .container ul[data-v-821f3ee0] {
    margin: 0;
    padding: 0
}

.risk-analysis .container[data-v-821f3ee0] .module {
    background: #fff;
    padding: 20px;
    margin-top: 15px
}

.risk-analysis .container[data-v-821f3ee0] .module .module-title {
    color: #333;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee
}

.risk-analysis .container .header-1[data-v-821f3ee0] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 4px
}

.risk-analysis .container .header-1 .logo[data-v-821f3ee0] {
    width: 60px
}

.risk-analysis .container .header-1 .title[data-v-821f3ee0] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 20px
}

.risk-analysis .container .header-1 .title .company[data-v-821f3ee0] {
    font-size: 24px;
    font-weight: bold;
    line-height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.risk-analysis .container .header-1 .title .company .firm-btn[data-v-821f3ee0] {
    line-height: 22px;
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 2px;
    background: #128BED;
    margin-left: 15px;
    cursor: pointer
}

.risk-analysis .container .header-1 .title .date[data-v-821f3ee0] {
    color: #999;
    font-size: 14px;
    line-height: 22px;
    margin-top: 10px
}

.risk-analysis .container .header-1 .title .date em[data-v-821f3ee0] {
    color: #666
}

.risk-analysis .container .module-tabs[data-v-821f3ee0] {
    margin-top: 15px;
    border-radius: 0px 0px 4px 4px;
    padding: 0 20px;
    background: #fff
}

.risk-analysis .container .module-tabs .navs[data-v-821f3ee0] {
    border-radius: 4px 4px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #eee
}

.risk-analysis .container .module-tabs .navs .nav-item[data-v-821f3ee0] {
    color: #999;
    font-size: 16px;
    line-height: 24px;
    padding: 18px 0;
    margin-right: 30px;
    position: relative;
    cursor: pointer
}

.risk-analysis .container .module-tabs .navs .active[data-v-821f3ee0] {
    color: #333;
    font-weight: bold
}

.risk-analysis .container .module-tabs .navs .active[data-v-821f3ee0]:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #128BED;
    left: 0;
    bottom: 0
}

.risk-analysis .container .risk-types[data-v-821f3ee0] {
    padding: 14px 0 12px 5px;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 0 0 4px 4px
}

.risk-analysis .container .risk-types .type-list[data-v-821f3ee0] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -6px;
    margin-right: -4px
}

.risk-analysis .container .risk-types .type-list > div[data-v-821f3ee0] {
    margin-right: 10px;
    color: #666;
    line-height: 24px;
    padding: 0 10px;
    cursor: pointer;
    margin-top: 6px
}

.risk-analysis .container .risk-types .type-list > div[data-v-821f3ee0]:hover {
    color: #128BED
}

.risk-analysis .container .risk-types .type-list .active[data-v-821f3ee0] {
    border-radius: 4px;
    background: #128BED;
    color: #fff !important
}

.risk-analysis .container .nav-content[data-v-821f3ee0] .risk-module {
    margin-bottom: 10px
}

.risk-analysis .container .nav-content[data-v-821f3ee0] .risk-module .wrap {
    background: #fff;
    padding: 0 20px;
    border-radius: 4px
}

.risk-analysis .container .nav-content[data-v-821f3ee0] .risk-module .wrap .total-count {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
    background: #F3F9FD;
    border-radius: 4px
}

.risk-analysis .container .nav-content[data-v-821f3ee0] .risk-module .wrap .total-count .icon {
    margin-right: 10px
}

.risk-analysis .container .nav-content[data-v-821f3ee0] .risk-module .wrap .total-count .col .item {
    margin-top: 10px
}

.risk-analysis .container .nav-content[data-v-821f3ee0] .risk-module .wrap .total-count .col .item:first-child {
    margin-top: 0
}

.risk-analysis .container .nav-content[data-v-821f3ee0] .risk-module .wrap .total-count .item {
    margin-right: 100px;
    color: #666;
    line-height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.risk-analysis .container .nav-content[data-v-821f3ee0] .risk-module .wrap .total-count .item em {
    color: #333
}

.risk-analysis .container .nav-content[data-v-821f3ee0] .risk-module .wrap .total-count .item .icon {
    margin-left: 5px
}

.risk-analysis .container .nav-content[data-v-821f3ee0] .risk-module .wrap .total-count-container {
    padding-top: 20px
}

.risk-analysis .container .nav-content[data-v-821f3ee0] .risk-module .wrap .wrap-module {
    padding-bottom: 20px
}

.risk-analysis .container .nav-content[data-v-821f3ee0] .risk-module .wrap .wrap-module .type-title {
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    padding: 18px 0 18px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative
}

.risk-analysis .container .nav-content[data-v-821f3ee0] .risk-module .wrap .wrap-module .type-title:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 15px;
    background: #128BED;
    border-radius: 1px;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.risk-analysis .container .nav-content[data-v-821f3ee0] .risk-module .wrap .wrap-module .total-count {
    margin-bottom: 10px
}

.risk-analysis .container .nav-content[data-v-821f3ee0] .risk-module .wrap .wrap-module .type-table table .click-active {
    color: #128BED;
    cursor: pointer
}

.risk-analysis .container .nav-content[data-v-821f3ee0] .risk-module .wrap .wrap-module .type-pages {
    text-align: right;
    margin-top: 20px
}

.risk-analysis .container .nav-content[data-v-821f3ee0] .risk-module .wrap .wrap-module-holder {
    height: 20px
}

.risk-analysis .container .nav-content[data-v-821f3ee0] .risk-module .no-data-wrapper {
    color: #999;
    line-height: 24px;
    padding: 18px 0
}

.risk-analysis .container .nav-content[data-v-821f3ee0] .risk-module .ant-table-pagination {
    margin: 20px 0 0 0
}

.risk-analysis .container .nav-content[data-v-821f3ee0] .risk-module .ant-table-thead th {
    font-weight: bold
}

.risk-analysis .container .nav-content .risk-overview[data-v-821f3ee0] {
    background: #fff;
    border-radius: 0 0 4px 4px
}

.risk-analysis .container .nav-content .loading[data-v-821f3ee0] {
    height: 300px;
    margin-top: 15px
}

.risk-analysis .container .major-risk[data-v-821f3ee0] {
    padding: 0 20px
}

.risk-analysis-fixed .container .module-tabs[data-v-821f3ee0] {
    width: 1220px;
    position: fixed;
    top: -15px;
    z-index: 9;
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05)
}

.risk-analysis-fixed .container .fixed-holder[data-v-821f3ee0] {
    height: 80px
}

.basic-info-container[data-v-17410cc0] {
    width: 100%;
    margin-bottom: 12px;
    padding: 20px;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    border-radius: 4px
}

.basic-info-container .img[data-v-17410cc0] {
    float: left;
    line-height: 72px;
    width: 72px;
    height: 72px;
    border: solid 1px #f0f0f0;
    border-radius: 8px;
    font-size: 0
}

.basic-info-container .img > img[data-v-17410cc0] {
    width: 72px;
    border-radius: 8px
}

.basic-info-container .header-right[data-v-17410cc0] {
    float: left;
    margin-left: 20px
}

.basic-info-container .header-right .header-top .name[data-v-17410cc0] {
    display: inline-block;
    height: 30px;
    font-size: 22px;
    font-weight: bold;
    color: #333333;
    line-height: 30px;
    margin: 0;
    vertical-align: middle;
    cursor: pointer
}

.basic-info-container .header-right .header-top .name[data-v-17410cc0]:hover {
    color: #128bed
}

.basic-info-container .header-right .header-top .entry[data-v-17410cc0] {
    display: inline-block;
    width: 64px;
    height: 26px;
    line-height: 26px;
    border-radius: 2px;
    background: #128bed;
    color: #fff;
    font-size: 13px;
    text-align: center;
    margin-left: 20px;
    cursor: pointer
}

.basic-info-container .header-right .header-bottom[data-v-17410cc0] {
    margin-top: 15px;
    font-size: 14px;
    color: #333333
}

.basic-info-container .header-right .header-bottom > p[data-v-17410cc0] {
    margin: 0;
    display: inline-block
}

.basic-info-container .header-right .header-bottom > p[data-v-17410cc0]:not(:first-child) {
    margin-left: 50px
}

.basic-info-container .header-right .header-bottom > p .intro-label[data-v-17410cc0] {
    color: #666
}

.basic-info-container .header-right .header-bottom .expand[data-v-17410cc0] {
    cursor: pointer;
    color: #128bed
}

.basic-info-container > .skeleton-logo[data-v-17410cc0] {
    float: left;
    width: 60px;
    height: 60px;
    background-color: #f2f2f2;
    border-radius: 6px
}

.basic-info-container > .skeleton-content[data-v-17410cc0] {
    float: left;
    width: 800px;
    padding-left: 20px
}

.basic-info-container > .skeleton-content > .top[data-v-17410cc0] {
    margin-bottom: 16px;
    width: 100%;
    height: 22px;
    background-color: #f2f2f2
}

.basic-info-container > .skeleton-content > .bottom[data-v-17410cc0] {
    width: 50%;
    height: 22px;
    background-color: #f2f2f2
}

.filter-item[data-v-2db089b2] {
    padding-right: 50px;
    position: relative
}

.filter-item .title[data-v-2db089b2] {
    color: #999;
    margin-right: 8px;
    display: inline-block;
    float: left
}

.filter-item .filter-container[data-v-2db089b2] {
    float: right;
    width: calc(100% - 80px);
    overflow: hidden
}

.filter-item .filter-container .filter-wrapper[data-v-2db089b2] {
    width: 100%
}

.filter-item .title-main .filter-span[data-v-2db089b2] {
    margin-left: 9px;
    margin-bottom: 10px;
    padding: 1px 8px;
    display: inline-block;
    line-height: 21px;
    cursor: pointer
}

.filter-item .title-main .filter-span.selected[data-v-2db089b2] {
    background: #128bed;
    border-radius: 2px;
    color: #ffffff
}

.filter-item .title-main .filter-span.selected .text-gray[data-v-2db089b2] {
    color: #ffffff
}

.filter-item .title-main .text-gray[data-v-2db089b2] {
    color: #999
}

.filter-item .expander[data-v-2db089b2] {
    position: absolute;
    right: 0;
    top: 0;
    padding: 1px 0;
    font-size: 14px;
    line-height: 21px;
    color: #979797;
    cursor: pointer
}

.filter-item .expander > .text[data-v-2db089b2] {
    margin-right: 3px
}

.filter-item .expander i[data-v-2db089b2] {
    font-size: 14px
}

.item[data-v-1f293a04] {
    margin-bottom: 5px
}

.assets-clue[data-v-2312259c] {
    width: 1220px;
    margin: 0 auto;
    margin-top: 10px
}

.assets-clue header[data-v-2312259c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 50px;
    padding: 0 15px;
    font-size: 16px;
    border-bottom: 1px solid #EEE;
    background: #FCFCFC
}

.assets-clue header .count[data-v-2312259c] {
    color: #fd485e
}

.assets-clue header .export[data-v-2312259c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 90px;
    height: 32px;
    border-radius: 2px;
    background: #FFFFFF;
    border: 1px solid #D6D6D6;
    color: #333;
    padding-left: 6px;
    padding-right: 6px;
    font-size: 14px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.assets-clue header .export.disabled[data-v-2312259c] {
    cursor: not-allowed;
    color: #999
}

.assets-clue header .export img[data-v-2312259c] {
    width: 18px
}

.assets-clue header .export img.ing[data-v-2312259c] {
    -webkit-animation: rotating 1.2s linear infinite;
    animation: rotating 1.2s linear infinite
}

.assets-clue .fliter[data-v-2312259c] {
    margin-top: 15px;
    background: #fff
}

.assets-clue .fliter .filter-main[data-v-2312259c] {
    padding: 20px 15px 5px
}

.assets-clue .fliter .filter-main .filter-main-item[data-v-2312259c] {
    margin-bottom: 5px
}

.assets-clue .content[data-v-2312259c] {
    margin-top: 15px;
    background: #fff
}

.assets-clue .table-content[data-v-2312259c] {
    padding: 15px;
    color: #333
}

.assets-clue .table-content[data-v-2312259c] .ant-table-tbody > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td {
    background: #f6f6f6
}

.assets-clue .table-content[data-v-2312259c] .ant-table-tbody > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td .ui-partial-container > .expander-box {
    background-color: #f6f6f6
}

.assets-clue .table-content[data-v-2312259c] .ant-table-thead th {
    background: #F2F9FC;
    padding-top: 11px;
    padding-bottom: 11px
}

.assets-clue .table-content[data-v-2312259c] .ant-table-thead th .ant-table-header-column {
    color: #333
}

.assets-clue .table-content[data-v-2312259c] .ant-table-thead tr:first-child th {
    border: unset
}

.assets-clue .table-content[data-v-2312259c] .ant-table-tbody > tr > td {
    padding-top: 11px;
    padding-bottom: 11px;
    color: #333
}

.assets-clue .table-content .role-type-tip[data-v-2312259c] {
    color: #666;
    margin-bottom: 6px
}

.assets-clue .table-content .assets-stock-job[data-v-2312259c] {
    color: #666;
    margin-top: 6px
}

.assets-clue .table-content .assets-stock-job > span[data-v-2312259c] {
    color: #333
}

.assets-clue .table-content .bottom-tag[data-v-2312259c] {
    margin-top: 6px;
    font-size: 0
}

.assets-clue .table-content .bottom-tag .text[data-v-2312259c] {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 2px;
    font-size: 12px
}

.assets-clue .table-content .bottom-tag .text[data-v-2312259c]:not(:first-child) {
    margin-left: 10px
}

.assets-clue .table-content .bottom-tag .text-primary[data-v-2312259c] {
    color: #128BED;
    background: #E7F4FF
}

.assets-clue .table-content .bottom-tag .text-success[data-v-2312259c] {
    color: #009944;
    background: #EBFFF4
}

.assets-clue .table-content .bottom-tag .text-danger[data-v-2312259c] {
    color: #FD485E;
    background: #FDEDED
}

.assets-clue .table-content .bottom-tag .text-gray[data-v-2312259c] {
    color: #666666;
    background: #EEEEEE
}

.assets-clue .table-content .inline-span[data-v-2312259c] {
    display: inline-block;
    padding-right: 30px;
    line-height: 22px
}

.assets-clue .table-content .clue-analysis[data-v-2312259c] {
    background: #F6F6F6;
    border-radius: 2px;
    padding: 6px 5px 8px;
    font-size: 14px;
    color: #333;
    margin-top: 5px
}

.assets-clue .table-content .clue-analysis-title[data-v-2312259c] {
    color: #666
}

.assets-clue .table-content .link-land span[data-v-2312259c] {
    color: #666
}

.search-table .batch-check-label[data-v-0e1d271a] {
    display: inline-block !important
}

.search-table .batch-bar[data-v-0e1d271a] {
    height: 50px;
    background: #F3F9FE;
    padding: 9px 15px
}

.search-table .batch-bar .btn[data-v-0e1d271a] {
    width: 98px;
    height: 32px;
    font-size: 12px;
    line-height: 18px
}

.search-table .ntable-wrap[data-v-0e1d271a] {
    position: relative;
    margin: 15px 15px 0;
    padding-bottom: 15px
}

.search-table .ntable-wrap .loading-mask[data-v-0e1d271a] {
    min-height: 500px;
    opacity: 0.6
}

.search-table .ntable-wrap[data-v-0e1d271a] .ant-table.ant-table-scroll-position-left .ant-table-fixed-left {
    border-right: #e8e8e8 1px solid
}

.search-table .ntable-wrap.loading[data-v-0e1d271a] {
    height: 500px;
    overflow: hidden;
    position: relative
}

.search-table .ntable-wrap.loading .loading-mask[data-v-0e1d271a] {
    display: block
}

.search-table .columns-set[data-v-0e1d271a] {
    position: absolute;
    right: 15px;
    top: 15px;
    height: 41px;
    background: #F2F9FC;
    width: 44px;
    text-align: center;
    z-index: 10;
    border: solid 1px #eee
}

.search-table .batch-table[data-v-0e1d271a] {
    margin-bottom: 0px
}

.search-table .batch-table[data-v-0e1d271a] .ant-table table {
    border-radius: 0
}

.search-table .batch-table[data-v-0e1d271a] th {
    text-align: left;
    background: #F2F9FC
}

.search-table .batch-table[data-v-0e1d271a] td {
    vertical-align: middle
}

.search-table .batch-table[data-v-0e1d271a] .ant-table-header-column {
    font-weight: normal;
    color: #333
}

.search-table .batch-table[data-v-0e1d271a] .ant-table-thead > tr > th {
    padding: 8px 8px 8px 10px
}

.search-table .batch-table[data-v-0e1d271a] .ant-table-tbody > tr > td {
    padding: 10px 6px 10px 10px
}

.search-table .batch-table[data-v-0e1d271a] .ant-table-body {
    cursor: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/openhand2-745f6772.cur) 8 8, default;
    border-right: #e8e8e8 1px solid
}

.search-table .batch-table[data-v-0e1d271a] .ant-table-tbody > tr > td > span {
    cursor: text
}

.search-table .batch-table[data-v-0e1d271a] .ant-table-thead > tr:first-child > th:first-child {
    border-top-left-radius: 0
}

.search-table .batch-table[data-v-0e1d271a] .ant-table-thead > tr:first-child > th:last-child {
    border-top-right-radius: 0
}

.search-table .batch-table[data-v-0e1d271a] .ant-table-bordered .ant-table-tbody > tr > td:last-child {
    border-right: none
}

.search-table .batch-table[data-v-0e1d271a] .ant-table-bordered .ant-table-thead > tr > th:last-child {
    border-right: none
}

.search-table .batch-table .maininfo[data-v-0e1d271a] {
    position: relative
}

.search-table .batch-table .img[data-v-0e1d271a] {
    width: 40px;
    height: 40px
}

.search-table .batch-table .ntag[data-v-0e1d271a] {
    overflow: hidden;
    max-width: 100%;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    vertical-align: bottom
}

.search-table .batch-table .ellipsis-content[data-v-0e1d271a] {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.search-table .batch-table .ellipsis-content .title[data-v-0e1d271a] {
    display: inline;
    margin-bottom: 0px
}

.search-table .batch-table .ellipsis-content .sub-title[data-v-0e1d271a] {
    font-size: 12px;
    color: #999
}

.search-table .batch-table .ellipsis-content .failed-name[data-v-0e1d271a] {
    display: inline-block;
    color: #FD485E;
    max-width: 300px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle
}

.search-table .batch-table .check-label[data-v-0e1d271a] {
    margin: 0px 8px 0px 0px;
    display: block;
    line-height: 1
}

.search-table .batch-table .check-label input[data-v-0e1d271a] {
    margin: 0px
}

.search-table .batch-table .nstatus[data-v-0e1d271a] {
    font-size: 12px;
    padding: 4px 8px 4px 8px;
    line-height: 12px;
    display: inline-block;
    position: relative
}

.search-table .batch-table .frtrt td[data-v-0e1d271a] {
    border-bottom: none
}

.search-table .batch-table .frtrt[data-v-0e1d271a]:hover {
    background: #F3F9FE
}

.search-table .batch-table .frtr td[data-v-0e1d271a] {
    border-top: none
}

.search-table .batch-table .frtr td[data-v-0e1d271a] {
    padding: 3px 10px;
    background: #F3F9FE
}

.search-table .batch-table .frtr td .fp-p[data-v-0e1d271a] {
    margin-top: 5px;
    margin-bottom: 5px
}

.search-table .batch-table .frtr td .fp-p > span[data-v-0e1d271a] {
    margin-right: 20px
}

.search-table .follow-btn.active[data-v-0e1d271a] {
    color: #999
}

.search-table .follow-btn.active[data-v-0e1d271a]:hover {
    color: #666
}

.batch-modal .watermark[data-v-8e2c8e26] {
    width: 92px;
    height: 26px;
    float: right;
    background-image: url(../../images/watermark.png?t=1);
    margin-left: 20px;
    background-size: 92px 26px;
    margin-right: 12px;
    margin-top: -2px
}

.batch-modal .form-group .redstar[data-v-8e2c8e26] {
    color: #FD485E
}

.batch-modal .form-group .col-pre[data-v-8e2c8e26] {
    margin-right: 20px
}

.batch-modal .form-group .col-after[data-v-8e2c8e26] {
    display: inline-block;
    width: 340px
}

.batch-modal .form-group .batch-feed-back[data-v-8e2c8e26] {
    width: 70%
}

.batch-modal .edit-search[data-v-8e2c8e26] {
    cursor: pointer;
    box-shadow: none !important;
    -webkit-box-shadow: none !important
}

.batch-modal .edit-search .select-kuang[data-v-8e2c8e26] em {
    color: #FD485E !important;
    font-style: normal
}

.batch-modal .choosen[data-v-8e2c8e26] {
    margin-top: -6px
}

.batch-modal .choosen .item[data-v-8e2c8e26] {
    float: left;
    color: #999;
    border-radius: 2px;
    line-height: 22px;
    padding: 0px 6px 0px 6px;
    font-size: 12px;
    max-width: 250px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    position: relative;
    margin-left: 0px;
    margin-right: 8px;
    margin-top: 3px;
    margin-bottom: 3px
}

.batch-modal .modal-body-list[data-v-8e2c8e26] {
    padding: 0 10px;
    min-height: 400px;
    max-height: calc(100vh - 500px);
    overflow-y: auto
}

.batch-modal .modal-body-list .batch-cell[data-v-8e2c8e26] {
    display: block;
    padding: 15px
}

.batch-modal .modal-body-list .batch-cell[data-v-8e2c8e26]:not(:last-child) {
    border-bottom: solid 1px #eee
}

.batch-modal .modal-body-list .batch-cell .title[data-v-8e2c8e26] {
    color: #666
}

.batch-modal .modal-body-list .batch-cell[data-v-8e2c8e26]:hover {
    background-color: #F3F9FD
}

.batch-modal .modal-body-list .batch-cell:hover .title[data-v-8e2c8e26] {
    color: #128bed
}

.batch-modal .modal-body-list .batch-cell[data-v-8e2c8e26]:last-child {
    border-bottom: solid 1px #eee
}

.batch-modal .modal-export-body[data-v-8e2c8e26] {
    padding: 15px
}

.batch-modal .modal-export-body .se-item[data-v-8e2c8e26] {
    width: 100px;
    border: 1px solid #ddd;
    display: inline-block;
    font-size: 13px;
    text-align: center;
    margin-right: 10px;
    line-height: 30px;
    border-radius: 2px;
    margin-bottom: 10px;
    color: #3c4144
}

.batch-modal .modal-export-body .active[data-v-8e2c8e26] {
    color: #128bed;
    border-color: #128bed
}

.batch-modal .modal-export-body .no-access .se-item[data-v-8e2c8e26] {
    background-color: #F6F6F6;
    color: #999;
    cursor: not-allowed
}

.batch-modal .modal-export-body .pull-right[data-v-8e2c8e26] {
    float: right
}

.batch-modal .modal-export-body .pull-left[data-v-8e2c8e26] {
    float: left
}

.batch-modal .modal-export-body .export-ts.batch[data-v-8e2c8e26] {
    position: absolute;
    z-index: 100;
    margin-left: 127px;
    margin-top: -74px;
    display: none
}

.batch-modal .modal-export-body .export-ts.batch.wz[data-v-8e2c8e26] {
    margin-left: 186px;
    margin-top: -73px
}

.batch-modal .modal-export-body .export-ts.batch.wzHad[data-v-8e2c8e26] {
    margin-left: 110px;
    margin-top: -73px
}

.batch-modal .modal-export-body .export-ts.batch .kuang[data-v-8e2c8e26] {
    width: 320px;
    background: #fff;
    padding: 10px 5px;
    border: 1px solid #eee
}

.batch-modal .modal-export-body .rquestion-panel-arrow.left[data-v-8e2c8e26] {
    border-left-width: 0;
    border-right-color: rgba(0, 0, 0, 0.1);
    left: -14px;
    top: 50%;
    margin-top: -7px;
    border-width: 7px
}

.batch-modal .modal-export-body .rquestion-panel-arrow[data-v-8e2c8e26] {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.batch-modal .modal-export-body .rquestion-panel-arrow.left[data-v-8e2c8e26]:after {
    border-left-width: 0;
    border-right-color: #fff;
    top: -6px;
    margin-left: -4px;
    border-width: 6px
}

.batch-modal .modal-export-body .rquestion-panel-arrow[data-v-8e2c8e26]:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    content: " "
}

.batch-modal .modal-export-body .export-ts.batch img[data-v-8e2c8e26] {
    width: 100px;
    margin-right: 10px
}

.batch-modal .modal-export-body .export-ts.batch p[data-v-8e2c8e26] {
    margin-bottom: 0px
}

.batch-modal .modal-export-body .export-ts.batch .renew-line[data-v-8e2c8e26] {
    position: relative;
    border-top: solid 1px #eee;
    padding-top: 10px;
    margin-top: 10px
}

.batch-modal .modal-export-body .export-batch-hover[data-v-8e2c8e26] {
    padding-right: 20px
}

.batch-modal .modal-export-body .export-batch-hover:hover .export-ts.batch[data-v-8e2c8e26] {
    display: block
}

.batch-modal .modal-export-body .export-panel[data-v-8e2c8e26] {
    visibility: hidden;
    position: absolute;
    z-index: 100;
    background: #fff;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 12px;
    padding: 10px
}

.batch-modal .modal-export-body .export-hover:hover .export-panel[data-v-8e2c8e26] {
    visibility: visible
}

.batch-modal .modal-footer .footer-desc[data-v-8e2c8e26] {
    color: #999;
    text-align: left
}

.batch-modal .modal-footer .export-disable[data-v-8e2c8e26] {
    background: #999;
    border-color: #999;
    cursor: not-allowed
}

.batch-search[data-v-a1173478] {
    background: #fff
}

.batchsearch-bg[data-v-a1173478] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bg-batch-260dc4a3.png) center;
    padding-top: 20px;
    background-size: 1920px 540px;
    background-position: center top
}

.batchsearch .col-xs-6[data-v-a1173478] {
    padding: 50px 100px 50px 100px
}

.batchsearch .title[data-v-a1173478] {
    font-size: 40px;
    color: #fff;
    margin: 20px 170px 36px
}

.batchsearch .title > img[data-v-a1173478] {
    display: inline-block
}

.batchsearch .title > .subtitle[data-v-a1173478] {
    display: inline-block;
    font-size: 20px;
    line-height: 20px;
    height: 20px;
    vertical-align: baseline;
    margin-left: 10px
}

.icon-batch-vip[data-v-a1173478] {
    display: inline-block;
    width: 22px;
    height: 22px;
    vertical-align: middle;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/batch_vip-d59250dc.png);
    background-size: 22px 22px
}

.icon-batch-svip[data-v-a1173478] {
    display: inline-block;
    width: 32px;
    height: 22px;
    vertical-align: middle;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/batch_svip-7c26a9c2.png);
    background-size: 32px 22px
}

.batchsearch .des[data-v-a1173478] {
    margin-top: 40px;
    margin-left: 20px;
    color: #fff;
    font-size: 14px;
    line-height: 25px
}

.batchsearch .import-panel[data-v-a1173478] {
    padding: 10px 15px 15px 15px;
    background: #fff;
    border-radius: 4px;
    border-top-left-radius: 0px
}

.batchsearch .import-kuang[data-v-a1173478] {
    width: 100%;
    height: 200px;
    border: dashed 1px #c2c2c2;
    text-align: center;
    background: #f5f9ff;
    border-radius: 4px;
    cursor: pointer
}

.batchsearch .import-upload-field[data-v-a1173478] {
    padding-top: 30px;
    padding-bottom: 40px
}

.batchsearch .import-upload-field .import-upload-load[data-v-a1173478] {
    padding-top: 15px
}

.batchsearch .import-upload-field > div[data-v-a1173478] {
    pointer-events: none
}

.batch-template-tip[data-v-a1173478] {
    display: inline-block;
    width: 282px;
    height: 169px
}

.batchsearch-title[data-v-a1173478] {
    font-size: 36px;
    color: #333;
    text-align: center;
    margin: 30px 0
}

.batchsearch[data-v-a1173478] {
    position: relative
}

.history-batch[data-v-a1173478] {
    position: absolute;
    top: 127px;
    right: 200px;
    color: #fff;
    font-size: 14px;
    cursor: pointer
}

.batchsearch-text[data-v-a1173478], .batchsearch-excel[data-v-a1173478] {
    width: 880px;
    margin: auto
}

.batchsearch .textpad-panel[data-v-a1173478] {
    background: #fff;
    border-radius: 4px;
    border-top-left-radius: 0px
}

.batchsearch .textpad-kuang[data-v-a1173478] {
    width: 100%;
    height: 175px;
    text-align: center;
    padding: 15px
}

.batchsearch .textpad-foot[data-v-a1173478] {
    border-top: solid 1px #E5E5E5;
    padding: 15px
}

.batchsearch .textpad-kuang textarea[data-v-a1173478] {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    resize: none;
    padding: 0
}

.batch-tab[data-v-a1173478] {
    margin: 20px 0 -1px 0
}

.batch-tab .batch-tab-excel[data-v-a1173478], .batch-tab .batch-tab-text[data-v-a1173478] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/batch_tab-b1eb5b15.png);
    background-size: 192px 72px;
    float: left;
    width: 96px;
    height: 36px
}

.batch-tab .batch-tab-excel[data-v-a1173478] {
    background-position: 0px -36px
}

.batch-tab .batch-tab-excel.active[data-v-a1173478] {
    background-position: 0px 0px
}

.batch-tab .batch-tab-text[data-v-a1173478] {
    margin-left: -5px;
    background-position: -96px 0px;
    position: relative
}

.batch-tab .batch-tab-text.active[data-v-a1173478] {
    background-position: -96px -36px
}

.batch-tab .batch-tab-report[data-v-a1173478], .batch-tab .batch-tab-ben[data-v-a1173478] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/batch_tab2-ae9c1cd1.png);
    background-size: 192px 72px;
    float: left;
    width: 96px;
    height: 36px
}

.batch-tab .batch-tab-report[data-v-a1173478] {
    background-position: 0px -36px
}

.batch-tab .batch-tab-report.active[data-v-a1173478] {
    background-position: 0px 0px
}

.batch-tab .batch-tab-ben[data-v-a1173478] {
    margin-left: -5px;
    background-position: -96px 0px;
    position: relative
}

.batch-tab .batch-tab-ben.active[data-v-a1173478] {
    background-position: -96px -36px
}

.indexbatchtext .modal-body[data-v-a1173478] {
    padding: 15px
}

.indexbatchtext textarea[data-v-a1173478] {
    border-color: #eee;
    outline: none;
    resize: none
}

.indexbatchexcel[data-v-a1173478] {
    padding: 15px;
    padding-right: 15px;
    padding-top: 15px
}

.indexbatchexcel .import-kuang[data-v-a1173478] {
    width: 100%;
    height: 220px;
    border: dashed 1px #D9D9D9;
    text-align: center;
    background: #fff;
    cursor: pointer
}

.import-kuang-desc[data-v-a1173478] {
    color: #999;
    margin: 20px 0
}

.indexbatchexcel .import-upload-field[data-v-a1173478] {
    padding-top: 40px;
    padding-bottom: 40px
}

.indexbatchexcel .import-upload-field > div[data-v-a1173478] {
    pointer-events: none
}

.batch-image-cl[data-v-a1173478] {
    text-align: center;
    width: 1050px;
    margin: auto
}

.batch-image-cl .img[data-v-a1173478] {
    width: 270px;
    margin-left: 40px;
    margin-right: 40px;
    height: 330px;
    float: left;
    position: relative;
    text-align: center
}

.batch-image-cl > .img > img[data-v-a1173478] {
    width: 100%
}

.batch-image-cl > .img p[data-v-a1173478] {
    font-size: 22px;
    color: #333;
    margin-bottom: 0px
}

.batch-image-cl > .img a[data-v-a1173478] {
    font-size: 14px
}

.batch-left[data-v-a1173478] {
    float: left;
    width: 550px
}

.batch-right[data-v-a1173478] {
    float: left;
    padding-left: 60px;
    padding-top: 50px
}

.batch-right li[data-v-a1173478] {
    color: #fff;
    font-size: 18px;
    opacity: .9
}

.batch-right .btn[data-v-a1173478] {
    width: 90px;
    border-radius: 2px;
    padding: 6px 10px;
    font-size: 12px;
    margin-top: 12px;
    margin-left: 40px;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2)
}

.batch-right .btn[data-v-a1173478]:hover {
    opacity: .9
}

.batch-right .b1[data-v-a1173478] {
    color: #fff;
    background: #616DFF
}

.batch-right .b2[data-v-a1173478] {
    color: #128bed;
    background: #fff
}

.text-white[data-v-a1173478] {
    color: #fff
}

.download-template-file[data-v-a1173478] {
    position: absolute;
    left: 600px;
    top: 375px;
    z-index: 99
}

.excel-tp-desc[data-v-a1173478] {
    font-size: 14px;
    color: #333;
    margin: 0 0 10px 0
}

.example-excel[data-v-a1173478] {
    display: inline-block;
    position: relative;
    width: 40px;
    margin-left: 40px;
    font-size: 14px;
    color: #999;
    cursor: pointer
}

.icon-image-excel[data-v-a1173478] {
    display: inline-block;
    position: absolute;
    width: 22px;
    height: 22px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon-image-excel-8936bcb2.png);
    background-size: 22px 22px
}

.icon-t-new[data-v-a1173478] {
    display: inline-block;
    position: absolute;
    width: 28px;
    height: 14px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon-new-9164eead.png);
    background-size: 28px 14px
}

.batch-desc-dot[data-v-a1173478] {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #999;
    vertical-align: 2px;
    margin-right: 5px
}

.batch-sup-desc-label[data-v-a1173478] {
    display: inline-block;
    font-size: 16px;
    vertical-align: middle;
    margin: 0 20px
}

.icon-batch-export[data-v-a1173478] {
    display: inline-block;
    width: 36px;
    height: 36px;
    vertical-align: -6px;
    margin-right: 5px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/batch-export-0410a34a.png);
    background-size: 36px 36px
}

.icon-batch-search[data-v-a1173478] {
    display: inline-block;
    width: 36px;
    height: 36px;
    vertical-align: -6px;
    margin-right: 5px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/batch-search-3b4265a9.png);
    background-size: 36px 36px
}

.icon-batch-upload[data-v-a1173478] {
    display: inline-block;
    width: 36px;
    height: 36px;
    vertical-align: -6px;
    margin-right: 5px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/batch-upload-d1907773.png);
    background-size: 36px 36px
}

.icon-batch-arrow[data-v-a1173478] {
    display: inline-block;
    width: 8px;
    height: 18px;
    vertical-align: middle;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/batch-arrow-d22c28d1.png);
    background-size: 8px 16px;
    background-repeat: no-repeat
}

.batch-tt-desc[data-v-a1173478] {
    vertical-align: 6px
}

.batch-npanel[data-v-a1173478] {
    position: relative;
    margin: 40px 0 0
}

.icon-batch-example[data-v-a1173478] {
    display: inline-block;
    position: absolute;
    top: -10px;
    left: -1px;
    width: 40px;
    height: 20px;
    vertical-align: middle;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/batch_example-a968cc2c.png);
    background-size: 40px 20px
}

.batch-export-desc[data-v-a1173478] {
    width: 100%;
    height: 100px;
    font-size: 14px;
    color: #999;
    margin-top: 20px
}

[data-v-a1173478] .search-table .ntable-wrap {
    margin: 0;
    padding-bottom: 0
}

[data-v-a1173478] .npanel-heading .tab-item {
    margin: 0 25px
}

.batch-tab-left[data-v-a1173478] {
    position: relative
}

.np-icon-0[data-v-a1173478] {
    position: absolute;
    top: 15px;
    left: 55px
}

.np-icon-1[data-v-a1173478] {
    position: absolute;
    top: 15px;
    left: 138px
}

.np-icon-2[data-v-a1173478] {
    position: absolute;
    top: 15px;
    right: -6px
}

[data-v-a1173478] .search-table .batch-table .ant-table-body {
    overflow-x: auto !important
}

.batch-body[data-v-69f9c6f6] {
    min-height: 520px;
    padding: 0;
    position: relative
}

.batch-body .batch-list-loading img[data-v-69f9c6f6] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto
}

.batch-body .batch-count-info[data-v-69f9c6f6] {
    font-size: 14px;
    margin: 18px 16px 16px 16px
}

.batch-body .batch-no-permission[data-v-69f9c6f6] {
    display: inline-block;
    width: 1220px;
    height: 800px;
    vertical-align: middle;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/batch-no-permission-96b5f2f4.png);
    background-size: 1220px 800px;
    position: relative
}

.batch-body .batch-no-permission .pay-insert-group[data-v-69f9c6f6] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 2
}

.batch-body .batch-no-permission .pay-insert-group .insert-wrap[data-v-69f9c6f6] {
    width: 780px;
    margin: 80px auto;
    background: #fff;
    border: solid 1px #eee
}

.batch-h-btn[data-v-69f9c6f6] {
    font-size: 14px;
    margin-left: 6px
}

.btn-disabled[data-v-69f9c6f6] {
    background-color: #F6F6F6;
    color: #999;
    cursor: not-allowed
}

.btn-disabled[data-v-69f9c6f6]:hover {
    color: #999
}

.red-tag[data-v-69f9c6f6] {
    color: #FD485E
}

.re-batch-init[data-v-69f9c6f6] {
    color: #999;
    cursor: pointer
}

.batch-tab-left[data-v-69f9c6f6] {
    position: relative
}

.np-icon-0[data-v-69f9c6f6] {
    position: absolute;
    top: 14px;
    left: 54px
}

.np-icon-1[data-v-69f9c6f6] {
    position: absolute;
    top: 14px;
    left: 134px
}

.np-icon-2[data-v-69f9c6f6] {
    position: absolute;
    top: 14px;
    right: -6px
}

.icon-batch-vip[data-v-69f9c6f6] {
    display: inline-block;
    width: 22px;
    height: 22px;
    vertical-align: middle;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/batch_vip-d59250dc.png);
    background-size: 22px 22px
}

.icon-batch-svip[data-v-69f9c6f6] {
    display: inline-block;
    width: 32px;
    height: 22px;
    vertical-align: middle;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/batch_svip-7c26a9c2.png);
    background-size: 32px 22px
}

[data-v-69f9c6f6] .npanel-heading .tab-item {
    margin: 0 25px
}

.batch-modal .watermark[data-v-65d908f1] {
    width: 92px;
    height: 26px;
    float: right;
    background-image: url(../../images/watermark.png?t=1);
    margin-left: 20px;
    background-size: 92px 26px;
    margin-right: 12px;
    margin-top: -2px
}

.batch-modal .form-group .col-pre[data-v-65d908f1] {
    margin-right: 20px
}

.batch-modal .form-group .col-after[data-v-65d908f1] {
    display: inline-block;
    width: 340px
}

.batch-modal .edit-search[data-v-65d908f1] {
    cursor: pointer
}

.batch-modal .edit-search .select-kuang[data-v-65d908f1] em {
    color: #FD485E !important;
    font-style: normal
}

.batch-modal .choosen[data-v-65d908f1] {
    margin-top: -6px
}

.batch-modal .choosen .item[data-v-65d908f1] {
    float: left;
    color: #999;
    border-radius: 2px;
    line-height: 22px;
    padding: 0px 6px 0px 6px;
    font-size: 12px;
    max-width: 250px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    position: relative;
    margin-left: 0px;
    margin-right: 8px;
    margin-top: 3px;
    margin-bottom: 3px
}

.batch-modal .modal-body-list[data-v-65d908f1] {
    padding: 0 10px;
    min-height: 400px;
    max-height: calc(100vh - 500px);
    overflow-y: auto
}

.batch-modal .modal-body-list .batch-cell[data-v-65d908f1] {
    display: block;
    padding: 15px
}

.batch-modal .modal-body-list .batch-cell[data-v-65d908f1]:not(:last-child) {
    border-bottom: solid 1px #eee
}

.batch-modal .modal-body-list .batch-cell .title[data-v-65d908f1] {
    color: #666
}

.batch-modal .modal-body-list .batch-cell[data-v-65d908f1]:hover {
    background-color: #F3F9FD
}

.batch-modal .modal-body-list .batch-cell:hover .title[data-v-65d908f1] {
    color: #128bed
}

.batch-modal .modal-body-list .batch-cell[data-v-65d908f1]:last-child {
    border-bottom: solid 1px #eee
}

.batch-modal .modal-export-body[data-v-65d908f1] {
    padding: 15px
}

.batch-modal .modal-export-body .se-item[data-v-65d908f1] {
    width: 100px;
    border: 1px solid #ddd;
    display: inline-block;
    font-size: 13px;
    text-align: center;
    margin-right: 10px;
    line-height: 30px;
    border-radius: 2px;
    margin-bottom: 10px;
    color: #3c4144
}

.batch-modal .modal-export-body .active[data-v-65d908f1] {
    color: #128bed;
    border-color: #128bed
}

.batch-modal .modal-export-body .no-access .se-item[data-v-65d908f1] {
    background-color: #F6F6F6;
    color: #999;
    cursor: not-allowed
}

.batch-modal .modal-export-body .pull-right[data-v-65d908f1] {
    float: right
}

.batch-modal .modal-export-body .pull-left[data-v-65d908f1] {
    float: left
}

.batch-modal .modal-export-body .export-ts.batch[data-v-65d908f1] {
    position: absolute;
    z-index: 100;
    margin-left: 127px;
    margin-top: -74px;
    display: none
}

.batch-modal .modal-export-body .export-ts.batch.wz[data-v-65d908f1] {
    margin-left: 186px;
    margin-top: -73px
}

.batch-modal .modal-export-body .export-ts.batch.wzHad[data-v-65d908f1] {
    margin-left: 110px;
    margin-top: -73px
}

.batch-modal .modal-export-body .export-ts.batch .kuang[data-v-65d908f1] {
    width: 320px;
    background: #fff;
    padding: 10px 5px;
    border: 1px solid #eee
}

.batch-modal .modal-export-body .rquestion-panel-arrow.left[data-v-65d908f1] {
    border-left-width: 0;
    border-right-color: rgba(0, 0, 0, 0.1);
    left: -14px;
    top: 50%;
    margin-top: -7px;
    border-width: 7px
}

.batch-modal .modal-export-body .rquestion-panel-arrow[data-v-65d908f1] {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.batch-modal .modal-export-body .rquestion-panel-arrow.left[data-v-65d908f1]:after {
    border-left-width: 0;
    border-right-color: #fff;
    top: -6px;
    margin-left: -4px;
    border-width: 6px
}

.batch-modal .modal-export-body .rquestion-panel-arrow[data-v-65d908f1]:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    content: " "
}

.batch-modal .modal-export-body .export-ts.batch img[data-v-65d908f1] {
    width: 100px;
    margin-right: 10px
}

.batch-modal .modal-export-body .export-ts.batch p[data-v-65d908f1] {
    margin-bottom: 0px
}

.batch-modal .modal-export-body .export-ts.batch .renew-line[data-v-65d908f1] {
    position: relative;
    border-top: solid 1px #eee;
    padding-top: 10px;
    margin-top: 10px
}

.batch-modal .modal-export-body .export-batch-hover[data-v-65d908f1] {
    padding-right: 20px
}

.batch-modal .modal-export-body .export-batch-hover:hover .export-ts.batch[data-v-65d908f1] {
    display: block
}

.batch-modal .modal-export-body .export-panel[data-v-65d908f1] {
    visibility: hidden;
    position: absolute;
    z-index: 100;
    background: #fff;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 12px;
    padding: 10px
}

.batch-modal .modal-export-body .export-hover:hover .export-panel[data-v-65d908f1] {
    visibility: visible
}

.batch-modal .modal-footer .footer-desc[data-v-65d908f1] {
    color: #999;
    text-align: left
}

.batch-modal .modal-footer .export-disable[data-v-65d908f1] {
    background: #999;
    border-color: #999;
    cursor: not-allowed
}

.batch-search[data-v-bdbd49e8] {
    background: #fff
}

.batchsearch-bg[data-v-bdbd49e8] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/bg-batch-260dc4a3.png) center;
    padding-top: 20px;
    padding-bottom: 20px;
    background-size: cover
}

.batchsearch .col-xs-6[data-v-bdbd49e8] {
    padding: 50px 100px 50px 100px
}

.batchsearch .title[data-v-bdbd49e8] {
    font-size: 40px;
    color: #fff
}

.batchsearch .title > img[data-v-bdbd49e8] {
    display: block;
    margin-top: 20px;
    margin-bottom: 10px
}

.batchsearch .subtitle[data-v-bdbd49e8] {
    font-size: 20px;
    color: #fff
}

.batchsearch .des[data-v-bdbd49e8] {
    margin-top: 40px;
    margin-left: 20px;
    color: #fff;
    font-size: 14px;
    line-height: 25px
}

.batchsearch .import-panel[data-v-bdbd49e8] {
    padding: 10px 15px 15px 15px;
    background: #fff;
    border-radius: 4px;
    border-top-left-radius: 0px
}

.batchsearch .import-kuang[data-v-bdbd49e8] {
    width: 100%;
    height: 220px;
    border: dashed 1px #c2c2c2;
    text-align: center;
    background: #f5f9ff;
    border-radius: 4px;
    cursor: pointer
}

.batchsearch .import-upload-field[data-v-bdbd49e8] {
    padding-top: 40px;
    padding-bottom: 40px
}

.batchsearch .import-upload-field > div[data-v-bdbd49e8] {
    pointer-events: none
}

.batchsearch-title[data-v-bdbd49e8] {
    font-size: 36px;
    color: #333;
    text-align: center;
    margin: 30px 0
}

.batchsearch[data-v-bdbd49e8] {
    position: relative
}

.history-batch[data-v-bdbd49e8] {
    position: absolute;
    top: 128px;
    right: 200px;
    color: #fff;
    font-size: 14px;
    cursor: pointer
}

.batchsearch-text[data-v-bdbd49e8], .batchsearch-excel[data-v-bdbd49e8] {
    width: 880px;
    margin: auto
}

.batchsearch .textpad-panel[data-v-bdbd49e8] {
    background: #fff;
    border-radius: 4px;
    border-top-left-radius: 0px
}

.batchsearch .textpad-kuang[data-v-bdbd49e8] {
    width: 100%;
    height: 175px;
    text-align: center;
    padding: 15px
}

.batchsearch .textpad-foot[data-v-bdbd49e8] {
    border-top: solid 1px #e5e5e5;
    padding: 15px
}

.batchsearch .textpad-kuang textarea[data-v-bdbd49e8] {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    resize: none
}

.batch-tab[data-v-bdbd49e8] {
    margin: 20px 0 -1px 0
}

.batch-tab .batch-tab-excel[data-v-bdbd49e8], .batch-tab .batch-tab-text[data-v-bdbd49e8] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/batch_tab-b1eb5b15.png);
    background-size: 192px 72px;
    float: left;
    width: 96px;
    height: 36px
}

.batch-tab .batch-tab-excel[data-v-bdbd49e8] {
    background-position: 0px -36px
}

.batch-tab .batch-tab-excel.active[data-v-bdbd49e8] {
    background-position: 0px 0px
}

.batch-tab .batch-tab-text[data-v-bdbd49e8] {
    margin-left: -5px;
    background-position: -96px 0px;
    position: relative
}

.batch-tab .batch-tab-text.active[data-v-bdbd49e8] {
    background-position: -96px -36px
}

.batch-tab .batch-tab-report[data-v-bdbd49e8], .batch-tab .batch-tab-ben[data-v-bdbd49e8] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/batch_tab2-ae9c1cd1.png);
    background-size: 192px 72px;
    float: left;
    width: 96px;
    height: 36px
}

.batch-tab .batch-tab-report[data-v-bdbd49e8] {
    background-position: 0px -36px
}

.batch-tab .batch-tab-report.active[data-v-bdbd49e8] {
    background-position: 0px 0px
}

.batch-tab .batch-tab-ben[data-v-bdbd49e8] {
    margin-left: -5px;
    background-position: -96px 0px;
    position: relative
}

.batch-tab .batch-tab-ben.active[data-v-bdbd49e8] {
    background-position: -96px -36px
}

.batch-tab .batch-tab-text .icon-new[data-v-bdbd49e8] {
    right: 0px;
    top: -5px
}

.indexbatchtext .modal-body[data-v-bdbd49e8] {
    padding: 15px
}

.indexbatchtext textarea[data-v-bdbd49e8] {
    border-color: #eee;
    outline: none;
    resize: none
}

.indexbatchexcel[data-v-bdbd49e8] {
    padding: 15px;
    padding-right: 15px;
    padding-top: 15px
}

.indexbatchexcel .import-kuang[data-v-bdbd49e8] {
    width: 100%;
    height: 220px;
    border: dashed 1px #d9d9d9;
    text-align: center;
    background: #fff;
    cursor: pointer
}

.indexbatchexcel .import-upload-field[data-v-bdbd49e8] {
    padding-top: 40px;
    padding-bottom: 40px
}

.indexbatchexcel .import-upload-field > div[data-v-bdbd49e8] {
    pointer-events: none
}

.batch-image-cl[data-v-bdbd49e8] {
    text-align: center;
    width: 1050px;
    margin: auto
}

.batch-image-cl .img[data-v-bdbd49e8] {
    width: 270px;
    margin-left: 40px;
    margin-right: 40px;
    height: 330px;
    float: left;
    position: relative;
    text-align: center
}

.batch-image-cl > .img > img[data-v-bdbd49e8] {
    width: 100%
}

.batch-image-cl > .img p[data-v-bdbd49e8] {
    font-size: 22px;
    color: #333;
    margin-bottom: 0px
}

.batch-image-cl > .img a[data-v-bdbd49e8] {
    font-size: 14px
}

.batch-left[data-v-bdbd49e8] {
    float: left;
    width: 550px
}

.batch-right[data-v-bdbd49e8] {
    float: left;
    padding-left: 60px;
    padding-top: 50px
}

.batch-right li[data-v-bdbd49e8] {
    color: #fff;
    font-size: 18px;
    opacity: 0.9
}

.batch-right .btn[data-v-bdbd49e8] {
    width: 90px;
    border-radius: 2px;
    padding: 6px 10px;
    font-size: 12px;
    margin-top: 12px;
    margin-left: 40px;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2)
}

.batch-right .btn[data-v-bdbd49e8]:hover {
    opacity: 0.9
}

.batch-right .b1[data-v-bdbd49e8] {
    color: #fff;
    background: #616dff
}

.batch-right .b2[data-v-bdbd49e8] {
    color: #128bed;
    background: #fff
}

.text-white[data-v-bdbd49e8] {
    color: #fff
}

.download-template-file[data-v-bdbd49e8] {
    position: absolute;
    left: 600px;
    top: 375px;
    z-index: 99
}

.excel-tp-desc[data-v-bdbd49e8] {
    font-size: 14px;
    color: #333;
    margin: 0 0 10px 0
}

.example-excel[data-v-bdbd49e8] {
    display: inline-block;
    position: relative;
    width: 40px;
    margin-left: 40px;
    font-size: 14px;
    color: #999;
    cursor: pointer
}

.icon-image-excel[data-v-bdbd49e8] {
    display: inline-block;
    position: absolute;
    width: 22px;
    height: 22px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon-image-excel-8936bcb2.png);
    background-size: 22px 22px
}

.icon-t-new[data-v-bdbd49e8] {
    display: inline-block;
    position: absolute;
    width: 28px;
    height: 14px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon-new-9164eead.png);
    background-size: 28px 14px
}

#batchTextArea[data-v-bdbd49e8] {
    padding: 0px
}

.batch-desc-dot[data-v-bdbd49e8] {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ccdaf2;
    vertical-align: 2px;
    margin-right: 5px
}

.search-table .batch-check-label[data-v-4952281a] {
    display: inline-block !important
}

.search-table .batch-bar[data-v-4952281a] {
    height: 50px;
    background: #f3f9fe;
    padding: 9px 15px;
    border-top: solid 1px #eeeeee
}

.search-table .batch-bar .btn[data-v-4952281a] {
    width: 98px;
    height: 32px;
    font-size: 12px;
    line-height: 18px
}

.search-table .ntable-wrap[data-v-4952281a] {
    position: relative;
    padding: 15px
}

.search-table .ntable-wrap .loading-mask[data-v-4952281a] {
    min-height: 500px;
    opacity: 0.6
}

.search-table .ntable-wrap.loading[data-v-4952281a] {
    height: 500px;
    overflow: hidden;
    position: relative
}

.search-table .ntable-wrap.loading .loading-mask[data-v-4952281a] {
    display: block
}

.search-table .columns-set[data-v-4952281a] {
    position: absolute;
    right: 15px;
    top: 15px;
    height: 41px;
    background: #f2f9fc;
    width: 44px;
    text-align: center;
    z-index: 10;
    border: solid 1px #eee
}

.search-table .batch-table[data-v-4952281a] {
    margin-bottom: 0px;
    background: #ffffff
}

.search-table .batch-table[data-v-4952281a] th {
    text-align: left;
    background: #f2f9fc
}

.search-table .batch-table[data-v-4952281a] td {
    vertical-align: middle
}

.search-table .batch-table[data-v-4952281a] .ant-table-header-column {
    font-weight: normal;
    color: #333
}

.search-table .batch-table[data-v-4952281a] .ant-table-thead > tr {
    height: 44px !important
}

.search-table .batch-table[data-v-4952281a] .ant-table-thead > tr > th {
    padding: 8px 8px 8px 10px
}

.search-table .batch-table[data-v-4952281a] .ant-table-tbody > tr > td {
    padding: 10px 6px 10px 10px
}

.search-table .batch-table[data-v-4952281a] .ant-table-body {
    min-height: 500px;
    cursor: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/openhand2-745f6772.cur) 8 8, default;
    border-left: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8
}

.search-table .batch-table[data-v-4952281a] .ant-table-body span {
    cursor: auto
}

.search-table .batch-table[data-v-4952281a] th.ant-table-column-has-sorters:hover {
    background: #f2f9fc50 !important
}

.search-table .batch-table[data-v-4952281a] .ant-table table {
    border-radius: 0
}

.search-table .batch-table[data-v-4952281a] .ant-table-bordered .ant-table-thead > tr > th, .search-table .batch-table .ant-table-bordered .ant-table-tbody > tr > td[data-v-4952281a] {
    border-radius: 0
}

.search-table .batch-table[data-v-4952281a] tr td:last-child, .search-table .batch-table[data-v-4952281a] tr th:last-child {
    border-right: none
}

.search-table .batch-table .maininfo[data-v-4952281a] {
    position: relative
}

.search-table .batch-table .img[data-v-4952281a] {
    width: 40px;
    height: 40px
}

.search-table .batch-table .ntag[data-v-4952281a] {
    overflow: hidden;
    max-width: 100%;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    vertical-align: bottom
}

.search-table .batch-table .ellipsis-content[data-v-4952281a] {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.search-table .batch-table .ellipsis-content .title[data-v-4952281a] {
    display: inline;
    margin-bottom: 0px
}

.search-table .batch-table .ellipsis-content .sub-title[data-v-4952281a] {
    font-size: 12px;
    color: #999
}

.search-table .batch-table .ellipsis-content .failed-name[data-v-4952281a] {
    display: inline-block;
    color: #fd485e;
    max-width: 300px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle
}

.search-table .batch-table .check-label[data-v-4952281a] {
    margin: 0px 8px 0px 0px;
    display: block;
    line-height: 1
}

.search-table .batch-table .check-label input[data-v-4952281a] {
    margin: 0px
}

.search-table .batch-table .nstatus[data-v-4952281a] {
    font-size: 12px;
    padding: 4px 8px 4px 8px;
    line-height: 12px;
    display: inline-block;
    position: relative
}

.search-table .batch-table .frtrt td[data-v-4952281a] {
    border-bottom: none
}

.search-table .batch-table .frtrt[data-v-4952281a]:hover {
    background: #f3f9fe
}

.search-table .batch-table .frtr td[data-v-4952281a] {
    border-top: none
}

.search-table .batch-table .frtr td[data-v-4952281a] {
    padding: 3px 10px;
    background: #f3f9fe
}

.search-table .batch-table .frtr td .fp-p[data-v-4952281a] {
    margin-top: 5px;
    margin-bottom: 5px
}

.search-table .batch-table .frtr td .fp-p > span[data-v-4952281a] {
    margin-right: 20px
}

.search-table .follow-btn.active[data-v-4952281a] {
    color: #999
}

.search-table .follow-btn.active[data-v-4952281a]:hover {
    color: #666
}

.batch-body[data-v-52f980ed] {
    min-height: 520px;
    padding: 0;
    position: relative
}

.batch-body .batch-list-loading img[data-v-52f980ed] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto
}

.red-tag[data-v-52f980ed] {
    color: #fd485e
}

.re-batch-init[data-v-52f980ed] {
    color: #999;
    cursor: pointer
}

.h-float[data-v-52f980ed] {
    float: left
}

.pk-content td[data-v-60b8688e]:not(:first-child) {
    text-align: center
}

.pk-content .pk-content-item[data-v-60b8688e] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: #333;
    width: 210px;
    padding: 10px 5px;
    padding-left: 27px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.pk-content .pk-content-item[data-v-60b8688e] > :first-child {
    width: 150px;
    word-break: break-all;
    display: inline-block
}

.pk-content .haveto .havetoImg[data-v-60b8688e] {
    display: inline-block;
    content: "";
    height: 22px;
    width: 22px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/arrow-f59fe5bd.png);
    background-size: 100% 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.pk-content .haveto[data-v-60b8688e]:hover {
    color: #128bed
}

.pk-content .haveto:hover .havetoImg[data-v-60b8688e] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/arrow-hover-4e721935.png)
}

td[data-v-60b8688e] {
    border-collapse: collapse;
    border: 1px solid #e4eef6;
    width: 210px;
    overflow: hidden
}

td[data-v-60b8688e]:first-child {
    width: 175px
}

.my-td-title[data-v-60b8688e] {
    width: 170px;
    padding: 10px;
    text-align: left
}

.odd[data-v-60b8688e] {
    background-color: #f2f9fc
}

.pk-content[data-v-60b8688e]:hover {
    background-color: #f6f9fe
}

.risk .haveto[data-v-60b8688e] {
    color: #fd485e
}

.risk .haveto[data-v-60b8688e]:hover {
    color: #fd485e
}

.risk .haveto:hover .havetoImg[data-v-60b8688e] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/arrow-f59fe5bd.png)
}

.pk-body[data-v-f2d98bf8] {
    padding: 15px 0 100px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    width: 100%
}

.pk-body .pk-contain[data-v-f2d98bf8] {
    display: inline-block;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff
}

.pk-body .pk-contain .pk-head-item-space[data-v-f2d98bf8] {
    width: 170px;
    height: 100%
}

.pk-body .pk-contain .pk-head[data-v-f2d98bf8] {
    padding: 10px 15px 10px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fcfcfc;
    border: 1px solid #eee;
    border-bottom: none;
    width: 1221px
}

.pk-body .pk-contain .pk-head > div[data-v-f2d98bf8]:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.pk-body .pk-contain .pk-head .btn[data-v-f2d98bf8] {
    font-size: 12px
}

.pk-body .pk-contain .pk-table[data-v-f2d98bf8] {
    width: 1220px;
    table-layout: fixed
}

.pk-body .pk-contain .pk-table thead[data-v-f2d98bf8], .pk-body .pk-contain .pk-table tr[data-v-f2d98bf8] {
    width: 1220px
}

.pk-body .pk-contain .pk-table td[data-v-f2d98bf8] {
    border: 1px solid #e4eef6;
    border-collapse: collapse
}

.pk-body .pk-contain .pk-table .pk-table-head[data-v-f2d98bf8] {
    background-color: #fff;
    width: 1220px
}

.pk-body .pk-contain .pk-table .pk-table-head > td[data-v-f2d98bf8] {
    height: 129px;
    width: 210px;
    overflow: hidden
}

.pk-body .pk-contain .pk-table .pk-table-head > td[data-v-f2d98bf8]:first-child {
    background-color: #f2f9fc;
    width: 170px
}

.pk-body .pk-contain .pk-table .pk-table-head .pk-head-item[data-v-f2d98bf8] {
    position: relative;
    text-align: center;
    width: 210px;
    height: 129px;
    padding: 15px 14px
}

.pk-body .pk-contain .pk-table .pk-table-head .pk-head-item img[data-v-f2d98bf8] {
    height: 40px;
    width: 40px;
    border-radius: 4px;
    border: 1px solid #eee
}

.pk-body .pk-contain .pk-table .pk-table-head .pk-head-item .company-zw[data-v-f2d98bf8] {
    border-radius: 0;
    border: none
}

.pk-body .pk-contain .pk-table .pk-table-head .pk-head-item .pk-head-text[data-v-f2d98bf8] {
    margin-top: 15px;
    color: #333;
    word-break: break-all;
    width: 180px
}

.pk-body .pk-contain .pk-table .pk-table-head .pk-head-item .pk-head-close[data-v-f2d98bf8] {
    position: absolute;
    height: 22px;
    width: 22px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/close-86e2df81.png);
    background-size: 100% 100%;
    right: 5px;
    top: 5px;
    cursor: pointer
}

.pk-body .pk-contain .pk-table .pk-table-head .pk-head-item .pk-head-close[data-v-f2d98bf8]:hover {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/close-hover-f3225fb9.png)
}

.pk-body .pk-contain .pk-table .pk-table-head .pk-head-item .add-company-btn[data-v-f2d98bf8] {
    width: 82px;
    height: 32px;
    background: #ffffff;
    border-radius: 2px;
    border: 1px solid #128bed;
    line-height: 32px;
    color: #128bed;
    font-size: 12px;
    margin: 0 auto;
    margin-top: 15px;
    cursor: pointer
}

.pk-body .pk-contain .pk-table .pk-table-head .pk-head-item .add-company-btn[data-v-f2d98bf8]:hover {
    background-color: #428bca;
    color: #fff;
    border: 1px solid #428bca
}

.pk-body .pk-contain .pk-table .fixed[data-v-f2d98bf8] {
    position: fixed;
    top: 0;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1)
}

.pk-body .pk-contain .pk-table .fixed td[data-v-f2d98bf8] {
    border: none
}

.pk-body .pk-contain .pk-table .fixed td > div[data-v-f2d98bf8] {
    border-right: 1px solid #e4eef6;
    height: 130px
}

.pk-body .pk-contain .pk-table .pk-subhead td[data-v-f2d98bf8] {
    color: #128bed;
    height: 42px;
    padding: 10px;
    text-align: left
}

.pk-body .pk-contain .pk-table .pk-subhead .no-cw[data-v-f2d98bf8] {
    color: #999
}

.pk-body .pk-contain .pk-table .pk-content td[data-v-f2d98bf8] {
    padding: 10px;
    text-align: left
}

.pk-body .pk-contain .pk-table .pk-content td[data-v-f2d98bf8]:not(:first-child) {
    text-align: center;
    padding: 10px 5px;
    padding-left: 27px
}

.pk-body .pk-contain .pk-table .pk-content .pk-content-item[data-v-f2d98bf8] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.pk-body .pk-contain .pk-table .pk-content .pk-content-item[data-v-f2d98bf8] > :first-child {
    width: calc(100% - 22px)
}

.pk-body .pk-contain .pk-table .pk-content .haveto[data-v-f2d98bf8]::after {
    content: "";
    height: 22px;
    width: 22px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/arrow-f59fe5bd.png);
    background-size: 100% 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    cursor: pointer
}

.pk-body .pk-contain .pk-table .pk-content .pk-content-item[data-v-f2d98bf8]:hover {
    color: #128bed
}

.pk-body .pk-contain .pk-table .pk-content .haveto[data-v-f2d98bf8]:hover::after {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/arrow-hover-4e721935.png)
}

.pk-body .pk-contain .pk-table .odd[data-v-f2d98bf8] {
    background-color: #f2f9fc
}

.pk-body .pk-contain .pk-table .pk-content[data-v-f2d98bf8]:hover {
    background-color: #f6f9fe
}

.history-body[data-v-f2d98bf8] {
    max-height: 638px;
    overflow-y: auto
}

.history-body .history-part[data-v-f2d98bf8] {
    padding: 20px 15px;
    border: 1px solid #e4eef6;
    border-bottom: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.history-body .history-part .history-list > div[data-v-f2d98bf8] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.history-body .history-part .history-list > div img[data-v-f2d98bf8] {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    margin-right: 10px;
    border: 1px solid #eee
}

.history-body .history-part .history-list > div[data-v-f2d98bf8]:not(:last-child) {
    margin-bottom: 10px
}

.history-body .history-part .history-delte[data-v-f2d98bf8] {
    height: 22px;
    width: 22px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/delete-6d813d71.png);
    background-size: 100% 100%;
    cursor: pointer
}

.history-body .history-part[data-v-f2d98bf8]:last-child {
    border-bottom: 1px solid #e4eef6
}

.history-body .history-part[data-v-f2d98bf8]:hover {
    background: #e4eef6
}

.history-body .history-part:hover .history-delte[data-v-f2d98bf8] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/delete-hover-6420c138.png)
}

.head15[data-v-f2d98bf8] {
    font-size: 15px !important
}

.search-table .batch-check-label[data-v-6b970cb2] {
    display: inline-block !important
}

.search-table .batch-bar[data-v-6b970cb2] {
    height: 50px;
    background: #f3f9fe;
    padding: 9px 15px
}

.search-table .batch-bar .btn[data-v-6b970cb2] {
    width: 98px;
    height: 32px;
    font-size: 12px;
    line-height: 18px
}

.search-table .ntable-wrap[data-v-6b970cb2] {
    position: relative;
    padding: 15px;
    padding-bottom: 0
}

.search-table .ntable-wrap .loading-mask[data-v-6b970cb2] {
    min-height: 250px;
    opacity: 0.6
}

.search-table .ntable-wrap.loading[data-v-6b970cb2] {
    height: 500px;
    overflow: hidden;
    position: relative
}

.search-table .ntable-wrap.loading .loading-mask[data-v-6b970cb2] {
    display: block
}

.search-table .columns-set[data-v-6b970cb2] {
    position: absolute;
    right: 15px;
    top: 15px;
    height: 41px;
    background: #f2f9fc;
    width: 44px;
    text-align: center;
    z-index: 10;
    border: solid 1px #eee;
    border-bottom: none
}

.search-table[data-v-6b970cb2] th.ant-table-column-has-sorters:hover {
    background: #f2f9fc50 !important
}

.search-table[data-v-6b970cb2] th {
    height: 41px !important
}

.search-table .batch-table[data-v-6b970cb2] {
    margin-bottom: 0px
}

.search-table .batch-table[data-v-6b970cb2] .ant-table-fixed-right {
    overflow: inherit !important
}

.search-table .batch-table[data-v-6b970cb2] .ant-table-header-column {
    color: #333
}

.search-table .batch-table[data-v-6b970cb2] a {
    color: #333
}

.search-table .batch-table[data-v-6b970cb2] a:hover {
    color: #128bed
}

.search-table .batch-table .smdx[data-v-6b970cb2] a {
    color: #128bed
}

.search-table .batch-table[data-v-6b970cb2] th {
    text-align: left;
    background: #f2f9fc
}

.search-table .batch-table[data-v-6b970cb2] td {
    vertical-align: middle
}

.search-table .batch-table[data-v-6b970cb2] .ant-table table {
    border-radius: 0
}

.search-table .batch-table[data-v-6b970cb2] .ant-table-thead > tr > th {
    padding: 8px 0 8px 10px
}

.search-table .batch-table[data-v-6b970cb2] .ant-table-tbody > tr > td {
    padding: 10px 6px 10px 10px
}

.search-table .batch-table[data-v-6b970cb2] .ant-table-bordered .ant-table-thead > tr > th, .search-table .batch-table .ant-table-bordered .ant-table-tbody > tr > td[data-v-6b970cb2] {
    border-radius: 0
}

.search-table .batch-table[data-v-6b970cb2] .ant-table-body {
    min-height: 450px;
    cursor: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/openhand2-745f6772.cur) 8 8, default
}

.search-table .batch-table .maininfo[data-v-6b970cb2] {
    position: relative
}

.search-table .batch-table .img[data-v-6b970cb2] {
    width: 40px;
    height: 40px
}

.search-table .batch-table .ntag[data-v-6b970cb2] {
    overflow: hidden;
    max-width: 100%;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    vertical-align: bottom
}

.search-table .batch-table .ellipsis-content[data-v-6b970cb2] {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.search-table .batch-table .ellipsis-content .title[data-v-6b970cb2] {
    display: inline;
    margin-bottom: 0px
}

.search-table .batch-table .ellipsis-content .sub-title[data-v-6b970cb2] {
    font-size: 12px;
    color: #999
}

.search-table .batch-table .ellipsis-content .failed-name[data-v-6b970cb2] {
    display: inline-block;
    color: #fd485e;
    max-width: 300px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle
}

.search-table .batch-table .check-label[data-v-6b970cb2] {
    display: block;
    line-height: 1.5
}

.search-table .batch-table .check-label input[data-v-6b970cb2] {
    margin: 0px
}

.search-table .batch-table .nstatus[data-v-6b970cb2] {
    font-size: 12px;
    padding: 4px 8px 4px 8px;
    line-height: 12px;
    display: inline-block;
    position: relative
}

.search-table .batch-table .frtrt td[data-v-6b970cb2] {
    border-bottom: none
}

.search-table .batch-table .frtrt[data-v-6b970cb2]:hover {
    background: #f3f9fe
}

.search-table .batch-table .frtr td[data-v-6b970cb2] {
    border-top: none
}

.search-table .batch-table .frtr td[data-v-6b970cb2] {
    padding: 3px 10px;
    background: #f3f9fe
}

.search-table .batch-table .frtr td .fp-p[data-v-6b970cb2] {
    margin-top: 5px;
    margin-bottom: 5px
}

.search-table .batch-table .frtr td .fp-p > span[data-v-6b970cb2] {
    margin-right: 20px
}

.search-table .follow-btn.active[data-v-6b970cb2] {
    color: #999
}

.setting[data-v-6b970cb2] {
    height: 20px;
    width: 20px;
    margin-left: -10px
}

.add[data-v-6b970cb2] {
    width: 240px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.add .smdx[data-v-6b970cb2] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.add .smdx img[data-v-6b970cb2] {
    height: 20px;
    width: 20px;
    margin-right: 1px
}

.checkbox[data-v-6b970cb2] {
    height: 14px;
    width: 14px;
    display: inline-block;
    margin-right: 10px;
    margin-top: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.no-data[data-v-6b970cb2] .ant-table-empty .ant-table-placeholder {
    height: 247px !important
}

.no-data[data-v-6b970cb2] .ant-table-empty .ant-table-body {
    min-height: 0px !important;
    overflow: hidden !important
}

[data-v-6b970cb2] .dropdown-menu {
    top: inherit
}

.table-list[data-v-6b970cb2] {
    padding: 0
}

.table-list .table-item[data-v-6b970cb2] {
    background-color: #fff;
    height: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 9px 15px
}

.table-list .table-item .checkbox[data-v-6b970cb2] {
    margin: 0
}

.table-list .table-item .item[data-v-6b970cb2] {
    height: 22px;
    width: 22px;
    margin-right: 5px
}

.add-bg[data-v-6b970cb2] {
    display: inline-block;
    height: 22px;
    width: 22px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/add-272bc4f7.png) no-repeat;
    background-size: 100% 100%;
    margin-right: 4px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.batch-body[data-v-119d5e65] {
    min-height: 300px;
    padding: 0;
    position: relative
}

.batch-body .batch-list-loading img[data-v-119d5e65] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto
}

.red-tag[data-v-119d5e65] {
    color: #fd485e
}

.re-batch-init[data-v-119d5e65] {
    color: #999;
    cursor: pointer
}

.btn[data-v-119d5e65] {
    line-height: 1.428571429 !important
}

[data-v-119d5e65] .open .btn {
    color: #128bed !important
}

ul.dropdown-menu > li > a[data-v-119d5e65], .drop-x > a[data-v-119d5e65] {
    display: block;
    padding-left: 15px;
    padding-right: 5px;
    padding-top: 7px;
    padding-bottom: 5px;
    color: #333;
    line-height: 18px
}

ul.dropdown-menu > li > a[data-v-119d5e65]:hover, ul.dropdown-menu > li > a.hover[data-v-119d5e65], .drop-x > a[data-v-119d5e65]:hover, .drop-x > a.hover[data-v-119d5e65] {
    background-color: #f3f9fd;
    color: #128bed
}

ul.dropdown-menu > li > a .text[data-v-119d5e65], .drop-x > a .text[data-v-119d5e65] {
    display: inline-block;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-right: 5px;
    margin-bottom: 0px;
    white-space: nowrap
}

ul.dropdown-menu > li > a label.text[data-v-119d5e65], .drop-x > a label.text[data-v-119d5e65] {
    font-weight: normal
}

ul.dropdown-menu > li > a label.text > input[data-v-119d5e65], .drop-x > a label.text > input[data-v-119d5e65] {
    float: left;
    margin-right: 6px;
    margin-top: 3px
}

ul.dropdown-menu > li > a i[data-v-119d5e65], .drop-x > a i[data-v-119d5e65] {
    float: right;
    margin-top: 2px
}

ul.dropdown-menu > li > a .drop-right[data-v-119d5e65], .drop-x > a .drop-right[data-v-119d5e65] {
    position: absolute;
    left: 158px;
    z-index: 1000;
    bottom: -1px
}

.maskLogin[data-v-119d5e65] {
    position: absolute;
    width: 460px;
    height: 48px;
    left: 0;
    z-index: 999
}

.mask[data-v-119d5e65] {
    width: 100%;
    top: 0;
    padding: 30px 220px 100px 220px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 773px;
    text-align: center;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/mask-cf69c6f6.png);
    background-repeat: no-repeat;
    background-size: 100% 100%
}

.mask > .mask-content[data-v-119d5e65] {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2)
}

.mask .mask-modal[data-v-119d5e65] {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1000
}

.pull-right[data-v-119d5e65] {
    position: relative
}

.recommend[data-v-119d5e65] {
    background: #fff
}

.recommend .r-header[data-v-119d5e65] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 50px;
    background: #fff;
    padding: 0 15px;
    border-bottom: 1px solid #EEEEEE
}

.recommend .r-header h4[data-v-119d5e65] {
    font-size: 16px;
    color: #333;
    font-weight: normal
}

.recommend .recommend-main[data-v-119d5e65] {
    padding: 0 15px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.recommend .r-btn[data-v-119d5e65] {
    padding: 5px 15px;
    color: #128bed;
    font-size: 14px;
    border-radius: 2px;
    border: 1px solid #128BED;
    cursor: pointer
}

.recommend .r-small[data-v-119d5e65] {
    padding: 4px 12px
}

.recommend .r-item[data-v-119d5e65] {
    width: 258px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 50px;
    margin-top: 20px
}

.recommend .r-item[data-v-119d5e65]:nth-of-type(1), .recommend .r-item[data-v-119d5e65]:nth-of-type(5) {
    margin-left: 0
}

.recommend .r-item .title[data-v-119d5e65] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0 10px
}

.recommend .r-item .title > a[data-v-119d5e65] {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 5px
}

.recommend .r-item .title > span[data-v-119d5e65] {
    font-size: 12px;
    color: #999
}

.recommend .disable[data-v-119d5e65] {
    color: #333
}

.npanel-heading > h4[data-v-119d5e65] {
    font-size: 16px
}

.npanel-heading .btn[data-v-119d5e65] {
    font-size: 14px
}

.invest-org-main .invest-desc {
    border: 1px solid #E4EEF6;
    margin: 0px 15px;
    padding: 10px;
    font-size: 14px;
    color: #333
}

body.no-scroll {
    position: relative;
    overflow: hidden
}

.invest-style .score-desc[data-v-31021c25] {
    height: 40px;
    background: #F8F8F8;
    border-radius: 4px
}

.invest-style .score-desc .final-score[data-v-31021c25] {
    height: 100%;
    font-size: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

.invest-style .score-desc .final-score span[data-v-31021c25] {
    color: #128BED
}

.invest-style .score-desc .final-score span strong[data-v-31021c25] {
    font-size: 22px
}

.invest-style .score-desc .final-score .illustration[data-v-31021c25] {
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/question_icon-4a35f5ef.png) no-repeat center;
    background-size: cover;
    right: 7px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer
}

.invest-style .illustration-dialog[data-v-31021c25] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000
}

.invest-style .illustration-dialog .mask[data-v-31021c25] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1001
}

.invest-style .illustration-dialog .dialog-modal[data-v-31021c25] {
    background-color: #fff;
    position: absolute;
    width: 500px;
    top: 50%;
    left: 50%;
    max-height: 400px;
    margin: 0 20px;
    border-radius: 4px;
    z-index: 1002;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.invest-style .illustration-dialog .dialog-modal .header[data-v-31021c25] {
    height: 55px;
    line-height: 55px;
    text-align: center;
    background: #eee;
    font-size: 19px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px
}

.invest-style .illustration-dialog .dialog-modal .body[data-v-31021c25] {
    padding: 12px 24px 24px
}

.invest-style .illustration-dialog .dialog-modal .body .item-row[data-v-31021c25] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 22px;
    font-size: 16px;
    margin-top: 12px
}

.invest-style .illustration-dialog .dialog-modal .body .item-row .item-label[data-v-31021c25] {
    font-weight: bold
}

.invest-style .illustration-dialog .dialog-modal .body .item-row .text[data-v-31021c25] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.invest-style .illustration-dialog .dialog-modal .footer[data-v-31021c25] {
    margin: 0 24px;
    padding-bottom: 20px
}

.invest-style .illustration-dialog .dialog-modal .footer .know-btn[data-v-31021c25] {
    width: 100%;
    height: 44px;
    color: #fff;
    background: #128BED;
    border-radius: 4px;
    font-size: 16px;
    line-height: 44px;
    text-align: center;
    cursor: pointer
}


.invest-location .block-chart[data-v-3b0d4962] {
    overflow-x: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.invest-location .block-chart .app-echarts[data-v-3b0d4962] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.invest-location .block-chart .nodata[data-v-3b0d4962] {
    margin: 0 auto
}

.invest-location .block-chart-scroll[data-v-3b0d4962] {
    max-height: 302px;
    overflow-y: scroll
}

.invest-org-main .invest-preference {
    width: 100%;
    background: #fff;
    padding: 0 8px !important
}

.invest-org-main .invest-preference .preference-block {
    width: 50%;
    float: left;
    padding: 0 7px 0 7px
}

.invest-org-main .invest-preference .preference-block > div {
    margin-bottom: 20px
}

.invest-org-main .invest-preference .preference-block.preference-location {
    width: 100%
}

.invest-org-main .invest-preference .preference-block .block-title {
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.invest-org-main .invest-preference .preference-block .block-title .title-main {
    line-height: 32px;
    color: #333;
    font-size: 14px;
    font-weight: bold
}

.invest-org-main .invest-preference .preference-block .block-title .filter {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: right
}

.invest-org-main .invest-preference .preference-block .block-title .filter .tdrop .dropdown-menu {
    margin-top: 0
}

.invest-org-main .invest-preference .preference-block .block-chart {
    margin-top: 10px;
    min-height: 302px;
    border: 1px solid #E4EEF6
}

#investRrojects .item-project .block-table-tbody .project-name {
    min-width: 100px
}


#investRrojects .item-score .block-table-tbody .item-details {
    background: #F6F6F6;
    padding: 10px;
    margin-top: 10px
}

#investRrojects .item-score .block-table-tbody .item-details .item-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px
}

#investRrojects .item-score .block-table-tbody .item-details .item-row:first-child {
    margin-top: 0
}

#investRrojects .item-score .block-table-tbody .item-details .item-row .col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

#investRrojects .item-score .block-table-tbody .item-details .item-row .col .text-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

#investRrojects .item-score .block-table-tbody .round-progress {
    padding: 10px 0
}

#investRrojects .item-score .block-table-tbody .round-progress .round-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 20px;
    overflow-y: hidden
}

#investRrojects .item-score .block-table-tbody .round-progress .round-item:last-child {
    padding-bottom: 0
}

#investRrojects .item-score .block-table-tbody .round-progress .round-item .bar {
    width: 22px
}

#investRrojects .item-score .block-table-tbody .round-progress .round-item .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

#investRrojects .item-score .block-table-tbody .round-progress .round-item .round-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

#investRrojects .item-score .block-table-tbody .round-progress .round-item .round-title .date {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: right
}

#investRrojects .item-score .block-table-tbody .round-progress-multi .round-item .bar .icon {
    width: 22px;
    height: 22px;
    background: #fff;
    position: relative
}

#investRrojects .item-score .block-table-tbody .round-progress-multi .round-item .bar .icon:before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background: #D6D6D6;
    border: 2px solid #EEEEEE;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

#investRrojects .item-score .block-table-tbody .round-progress-multi .round-item .bar .line {
    width: 1px;
    height: 100%;
    background: #EEEEEE;
    margin: 0 auto
}

#investRrojects .item-score .block-table-tbody .round-progress-multi .round-item.current-round .bar .icon:before {
    background: #128BED;
    border: 2px solid #E9F3FF
}


.invest-org-main .manage-funds .module-block .block-table-tbody .project-name {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.invest-org-main .manage-funds .module-block .block-table-tbody .text-status {
    text-align: center
}

.invest-org-main .manage-funds .module-block .block-table-tbody .status {
    line-height: 20px;
    font-size: 12px;
    padding: 1px 6px;
    border-radius: 2px;
    display: inline-block
}


#contactInfo .module-block .address-blur {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-filter: blur(3px);
    filter: blur(3px);
    cursor: pointer
}

#investHonor .module-block {
    position: relative
}

#investHonor .module-block .honor-filter {
    position: absolute;
    right: 117px;
    top: -47px
}

#investHonor .module-block .honor-list {
    border: 1px solid #E4EEF6;
    padding: 10px 20px 10px 10px;
    max-height: 250px;
    overflow-y: auto
}

#investHonor .module-block .honor-list table {
    width: 100%
}

#investHonor .module-block .honor-list table td {
    position: relative;
    overflow-y: hidden
}

#investHonor .module-block .honor-list .bar {
    margin-top: 5px
}

#investHonor .module-block .honor-list .bar .icon {
    width: 12px;
    height: 12px;
    background: #128BED;
    border: 2px solid #E9F3FF;
    border-radius: 100%;
    margin: 0 auto
}

#investHonor .module-block .honor-list .bar .line {
    width: 1px;
    height: 100%;
    background: #EEEEEE;
    position: absolute;
    left: 50%;
    margin-top: 2px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

#investHonor .module-block .honor-list .year {
    font-size: 14px;
    color: #333;
    line-height: 22px
}

#investHonor .module-block .honor-list .sub-list .sub-list-item {
    line-height: 22px;
    margin-bottom: 6px
}

#investHonor .module-block .honor-list .sub-list .sub-list-item .title {
    float: left
}

#investHonor .module-block .honor-list .sub-list .sub-list-item .grade {
    float: right;
    color: #333
}

#investHonor .module-block .honor-list .sub-list .sub-list-item a:hover .grade {
    color: #0d61a6
}

.invest-org-main .invest-box .invest-module .module-header {
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding: 0 15px 0 15px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    line-height: 26px;
    margin-bottom: 13px
}

.invest-org-main .invest-box .invest-module .module-header:before {
    content: '';
    position: absolute;
    width: 4px;
    height: 22px;
    background: #128BED;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.invest-org-main .invest-box .invest-module .module-header .header-main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.invest-org-main .invest-box .invest-module .module-header .header-main .count {
    color: #128BED;
    margin-left: 4px
}

.invest-org-main .invest-box .invest-module .module-header .header-main .icon-wenhao {
    margin-left: 2px
}

.invest-org-main .invest-box .invest-module .module-header .header-main .ant-popover-placement-bottomLeft .ant-popover-arrow {
    left: 6px
}

.invest-org-main .invest-box .invest-module .module-header .header-main .ant-popover-placement-bottomLeft .ant-popover-inner {
    margin-left: -10px
}

.invest-org-main .invest-box .invest-module .module-header .watermark {
    text-align: right
}

.invest-org-main .invest-box .module-block {
    padding: 0 15px 50px 15px
}

.invest-org-main .invest-box .module-block.invest-preference {
    padding-bottom: 30px
}

.invest-org-main .invest-box .module-block .block-title {
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.invest-org-main .invest-box .module-block .block-title .title-main {
    line-height: 32px;
    color: #333;
    font-size: 14px;
    font-weight: bold
}

.invest-org-main .invest-box .module-block .block-title .title-main .count {
    color: #128BED;
    margin-left: 4px
}

.invest-org-main .invest-box .module-block .filter {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: right
}

.invest-org-main .invest-box .module-block .filter .tdrop .dropdown-menu {
    margin-top: 0
}

.invest-org-main .invest-box .module-block .filter .tdrop .list-group {
    min-width: 200px
}

.invest-org-main .invest-box .module-block .filter .tdrop .list-group-item.sub {
    padding-left: 30px
}

.invest-org-main .invest-box .module-block .filter .tdrop .list-group-item.third {
    padding-left: 45px
}

.invest-org-main .invest-box .module-block .npanel-heading {
    background: #fff
}

.invest-org-main .invest-box .module-block .block-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.invest-org-main .invest-box .module-block .block-tabs .tab-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.invest-org-main .invest-box .module-block .block-tabs .tab-list .tab {
    margin-right: 20px;
    color: #666666;
    line-height: 32px;
    font-size: 14px;
    position: relative;
    cursor: pointer
}

.invest-org-main .invest-box .module-block .block-tabs .tab-list .tab.active {
    color: #128BED
}

.invest-org-main .invest-box .module-block .block-tabs .tab-list .tab.active:before {
    content: '';
    width: 100%;
    height: 2px;
    background: #128BED;
    position: absolute;
    left: 0;
    bottom: 0
}

.invest-org-main .invest-box .module-block .block-tabs .tab-list .tab.disable {
    color: #999;
    cursor: default
}

.invest-org-main .invest-box .module-block .block-tabs .tab-list .tab.disable:before {
    content: none
}

.invest-org-main .invest-box .module-block .block-table {
    margin-top: 10px
}

.invest-org-main .invest-box .module-block .block-table table {
    width: 100%
}

.invest-org-main .invest-box .module-block .block-table table tr .number {
    width: 48px;
    text-align: center
}

.invest-org-main .invest-box .module-block .block-table .block-table-thead {
    background: #F2F9FC
}

.invest-org-main .invest-box .module-block .block-table .block-table-thead tr {
    border: 1px solid #E4EEF6
}

.invest-org-main .invest-box .module-block .block-table .block-table-thead tr th {
    height: 44px;
    line-height: 44px;
    text-align: center;
    font-weight: normal;
    word-break: keep-all;
    padding: 0 10px
}

.invest-org-main .invest-box .module-block .block-table .block-table-thead tr th.number {
    padding: 0
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody tr {
    border-bottom: 1px solid #E4EEF6;
    border-right: 1px solid #E4EEF6
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody tr td {
    color: #333;
    font-size: 14px;
    padding: 11px 10px;
    border-left: 1px solid #E4EEF6
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody tr td.keep-all {
    word-break: keep-all;
    white-space: nowrap
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody tr td.td-date {
    min-width: 100px
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody tr td .click-active {
    color: #128BED;
    cursor: pointer
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody tr td .click-active i {
    color: #333
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody tr td .text-label {
    display: inline-block;
    color: #666
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody tr .td-center {
    text-align: center
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody .project-name {
    min-width: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody .project-name .logo {
    margin-top: 2px
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody .project-name .info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 10px
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody .project-name .info .slogan {
    color: #999
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody .industry-tags {
    font-size: 0;
    margin-top: -5px;
    margin-right: -10px
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody .industry-tags .tag {
    height: 22px;
    line-height: 22px;
    padding: 0 6px;
    margin-right: 10px;
    margin-top: 5px;
    background: #E7F4FF;
    border-radius: 2px;
    color: #128BED;
    font-size: 12px;
    display: inline-block;
    word-break: keep-all
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody .team-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody .team-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody .team-content:first-child {
    margin-top: 10px
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody .team-content:last-child {
    margin-bottom: 10px
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody .team-content:last-child .funder-line {
    bottom: 0px !important
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody .team-content .team-content-left {
    position: relative
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody .team-content .team-content-left img {
    width: 12px
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody .team-content .team-content-left .funder-line {
    position: absolute;
    top: 20px;
    bottom: -20px;
    width: 1px;
    background: #eee;
    left: 6px
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody .team-content .team-content-right {
    margin-left: 5px;
    color: #666666;
    width: 100%
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody .team-content .team-content-right .team-sub-content {
    background: #F6F6F6;
    margin-top: 10px;
    padding: 10px;
    width: 100%
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody .team-content .team-content-right .team-sub-content .team-position {
    margin-top: 10px
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody .team-content .team-content-right .team-value {
    color: #333333
}

.invest-org-main .invest-box .module-block .block-table .block-table-tbody .td-text {
    margin-top: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.invest-org-main .invest-box .module-block .block-page {
    text-align: right;
    margin-top: 20px;
    margin-right: -10px
}

.invest-org-main .invest-box .watermark {
    width: 92px;
    height: 26px;
    background: url(../../images/watermark.png?t=1) no-repeat;
    background-size: 92px 26px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px
}

.invest-org-main .invest-box a.disable {
    color: #333333;
    cursor: Auto
}

.invest-org-main {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 15px
}

.invest-org-main .flex-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.invest-org-main .top {
    width: 100%;
    height: 140px;
    background: #fff;
    padding: 20px 25px;
    border: 1px solid #eee;
    position: relative
}

.invest-org-main .top .top-right {
    margin-left: 35px;
    position: relative;
    top: -2px
}

.invest-org-main .top .top-right .invest-name {
    font-size: 22px;
    color: #333;
    font-weight: bold;
    margin: 0;
    line-height: 34px
}

.invest-org-main .top .top-right .invest-tag-wrap {
    margin-top: 10px
}

.invest-org-main .top .top-right .invest-tag-wrap .invest-tag {
    padding: 0 6px;
    font-size: 12px;
    height: 22px;
    line-height: 22px;
    background: #E7F4FF;
    color: #128bed;
    border-radius: 2px;
    margin-right: 10px
}

.invest-org-main .top .top-right .invest-tag-wrap .invest-tag:last-child {
    margin-right: 0
}

.invest-org-main .top .top-right .invest-basic {
    margin-top: 10px
}

.invest-org-main .top .top-right .invest-basic .basic-info {
    font-size: 14px;
    margin-right: 30px
}

.invest-org-main .top .top-right .invest-basic .basic-info:last-child {
    margin-right: 0
}

.invest-org-main .top .top-right .invest-basic .basic-info .basic-info-label {
    color: #666666
}

.invest-org-main .top .top-right .invest-basic .basic-info .basic-info-vlaue {
    color: #333333
}

.invest-org-main .top .invest-action {
    position: absolute;
    right: 20px;
    top: 15px
}

.invest-org-main .top .invest-action .action-btn {
    height: 32px;
    border: 1px solid #128bed;
    color: #128bed;
    background-color: #fff;
    font-size: 14px;
    line-height: 30px;
    padding: 0px 6px 0px 8px;
    display: inline-block;
    border-radius: 2px;
    position: relative
}

.invest-org-main .top .invest-action .action-btn:hover {
    opacity: .8
}

.invest-org-main .invest-dynamic {
    margin-top: 15px;
    background: #fff;
    width: 100%;
    height: 68px;
    padding: 10px 20px 10px 17px;
    border: 1px solid #eee
}

.invest-org-main .invest-dynamic .dynamic-left {
    width: 90px;
    height: 42px;
    position: relative;
    top: 2px;
    float: left
}

.invest-org-main .invest-dynamic .dynamic-left img {
    width: 100%;
    height: 100%
}

.invest-org-main .invest-dynamic .dynamic-right {
    margin-left: 20px;
    background: #F6FAFF;
    height: 100%;
    cursor: pointer;
    overflow-y: hidden;
    position: relative;
    float: left;
    width: calc(100% - 110px);
    visibility: hidden
}

.invest-org-main .invest-dynamic .dynamic-right .swiper-slide {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    line-height: 48px;
    font-size: 14px;
    color: #333;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap
}

.invest-org-main .invest-dynamic .dynamic-right .swiper-slide span {
    color: #666666;
    margin-left: 28px
}

.invest-org-main .invest-dynamic .dynamic-right .swiper-slide span:first-child {
    margin-left: 0
}

.invest-org-main .invest-box-wrap {
    margin-top: 15px;
    background: #fff;
    border: 1px solid #eee
}

.invest-org-main .invest-box-wrap #investDesc {
    margin-top: 25px
}

.invest-org-main .invest-box-wrap #investPreference {
    margin-top: 50px
}

.invest-org-main .invest-box-wrap.fixed .navs {
    width: 1220px;
    position: fixed;
    top: 56px;
    z-index: 99;
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05)
}

.invest-org-main .invest-box-wrap.fixed .fixed-holder {
    height: 44px
}

.invest-org-main .invest-box-wrap .navs {
    border-bottom: 1px solid #F0F0F0;
    width: 100%;
    height: 44px;
    line-height: 44px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    background: #FCFCFC;
    cursor: pointer
}

.invest-org-main .invest-box-wrap .navs .nav-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    border-right: 1px solid #F0F0F0;
    color: #333;
    font-size: 15px
}

.invest-org-main .invest-box-wrap .navs .nav-item:last-child {
    border-right: none
}

.invest-org-main .invest-box-wrap .navs .nav-item .nav-count {
    font-size: 12px;
    color: #999999;
    margin-left: 5px
}

.invest-org-main .invest-box-wrap .navs .active {
    color: #128bed;
    font-weight: bold;
    background: #fff
}

.invest-org-main .invest-box-wrap .navs .active .nav-count {
    color: #128bed
}

.invest-org-main .invest-box-wrap .navs .disable {
    color: #999
}

.invest-honor-detail {
    padding-top: 15px
}

.invest-honor-detail .honor-top {
    padding: 20px;
    background: #fff
}

.invest-honor-detail .honor-top h1 {
    font-size: 22px;
    line-height: 30px;
    margin-top: 0
}

.invest-honor-detail .honor-top .honor-tag {
    font-size: 0
}

.invest-honor-detail .honor-top .honor-tag .tag {
    display: inline-block;
    font-size: 14px;
    line-height: 22px;
    margin-right: 30px
}

.invest-honor-detail .honor-top .honor-tag .tag span {
    color: #666
}

.invest-honor-detail .honor-content {
    background: #fff;
    margin-top: 15px;
    padding: 20px 0
}

.invest-honor-detail .honor-content h2 {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    margin-top: 0;
    position: relative;
    padding-left: 20px
}

.invest-honor-detail .honor-content h2:before {
    content: '';
    width: 4px;
    height: 22px;
    background: #128BED;
    position: absolute;
    left: 0;
    top: 1px
}

.invest-honor-detail .honor-content h2:after {
    content: '';
    height: 1px;
    background: #EEEEEE;
    position: absolute;
    left: 100px;
    right: 20px;
    top: 50%
}

.invest-honor-detail .honor-content .honor-list table {
    width: 100%
}

.invest-honor-detail .honor-content .honor-list table tr td {
    padding: 23px 0
}

.invest-honor-detail .honor-content .honor-list table tr:hover {
    background: #F5F9FF
}

.invest-honor-detail .honor-content .honor-list table .number {
    min-width: 18px;
    height: 18px;
    background: #D6D6D6;
    border-radius: 6px;
    font-size: 13px;
    color: #666;
    text-align: center;
    line-height: 18px;
    margin-left: 20px;
    display: inline-block
}

.invest-honor-detail .honor-content .honor-list table .number.top-3 {
    background: #128BED;
    color: #fff
}

.invest-honor-detail .honor-content .honor-list table .name {
    font-size: 18px;
    font-weight: 500
}

.invest-honor-detail .honor-content .honor-list table .industry-tags {
    text-align: right;
    padding-right: 20px;
    font-size: 0
}

.invest-honor-detail .honor-content .honor-list table .industry-tags .tag {
    line-height: 22px;
    font-size: 12px;
    padding: 0 6px;
    display: inline-block;
    color: #128BED;
    background: #E7F4FF;
    border-radius: 2px;
    margin-left: 10px
}

.invest-honor-detail .honor-content .honor-page {
    text-align: right;
    margin-top: 20px;
    margin-right: 10px
}

.tcaption.stock .title {
    display: none
}

.tcaption.stock .stock-title {
    font-size: 22px;
    color: #000;
    float: left;
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 600
}

.tcaption.stock .stock-status {
    color: #999;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    line-height: 22px;
    margin-left: 5px;
    top: 6px
}

.tcaption.stock .stock-timeinfo {
    font-size: 20px;
    font-weight: bold
}

.tcaption.stock .stock-timeinfo.up {
    color: #FD485E
}

.tcaption.stock .stock-timeinfo.down {
    color: #7ED321
}

.tcaption.stock .stock-timeinfo .trend {
    font-size: 16px
}

.tcaption.stock.offList .right, .tcaption.stock.offList .watermark {
    display: none
}

.tcaption.stock .right a {
    line-height: 28px
}


.tcaption.stock .title {
    display: none
}

.tcaption.stock .stock-title {
    font-size: 22px;
    color: #000;
    float: left;
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 600
}

.tcaption.stock .stock-status {
    color: #999;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    line-height: 22px;
    margin-left: 5px;
    top: 6px
}

.tcaption.stock .stock-timeinfo {
    font-size: 20px;
    font-weight: bold
}

.tcaption.stock .stock-timeinfo.up {
    color: #FD485E
}

.tcaption.stock .stock-timeinfo.down {
    color: #7ED321
}

.tcaption.stock .stock-timeinfo .trend {
    font-size: 16px
}

.tcaption.stock.offList .right, .tcaption.stock.offList .watermark {
    display: none
}


.tcaption.stock .title {
    display: none
}

.tcaption.stock .stock-title {
    font-size: 22px;
    color: #000;
    float: left;
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 600
}

.tcaption.stock .stock-status {
    color: #999;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    line-height: 22px;
    margin-left: 5px;
    top: 6px
}

.tcaption.stock .stock-timeinfo {
    font-size: 20px;
    font-weight: bold
}

.tcaption.stock .stock-timeinfo.up {
    color: #FD485E
}

.tcaption.stock .stock-timeinfo.down {
    color: #7ED321
}

.tcaption.stock .stock-timeinfo .trend {
    font-size: 16px
}

.tcaption.stock.offList .right, .tcaption.stock.offList .watermark {
    display: none
}


.hkstock-analysis {
    float: left;
    width: 700px;
    margin-left: -700px
}

.hkstock-analysis .table-scroll {
    margin-top: -1px;
    float: left;
    width: 700px;
    height: 221px;
    overflow: hidden;
    border-bottom: 1px solid #e4eef6
}

.hkstock-analysis .table-scroll tr.active td.text-right {
    color: #128bed;
    background: #F2F9FC
}


.company-data .base-graph .item {
    float: left;
    display: block
}

.company-data .base-graph .item:not(:last-child) {
    margin-right: 10px
}

.company-data .base-graph .item .img {
    width: 139px;
    height: 86px;
    border: solid 1px #E4EEF6
}

.company-data .base-graph .item .img > img {
    width: 100%;
    height: 100%
}

.company-data .base-graph .item .text {
    text-align: center;
    padding: 4px;
    color: #333
}

.company-data .base-graph .item:hover .img {
    border-color: #128bed
}

.company-data .base-graph .item:hover .text {
    color: #128bed
}


.word-intro {
    margin-right: 10px
}

#fxsm[data-v-3d713499] {
    margin: 0 0 40px
}

#fxsm .risk-overview[data-v-3d713499] .risk-body {
    border: none
}


.app-tree-table td {
    text-align: center
}

.app-tree-table td.left {
    text-align: left
}

.app-tree-table td.right {
    text-align: right
}

.ntable-sec-tree {
    background-color: #F2F9FC
}

.ntable-sec-tree > .left {
    width: 400px
}

.ntable-sec-tree-td {
    width: 26px;
    text-align: center;
    -webkit-writing-mode: lr-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: lr-tb
}

.ntable-sec-tree-diy-td {
    cursor: pointer;
    color: #128bed !important
}

.first-td {
    position: relative
}

.first-td > div:nth-child(1) {
    width: 90%
}

.show-son-btn {
    position: absolute;
    right: 10px;
    top: 40%;
    height: 16px;
    cursor: pointer
}

.show-son-icon {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/show-son-366bc34b.png);
    background-repeat: no-repeat;
    background-size: 16px 16px;
    display: inline-block;
    width: 16px;
    height: 16px
}

.unshow-son-icon {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/unshow-son-97a6b896.png);
    background-repeat: no-repeat;
    background-size: 16px 16px;
    display: inline-block;
    width: 16px;
    height: 16px
}

.partner-app-tdcoy {
    position: relative;
    z-index: 10
}

.ipo-partner-app-tdcoy {
    position: relative;
    z-index: 10
}


.bicon.bicon-jz {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_jz-98bcd82d.png);
    background-position: 0px 0px
}


.bicon.bicon-jz {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_jz-98bcd82d.png);
    background-position: 0px 0px
}


.company-detail .wenshu-entry {
    position: relative;
    float: left;
    background-color: #E7F4FF;
    width: 250px;
    height: 22px;
    line-height: 22px;
    border-radius: 2px;
    font-size: 12px;
    color: #128BED
}

.company-detail .wenshu-entry .wenshu-search {
    display: inline-block;
    color: #128bed;
    margin: 0 0 0 5px
}


.risk-panel td[data-v-710a1d25] {
    padding: 15px 8px;
    line-height: 1.8
}

.risk-panel .btn[data-v-710a1d25] {
    width: 82px;
    font-size: 12px
}

.risk-panel td[data-v-487cf151] {
    padding: 15px 8px;
    line-height: 1.8
}

.risk-panel .btn[data-v-487cf151] {
    width: 82px;
    font-size: 12px
}

.risk-panel td[data-v-156d0b16] {
    padding: 15px 8px;
    line-height: 1.8
}

.risk-panel .btn[data-v-156d0b16] {
    width: 82px;
    font-size: 12px
}


.assets-avatar {
    width: 66px
}

.zlchart-tcount {
    padding-top: 40px;
    text-align: center
}

.zlchart-tcount img {
    width: 40px;
    margin-bottom: 15px
}

.zlchart-tcount .tcount {
    color: #67aef5;
    font-family: PingFangSC-Medium;
    font-size: 56px;
    font-weight: 600;
    margin-right: 15px;
    margin-left: 15px
}

.zlchart-tcount .t-tip {
    margin-top: 16px;
    color: #999;
    text-align: left;
    line-height: 19px
}

.zl-chart-status {
    height: 219px;
    overflow-y: auto;
    overflow-x: hidden
}

.zl-chart-status::-webkit-scrollbar {
    width: 0px
}

.zlchart-tcount-wrap {
    padding: 15px
}

.zhuanli .chart-contain {
    overflow: visible !important
}

.zlchart-tcount {
    padding-top: 40px;
    text-align: center
}

.zlchart-tcount img {
    width: 40px;
    margin-bottom: 15px
}

.zlchart-tcount .tcount {
    color: #67aef5;
    font-family: PingFangSC-Medium;
    font-size: 56px;
    font-weight: 600;
    margin-right: 15px;
    margin-left: 15px
}

.zlchart-tcount .t-tip {
    margin-top: 16px;
    color: #999;
    text-align: left;
    line-height: 19px
}

.zl-chart-status {
    height: 219px;
    overflow-y: auto;
    overflow-x: hidden
}

.zl-chart-status::-webkit-scrollbar {
    width: 0px
}

.zlchart-tcount-wrap {
    padding: 15px
}

.zhuanli .chart-contain {
    overflow: visible !important
}

.zs-item {
    margin-bottom: 30px
}

.zs-item:last-child {
    margin-bottom: 0
}


.wechat-hover {
    margin-top: 6px;
    cursor: pointer
}

.wechat-hover .wechat-kuang {
    display: none;
    position: absolute;
    width: 240px;
    height: 240px;
    border: solid 1px #ECECEC;
    background: #fff;
    margin-left: 60px;
    margin-top: -30px;
    z-index: 10;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2)
}

.wechat-hover .wechat-kuang .title {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    color: #333
}

.wechat-hover .wechat-kuang .subtitle {
    text-align: center;
    font-size: 12px;
    margin-top: 5px;
    color: #999
}

.wechat-hover .wechat-kuang .wechat-qrcode {
    width: 150px;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px
}

.wechat-hover:hover .wechat-kuang {
    display: block
}

.assets-avatar {
    width: 66px
}

.assets-avatar {
    width: 66px
}

.assets-avatar {
    width: 66px
}

.company-newslist .relate-company {
    max-height: 100%;
    padding: 20px 150px 20px 120px;
    overflow: auto
}

.company-newslist .relate-company .item {
    position: relative;
    padding-top: 8px;
    padding-bottom: 12px;
    padding-left: 30px
}

.company-newslist .relate-company .item .com {
    display: block;
    color: #333
}

.company-newslist .relate-company .item .num {
    position: absolute;
    display: inline-block;
    padding: 0px 2px;
    border-radius: 6px;
    left: 0px;
    top: 20px;
    background: #F6F6F6;
    color: #999;
    height: 20px;
    line-height: 20px;
    text-align: center;
    min-width: 20px
}

.company-newslist .relate-company .item .percent {
    font-size: 12px;
    color: #128bed;
    position: absolute;
    right: 0px;
    top: 10px
}

.company-newslist .relate-company .item .bar {
    height: 4px;
    background: #128BED;
    border-radius: 2px;
    margin-top: 6px;
    position: relative;
    overflow: hidden
}

.company-newslist .relate-company .item .bar > .process {
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    background: #eee
}

.company-newslist .relate-company .item:nth-of-type(1) .num, .company-newslist .relate-company .item:nth-of-type(2) .num, .company-newslist .relate-company .item:nth-of-type(3) .num {
    color: #128bed;
    background: #E9F3FF
}


.moresecreport {
    margin-bottom: 40px
}

.moresecreport .thwrap {
    background: #F2F9FC;
    border: #E4EEF6 1px solid;
    border-collapse: collapse;
    padding: 12px 12px 12px 12px;
    font-weight: normal;
    color: #444;
    line-height: 19px
}

.moresecreport .thwrap .pull-left {
    text-align: left;
    line-height: 1.6;
    padding-left: 30px
}

.moresecreport .thwrap .title {
    font-size: 32px;
    color: #128bed;
    margin-top: 15px;
    font-weight: 600
}

.moresecreport .thwrap .subtitle {
    font-size: 22px;
    color: #128bed;
    margin-top: 10px
}

.moresecreport .thwrap .subtitle .btn {
    margin-left: 15px;
    margin-top: -4px;
    width: 98px;
    font-size: 12px;
    color: #fff
}

.moresecreport .thwrap img {
    width: 160px;
    margin-right: 20px
}

.company-detail .sub-nav {
    padding: 10px 20px;
    background: #fff;
    border: solid 1px #eee;
    margin-bottom: -1px
}

.company-detail .sub-nav .item {
    display: inline-block;
    margin: 5px 5px;
    padding: 5px 10px;
    line-height: 1.5;
    border-radius: 0px;
    color: #555;
    font-size: 13px;
    border: 1px solid #eee;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-weight: 500;
    position: relative
}

.company-detail .sub-nav .item:hover {
    background: #128bed;
    color: #fff;
    border-color: #128bed
}

.company-detail .sub-nav .item.disable {
    cursor: default;
    background: #ebeef4 !important;
    border-color: #ebeef4 !important;
    color: #555 !important
}

.company-detail .bottom-nav .tcaption {
    padding: 10px 15px;
    background: #FCFCFC;
    height: auto;
    border: solid 1px #eee;
    margin-bottom: 10px
}

.company-detail .bottom-nav .tcaption .title {
    font-weight: normal;
    font-size: 15px
}

.company-detail .bottom-nav .tcaption .expand-btn {
    margin-top: 3px
}

.company-detail .bottom-nav table {
    margin-bottom: 20px
}

.company-detail .bottom-nav table .head {
    color: #333;
    font-size: 14px
}

.company-detail .bottom-nav table td {
    vertical-align: top;
    padding-bottom: 10px;
    padding-top: 10px
}

.company-detail .bottom-nav table td:nth-child(1) {
    padding-left: 15px
}

.company-detail .bottom-nav table td:nth-child(2) {
    border-bottom: solid 1px #eee
}

.company-detail .bottom-nav table td > a {
    display: inline-block;
    color: #666;
    font-size: 12px;
    width: 120px
}

.company-detail .bottom-nav table td > a:hover {
    color: #128bed
}

.company-detail .bottom-nav table td > span {
    display: inline-block;
    color: #D6D6D6;
    font-size: 12px;
    width: 120px
}

.company-detail .bottom-nav .more-banner {
    display: block;
    height: 100px;
    margin-bottom: 15px;
    width: 100%;
    overflow: hidden
}

.company-detail .bottom-nav .more-banner > img {
    height: 100px
}


.pay[data-v-19c63e06] {
    background: #128BED;
    border-radius: 2px;
    color: #FFFFFF !important;
    width: 60%;
    margin-left: 20%;
    text-align: center !important
}

.shadow-box[data-v-19c63e06] {
    width: 100%;
    height: 87px;
    margin-top: -20px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/blur@2x-f21b7580.png);
    background-size: 100% 100%;
    background-position: 0px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.shadow-botton[data-v-19c63e06] {
    background: #128BED;
    border-radius: 2px;
    border: 1px solid #128BED;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

.shadow-botton img[data-v-19c63e06] {
    width: 20px;
    height: 20px;
    margin-right: 5px
}

.bottom-pay__tips[data-v-19c63e06] {
    width: 100%;
    height: 22px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.bottom-pay__tips .tip-img[data-v-19c63e06] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 5px
}

.bottom-pay__tips .tip-img img[data-v-19c63e06] {
    width: 100%;
    height: 100%
}

[data-v-19c63e06] .app-ntable .ntable th:not(:last-child) {
    border-right: #e4eef6 1px solid
}

.pad10[data-v-19c63e06] {
    padding: 10px !important
}

[data-v-19c63e06] .app-ntable .ntable tr th:not(:first-child) {
    width: 283px
}

.pay[data-v-a72421ce] {
    background: #128BED;
    border-radius: 2px;
    color: #FFFFFF !important;
    width: 60%;
    margin-left: 20%;
    text-align: center !important
}

.shadow-box[data-v-a72421ce] {
    width: 100%;
    height: 87px;
    margin-top: -20px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/blur@2x-f21b7580.png);
    background-size: 100% 100%;
    background-position: 0px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.shadow-botton[data-v-a72421ce] {
    background: #128BED;
    border-radius: 2px;
    border: 1px solid #128BED;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

.shadow-botton img[data-v-a72421ce] {
    width: 20px;
    height: 20px;
    margin-right: 5px
}

.bottom-pay__tips[data-v-a72421ce] {
    width: 100%;
    height: 22px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.bottom-pay__tips .tip-img[data-v-a72421ce] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 5px
}

.bottom-pay__tips .tip-img img[data-v-a72421ce] {
    width: 100%;
    height: 100%
}

[data-v-a72421ce] .app-ntable .ntable th:not(:last-child) {
    border-right: #e4eef6 1px solid
}

.ntable th[data-v-a72421ce]:not(:last-child) {
    border-right: #e4eef6 1px solid
}

.ntable td[data-v-a72421ce] {
    text-align: center
}

.ntable td.left[data-v-a72421ce] {
    text-align: left
}

.ntable td.right[data-v-a72421ce] {
    text-align: right
}

.pad10[data-v-a72421ce] {
    padding: 10px !important
}

[data-v-a72421ce] .app-ntable .ntable tr th:not(:first-child) {
    width: 283px
}

.pay[data-v-65964e4b] {
    background: #128BED;
    border-radius: 2px;
    color: #FFFFFF !important;
    width: 60%;
    margin-left: 20%;
    text-align: center !important
}

.shadow-box[data-v-65964e4b] {
    width: 100%;
    height: 87px;
    margin-top: -20px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/blur@2x-f21b7580.png);
    background-size: 100% 100%;
    background-position: 0px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.shadow-botton[data-v-65964e4b] {
    background: #128BED;
    border-radius: 2px;
    border: 1px solid #128BED;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

.shadow-botton img[data-v-65964e4b] {
    width: 20px;
    height: 20px;
    margin-right: 5px
}

.bottom-pay__tips[data-v-65964e4b] {
    width: 100%;
    height: 22px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.bottom-pay__tips .tip-img[data-v-65964e4b] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 5px
}

.bottom-pay__tips .tip-img img[data-v-65964e4b] {
    width: 100%;
    height: 100%
}

[data-v-65964e4b] .app-ntable .ntable th:not(:last-child) {
    border-right: #e4eef6 1px solid
}

.pad10[data-v-65964e4b] {
    padding: 10px !important
}

[data-v-65964e4b] .app-ntable .ntable tr th:not(:first-child) {
    width: 283px
}

.pay[data-v-6c5f1715] {
    width: 82px;
    height: 32px;
    background: #128BED;
    border-radius: 2px;
    color: #FFFFFF !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto
}

[data-v-6c5f1715] .app-ntable .ntable th:not(:last-child) {
    border-right: #e4eef6 1px solid
}

.oper-detail[data-v-6c5f1715] {
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #128BED;
    cursor: pointer
}


.company-detail .mtlist-tab {
    background: #FCFCFC;
    padding: 0px 16px;
    border: solid 1px #eee;
    margin-top: -1px;
    margin-bottom: -1px
}

.company-detail .mtlist-tab .item {
    font-size: 14px;
    color: #666;
    line-height: 40px;
    margin-right: 15px;
    display: inline-block
}

.company-detail .mtlist-tab .item.active {
    color: #128bed;
    border-bottom: solid 2px #128bed
}


.own-switch {
    position: absolute;
    margin-left: -49px;
    top: -8px
}

.own-switch.fixed {
    position: fixed;
    left: auto;
    z-index: 100;
    top: 50px
}

.own-switch > a {
    display: block;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/own_switch-9998ea1a.png);
    background-size: 48px 520px;
    width: 48px;
    height: 120px;
    padding-left: 20px;
    z-index: 9;
    right: 0px;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    -o-transition: transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    position: relative;
    background-position: 0px 648px;
    margin-top: -38px
}

.own-switch > a:first-child {
    margin-top: 0
}

.own-switch > a .zi {
    width: 20px;
    text-align: center;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
    padding-top: 25px
}

.own-switch > a.active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    background-position: 0px 390px;
    color: #fff;
    margin-top: -42px;
    z-index: 10
}

.own-switch > a.active:first-child {
    margin-top: -2px
}

.own-switch > a.active + a {
    margin-top: -10px
}

.own-switch > a:not(.active):hover {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9)
}

.own-switch .own-switchto {
    background-position: 0px -4px;
    color: #E4930F;
    z-index: 6
}

.own-switch .own-switchto .zi {
    padding-top: 19px
}

.own-switch .own-switchto .count {
    font-size: 12px;
    width: 35px;
    text-align: center;
    color: #E4930F;
    font-weight: 600;
    display: block;
    margin-left: -8px;
    margin-top: 2px
}

.own-switch .own-switchto.active {
    background-position: 0px 260px;
    color: #fff
}

.own-switch .own-switchto.active .count {
    color: #fff;
    font-weight: normal;
    margin-top: 2px
}

.own-switch .own-switchastock {
    z-index: 8
}

.own-switch .own-switchbuild {
    z-index: 7
}

.own-switch a.active + .own-switchastock {
    margin-top: -12px
}

.company-toolbar {
    background: #fcfcfc;
    border: solid 1px #eee;
    margin-top: -1px;
    padding: 8px 20px;
    height: 42px
}

.company-toolbar .hot-news {
    line-height: 25px
}

.company-toolbar .hot-news .hot-news-title {
    float: left;
    position: relative;
    padding-left: 15px;
    margin-right: 5px;
    color: #999
}

.company-toolbar .hot-news .hot-news-ic {
    /*background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/hot_news_ic-6f89185d.png);*/
    background: url(../../images/website/company/hot_news_ic-6f89185d.png);
    background-size: 22px 22px;
    display: inline-block;
    width: 22px;
    height: 22px;
    position: absolute;
    left: -10px
}

.company-toolbar .hot-news .hot-news-scroll {
    height: 25px;
    overflow-y: hidden;
    position: relative;
    width: 710px
}

.company-toolbar .hot-news .hot-news-scroll .item .name {
    display: inline-block;
    vertical-align: bottom;
    color: #333;
    max-width: 420px;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.company-toolbar .hot-news .hot-news-scroll .item .name:hover {
    color: #128bed
}

.company-toolbar .bar-btn {
    color: #333;
    position: relative
}

.company-toolbar .bar-btn .aicon:not(.aicon-hot):not(.aicon-new) {
    font-size: 16px;
    color: #128bed;
    width: 22px;
    text-align: center;
    position: relative;
    top: 1px
}

.company-toolbar .bar-btn:hover {
    color: #128bed
}

.company-toolbar .bar-btn:not(:first-child) {
    margin-left: 12px
}

.company-toolbar .bar-btn .bar-icon-app {
    background-position: 0px -88px
}

.company-toolbar .bar-btn .bar-icon-fp {
    background-position: -22px -88px
}

.company-toolbar .bar-btn .bar-icon-report {
    background-position: -44px -88px
}

.company-toolbar .bar-btn .bar-icon-feedback {
    background-position: 0px -110px
}

.company-toolbar .bar-btn .aicon-hot, .company-toolbar .bar-btn .aicon-new {
    right: -16px;
    top: -16px
}

.company-header {
    margin-top: 15px
}

.company-header .nheader {
    position: relative;
    background: #fff;
    border: 1px solid #eeeeee
}

.company-header .nheader .infos {
    padding: 24px 20px 12px 140px;
    min-height: 208px
}

.company-header .nheader .infos .logo-info {
    float: left;
    margin-left: -120px;
    padding-top: 4px
}

.company-header .nheader .infos .logo-info .logo {
    width: 100px;
    height: 100px;
    display: table-cell;
    vertical-align: middle;
    border: solid 1px #f0f0f0;
    border-radius: 8px
}

.company-header .nheader .infos .logo-info .logo img {
    width: 100px;
    border-radius: 8px
}

.company-header .nheader .infos .logo-info .qcc-cert {
    height: 20px
}

.company-header .nheader .infos .logo-info .company-visit {
    margin-top: 15px
}

.company-header .nheader .infos .logo-info .company-visit .visit-view {
    background: url(../../../images/website/company/visit_btn-1df2cdb0.png);
    width: 100px;
    height: 50px;
    background-size: 200px 50px;
    font-size: 12px;
    margin-top: 10px;
    padding-top: 28px;
    padding-left: 4px;
    padding-right: 2px;
    color: #999;
    cursor: pointer;
    margin-left: 2px;
    z-index: 400;
    text-align: center;
    white-space: nowrap
}

.company-header .nheader .infos .logo-info .company-visit .visit-text {
    width: 100px;
    color: #999;
    text-align: center;
    white-space: nowrap
}

.company-header .nheader .infos .logo-info .company-visit .visit-depanel {
    position: absolute;
    width: 450px;
    margin-left: 90px;
    background: #fff;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    z-index: 100;
    display: none;
    cursor: default
}

.company-header .nheader .infos .logo-info .company-visit .visit-depanel .chart-wrap {
    padding: 15px;
    padding-bottom: 25px
}

.company-header .nheader .infos .logo-info .company-visit .visit-depanel .chart-title {
    font-size: 14px;
    color: #333;
    text-align: left;
    margin-bottom: 12px
}

.company-header .nheader .infos .logo-info .company-visit .visit-depanel .chart-main {
    position: relative;
    background: #f3f9fe !important;
    height: 215px;
    width: 420px
}

.company-header .nheader .infos .logo-info .company-visit .visit-depanel .foot {
    border-top: solid 1px #e5e5e5;
    text-align: left;
    padding: 15px;
    line-height: 32px;
    font-size: 14px
}

.company-header .nheader .infos .logo-info .company-visit .visit-view:hover .visit-depanel {
    display: block
}

.company-header .nheader .infos .logo-info .cert-btn {
    margin-top: 12px;
    width: 100px;
    line-height: 20px;
    height: 22px;
    z-index: 390;
    border: solid 1px #f9ad14;
    color: #f9ad14;
    border-radius: 2px;
    font-size: 12px;
    text-align: center;
    display: block
}

.company-header .nheader .infos .logo-info .cert-btn .cert-btn-icon {
    display: inline-block;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/cert_btn_icon-44aecdba.png);
    background-size: 28px 14px;
    width: 14px;
    height: 14px;
    position: relative;
    top: 3px
}

.company-header .nheader .infos .content .title {
    max-width: 640px
}

.company-header .nheader .infos .content .title h1 {
    margin-top: 0px;
    margin-bottom: 0px;
    display: inline;
    line-height: 31px;
    font-size: 22px;
    color: #000000;
    letter-spacing: 0;
    font-weight: 600;
    -webkit-user-select: all;
    -moz-user-select: all;
    -ms-user-select: all;
    user-select: all
}

.company-header .nheader .infos .content .title .nstatus {
    position: relative;
    left: 10px;
    top: -4px;
    margin-left: -5px;
    font-size: 12px;
    padding: 0px 8px 0px 8px;
    line-height: 20px;
    cursor: pointer
}

.company-header .nheader .infos .content .title-en {
    font-size: 16px;
    color: #666
}

.company-header .nheader .infos .content .tags-wrap {
    margin-top: 8px;
    margin-left: -4px;
    min-height: 22px;
    max-width: 900px
}

.company-header .nheader .infos .content .tags .ntag {
    cursor: pointer;
    margin: 3px 4px
}

.company-header .nheader .infos .content .tags .tags-hover {
    max-width: 300px;
    font-size: 12px
}

.company-header .nheader .infos .content .newtags {
    margin-top: 5px;
    margin-bottom: -8px;
    white-space: nowrap;
    max-width: 950px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.company-header .nheader .infos .content .newtags .tag {
    color: #999;
    margin: 3px 5px;
    display: inline-block
}

.company-header .nheader .infos .content .newtags .tag:hover {
    color: #128bed
}

.company-header .nheader .infos .content .newtags-modal .tag-cell {
    margin-bottom: 15px
}

.company-header .nheader .infos .content .newtags-modal .tag-cell h4 {
    font-weight: normal;
    color: #333;
    position: relative
}

.company-header .nheader .infos .content .newtags-modal .tag-cell h4:before {
    content: " ";
    position: absolute;
    width: 2px;
    height: 14px;
    background: #128bed;
    left: -6px;
    top: 1px
}

.company-header .nheader .infos .content .newtags-modal .tag-cell .tag {
    color: #999;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 4px
}

.company-header .nheader .infos .content .newtags-modal .tag-cell .tag:hover {
    color: #128bed
}

.company-header .nheader .infos .content .contact-info {
    position: relative;
    padding: 4px 12px;
    background: rgba(0, 132, 255, 0.04);
    margin-top: 15px;
    margin-bottom: 5px;
    line-height: 2
}

.company-header .nheader .infos .content .contact-info .rline {
    margin-top: 4px;
    margin-bottom: 4px
}

.company-header .nheader .infos .content .contact-info .rline .f {
    color: #666;
    display: inline-block
}

.company-header .nheader .infos .content .contact-info .rline .f .val {
    color: #000
}

.company-header .nheader .infos .content .contact-info .rline .f .texta {
    color: #000
}

.company-header .nheader .infos .content .contact-info .rline .f .texta:hover {
    color: #128bed
}

.company-header .nheader .infos .content .contact-info .rline .f.ca {
    width: 360px
}

.company-header .nheader .infos .content .contact-info .rline .f.cx {
    width: 200px
}

.company-header .nheader .infos .content .contact-info .rline.extend-text .f {
    max-width: 920px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom
}

.company-header .nheader .infos .content .contact-info .dcert {
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 4px 10px;
    font-size: 12px;
    color: #999;
    background: #eff6ff;
    border-radius: 0px 0px 0px 14px
}

.company-header .nheader .infos .content .oxin-access {
    margin-top: 10px
}

.company-header .nheader .infos .content .oxin-access .item {
    position: relative;
    float: left;
    width: 257px;
    position: relative;
    background: #f6faff;
    padding: 6px 4px 6px 58px;
    white-space: normal;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.company-header .nheader .infos .content .oxin-access .item:not(:last-child) {
    margin-right: 10px
}

.company-header .nheader .infos .content .oxin-access .oxin-name {
    color: #444;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.company-header .nheader .infos .content .oxin-access .oxin-desc {
    color: #999;
    font-size: 12px
}

.company-header .nheader .infos .content .oxin-access .oxin-desc .f {
    margin-right: 10px
}

.company-header .nheader .infos .content .oxin-access .oxin-logo {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    border-radius: 5px
}

.company-header .nheader .infos .content .oxin-access .oxin-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    font-size: 20px;
    left: 10px;
    top: 7px;
    color: #128bed;
    vertical-align: middle;
    border: solid 1px #eee;
    border-radius: 6px;
    background-color: #fff;
    padding-top: 4px;
    padding-left: 7px
}

.company-header .nheader .infos .content .oxin-access .icon-icon_new {
    top: 3px;
    left: 117px
}

.company-header .nheader .infos .content .oxin-access .oxin-img {
    position: absolute;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/oxin-f620463b.png);
    background-size: 320px 40px;
    left: 10px;
    top: 7px
}

.company-header .nheader .infos .content .oxin-access .oxin-img.ccxs {
    background-position: 0px 0px
}

.company-header .nheader .infos .content .oxin-access .oxin-img.ssjt {
    background-position: -160px 0px
}

.company-header .nheader .infos .content .oxin-access .oxin-img.cpxx {
    background-position: -240px 0px
}

.company-header .nheader .infos .content .oxin-access .oxin-img.tzjg {
    background-position: -200px 0px
}

.company-header .nheader .infos .content .oxin-access .oxin-img.gqct {
    background-position: -40px 0px
}

.company-header .nheader .infos .content .oxin-access .oxin-img.qytp {
    background-position: -80px 0px
}

.company-header .nheader .infos .content .oxin-access .oxin-img.jzgc {
    background-position: -280px 0px
}

.company-header .nheader .company-action {
    position: absolute;
    right: 20px;
    text-align: right;
    top: 20px;
    white-space: normal
}

.company-header .nheader .company-action .action-btn {
    height: 32px;
    border: 1px solid #128bed;
    color: #128bed;
    background-color: #fff;
    font-size: 14px;
    line-height: 30px;
    padding: 0px 6px 0px 8px;
    display: inline-block;
    border-radius: 2px;
    position: relative
}

.company-header .nheader .company-action .action-btn .count {
    color: #999
}

.company-header .nheader .company-action .action-btn:not(:first-child) {
    margin-left: 5px
}

.company-header .nheader .company-action .action-btn .aicon {
    margin-right: 2px;
    color: #128bed
}

.company-header .nheader .company-action .action-btn .bicon {
    margin-right: 2px
}

.company-header .nheader .company-action .action-btn.report .bicon {
    background-position: -44px -88px
}

.company-header .nheader .company-action .action-btn.postcard .bicon {
    background-position: -22px -66px
}

.company-header .nheader .company-action .action-btn.note .bicon {
    background-position: -22px -44px
}

.company-header .nheader .company-action .action-btn.monitor .bicon {
    background-position: -44px -22px
}

.company-header .nheader .company-action .action-btn.follow .bicon {
    background-position: -44px 0px
}

.company-header .nheader .company-action .action-btn.crm .bicon {
    background-position: 0px 0px
}

.company-header .nheader .company-action .action-btn.monitor, .company-header .nheader .company-action .action-btn.follow, .company-header .nheader .company-action .action-btn.crm {
    color: #fff;
    background-color: #128bed
}

.company-header .nheader .company-action .action-btn:hover {
    color: #fff;
    background-color: #146ca4;
    border-color: transparent
}

.company-header .nheader .company-action .action-btn:hover .aicon {
    color: #fff
}

.company-header .nheader .company-action .action-btn:hover.postcard .bicon, .company-header .nheader .company-action .action-btn:hover.note .bicon {
    background-position-x: -44px
}

.company-header .nheader .company-action .action-btn:hover .count {
    color: #fff
}

.company-header .nheader .company-action .action-btn.report:hover .bicon {
    background-position: 0px -66px
}

.company-header .nheader .company-action .action-btn.follow.active, .company-header .nheader .company-action .action-btn.monitor.active, .company-header .nheader .company-action .action-btn.crm.active {
    color: #666;
    border: 1px solid #eee;
    background-color: #fff
}

.company-header .nheader .company-action .action-btn.follow.active .bicon {
    background-position: -22px 0px
}

.company-header .nheader .company-action .action-btn.monitor.active .bicon {
    background-position: -22px -22px
}

.company-header .nheader .company-action .action-btn.crm.active .bicon {
    background-position: -22px 0
}

.company-header .nheader .company-action .jk-popover {
    width: 240px
}

.company-header .nheader .company-action .jk-popover img {
    width: 240px;
    display: block
}

.company-header .nheader .company-action .jk-popover .radar-text {
    margin-top: 10px;
    color: #333;
    font-size: 12px
}

.company-header .nheader .company-action .crm-popover {
    width: 270px
}

.company-header .nheader .company-action .crm-popover img {
    width: 270px;
    display: block
}

.company-header .nheader .company-action .monitor-text {
    position: absolute;
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    white-space: nowrap;
    text-align: center;
    background: #F9AD14;
    border-radius: 6px 0px 6px 0px;
    padding-left: 6px;
    padding-right: 6px;
    color: #fff;
    top: -20px;
    left: -1px;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transform-origin: 0 100% 0;
    -ms-transform-origin: 0 100% 0;
    transform-origin: 0 100% 0
}

.company-header .nheader .update-company {
    position: absolute;
    right: 20px;
    top: 65px;
    text-align: right
}

@-webkit-keyframes update-spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transition: all 2s;
        -o-transition: all 2s;
        transition: all 2s
    }
}

@keyframes update-spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transition: all 2s;
        -o-transition: all 2s;
        transition: all 2s
    }
}

.company-header .nheader .update-company.updating .bicon {
    -webkit-animation: update-spin 2s linear infinite;
    animation: update-spin 2s linear infinite
}

.company-header .nheader .bicon-phoneview {
    position: absolute;
    right: 0px;
    top: 6px
}

.company-header .nheader .renzheng-panel {
    width: 470px;
    height: 126px;
    font-size: 13px;
    line-height: 1.8
}

.company-header .nheader .renzheng-panel img {
    width: 168px;
    float: left
}

.company-header .nheader .renzheng-panel .btn {
    width: 98px;
    margin-top: 15px;
    margin-left: 60px
}

.company-header .war-link {
    color: #ff722d !important
}

.company-header .max-150, .company-header .max-220 {
    display: inline-block;
    overflow-x: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    vertical-align: bottom
}

.company-header .max-150 {
    max-width: 150px
}

.company-header .max-220 {
    max-width: 220px
}

.company-header .head—dz {
    min-width: 600px
}

.company-centbar {
    height: 64px;
    background: #fff;
    border: solid 1px #eee;
    margin-top: 15px
}

.company-centbar .dcell {
    float: left;
    position: relative;
    padding: 10px 0 10px 115px
}

.company-centbar .dcell .hcon {
    position: absolute;
    background-size: 80px 20px;
    background-repeat: no-repeat;
    background-position: center;
    width: 120px;
    height: 64px;
    left: 0px;
    top: 0px;
    z-index: 2
}

.company-centbar .dcell .tcon {
    height: 42px;
    overflow: hidden;
    padding: 4px 6px
}

.company-centbar .dcell .tcon .fx-txs {
    float: left;
    width: 450px
}

.company-centbar .dcell .tcon .fx-txs .self-risk-filter {
    background-color: rgba(253, 72, 94, 0.04);
    margin: -4px -6px;
    padding: 4px 6px
}

.company-centbar .dcell .tcon .fx-txs .fx-tx {
    display: inline-block;
    width: 77px;
    text-align: center;
    margin-right: 10px
}

.company-centbar .dcell .tcon .fx-txs .fx-tx .name {
    color: #333
}

.company-centbar .dcell .tcon .fx-txs .fx-tx .count {
    font-size: 13px;
    line-height: 1
}

.company-centbar .dcell .tcon .fx-txs .fx-tx.disable {
    cursor: default
}

.company-centbar .dcell .tcon .fx-txs .fx-tx.disable > * {
    color: #999
}

.company-centbar .dcell .tcon .aicon {
    position: relative;
    top: 3px;
    margin-left: 5px
}

.company-centbar .dcell .tcon .dt-scroll {
    float: left;
    width: 300px;
    line-height: 34px;
    height: 34px;
    overflow: hidden;
    position: relative;
    padding-left: 10px
}

.company-centbar .dcell .tcon .dt-scroll .item .name {
    display: inline-block;
    width: 270px;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    vertical-align: bottom;
    color: #333
}

.company-centbar .dcell .tcon .btn {
    font-size: 12px;
    margin-top: 2px
}

.company-centbar .dcell.fx {
    width: 56%
}

.company-centbar .dcell.fx .hcon {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/centbar_fx-9c2b88e1.png)
}

.company-centbar .dcell.fx .tcon {
    background-color: rgba(253, 72, 94, 0.04)
}

.company-centbar .dcell.dt {
    width: 44%
}

.company-centbar .dcell.dt .hcon {
    background-image: url(../../images/website/company/centbar_dt-9fedf166.png)
}

.company-centbar .dcell.dt .tcon {
    background-color: #F6FAFF;
    margin-right: 20px
}

.company-centbar .dcell.dt.full {
    width: 100%
}

.app-tab-nav {
    height: 44px;
    position: relative;
    margin-top: 15px;
    margin-bottom: -1px
}

.app-tab-nav .nav-bar {
    position: absolute;
    height: 44px;
    width: 100%;
    margin: 0px;
    border: 1px solid #eee;
    overflow: hidden;
    z-index: 66;
    background: #fcfcfc
}

.app-tab-nav .nav-bar:hover {
    background: #fff
}

.app-tab-nav .nav-bar.hover {
    overflow: visible
}

.app-tab-nav .nav-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden
}

.app-tab-nav .nav-head .nav-tab {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center
}

.app-tab-nav .nav-head .nav-tab h2 {
    display: block;
    font-size: 16px;
    color: #333;
    margin: 0px;
    height: 44px;
    line-height: 42px
}

.app-tab-nav .nav-head .nav-tab h2 .count {
    font-size: 12px;
    color: #999
}

.app-tab-nav .nav-head .nav-tab.active {
    -webkit-box-shadow: 0px 2px 2px 0px rgba(140, 140, 140, 0.3);
    box-shadow: 0px 2px 2px 0px rgba(140, 140, 140, 0.3)
}

.app-tab-nav .nav-head .nav-tab.active h2 {
    color: #128bed;
    background: #fff;
    font-weight: bold
}

.app-tab-nav .nav-head .nav-tab.active h2 .count {
    font-weight: 500
}

.app-tab-nav .nav-head .nav-tab.hover {
    background: #fcfcfc;
    -webkit-box-shadow: 0px 2px 2px 0px rgba(140, 140, 140, 0.3);
    box-shadow: 0px 2px 2px 0px rgba(140, 140, 140, 0.3)
}

.app-tab-nav .nav-head .nav-tab h2.vip {
    color: #d2a874;
    background-image: url(../../images/website/company/icon_vip_tag-53a3d7fe.png);
    background-size: 20px 9px;
    background-position: 105px 5px;
    background-repeat: no-repeat
}

.app-tab-nav .nav-contain {
    position: absolute;
    width: 100%;
    z-index: 100;
    background-color: #fff;
    -webkit-box-shadow: 0px 2px 2px 0px rgba(140, 140, 140, 0.3);
    box-shadow: 0px 2px 2px 0px rgba(140, 140, 140, 0.3);
    margin-top: -2px;
    border-top: solid 1px #f3f3f3;
    max-height: calc(100vh - 120px);
    overflow: hidden
}

.app-tab-nav .nav-contain .nav-contain-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.app-tab-nav .nav-contain .nav-colunm {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 5px
}

.app-tab-nav .nav-contain .nav-colunm:not(:last-child) {
    border-right: solid 1px #f3f3f3
}

.app-tab-nav .nav-contain .nav-colunm .items-contain {
    width: 100%;
    padding-left: 5px;
    margin: auto
}

.app-tab-nav .nav-contain .nav-colunm .items-contain .item-wrap {
    position: relative
}

.app-tab-nav .nav-contain .nav-colunm .items-contain .item {
    display: block;
    padding-top: 1px;
    padding-bottom: 1px;
    letter-spacing: 0;
    font-size: 13px;
    padding: 2px 0px;
    color: #333;
    width: 100%
}

.app-tab-nav .nav-contain .nav-colunm .items-contain .item .count {
    font-size: 12px
}

.app-tab-nav .nav-contain .nav-colunm .items-contain .item:hover {
    color: #128bed
}

.app-tab-nav .nav-contain .nav-colunm .items-contain .item.disable {
    color: #999 !important;
    cursor: not-allowed
}

.app-tab-nav .nav-contain .nav-colunm .items-contain .item .zw {
    position: absolute
}

.app-tab-nav .nav-contain .nav-colunm .items-contain .ntag {
    position: absolute;
    right: -5px;
    top: 1px;
    font-size: 12px;
    height: auto;
    padding: 2px 4px;
    float: right;
    margin: 0px;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    z-index: 2
}

.app-tab-nav .nav-contain .nav-colunm .items-contain .ntag[data-placement="bottom"] + .tooltip {
    margin-left: -5px
}

.app-tab-nav .nav-contain .nav-colunm .items-contain .ntag[data-placement="bottom"] + .tooltip .tooltip-inner {
    border: none;
    white-space: nowrap
}

.app-tab-nav .nav-contain .nav-colunm .items-contain .ntag.text-danger + .tooltip .tooltip-inner {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #ffe9e7;
    color: #fd485e
}

.app-tab-nav .nav-contain .nav-colunm .items-contain .ntag.tag-detail {
    display: inline-block;
    width: 36px;
    height: 18px;
    top: 3px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/tab-nav-detail-cd03c948.png);
    background-repeat: no-repeat;
    background-size: 36px 18px
}

.app-tab-nav .nav-contain .nav-colunm .items-contain .ntag.tag-detail.hover-fill:hover {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/tab-nav-detail-hover-c51a3fb6.png)
}

.app-tab-nav .nav-contain .nav-colunm .items-contain .ntag.h-tag-detail-fill:hover {
    color: #fff;
    background-color: #FF6060
}

.app-tab-nav .nav-contain .nav-colunm .items-contain .ntag.h-tag-history-fill:hover {
    color: #fff;
    background-color: #FF8900
}

.app-tab-nav .nav-contain .nav-colunm .items-contain .ntag.tag-history {
    display: inline-block;
    width: 36px;
    height: 18px;
    top: 3px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/tab-nav-his-0c488ad4.png);
    background-repeat: no-repeat;
    background-size: 36px 18px
}

.app-tab-nav .nav-contain .nav-colunm .items-contain .ntag.tag-history.hover-fill:hover {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/tab-nav-his-hover-618d51df.png)
}

.app-tab-nav .nav-contain .nav-colunm.hover {
    background: #fcfcfc
}

.app-tab-nav.fixed .nav-bar {
    position: fixed;
    top: 56px;
    width: 1220px;
    z-index: 1001
}

.app-tab-nav.is-ie .nav-tab {
    display: inline-block;
    min-width: 133px
}

.company-footer .nco-bottom {
    padding: 10px 0px
}

.company-footer .nco-bottom .item {
    float: left;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 15px;
    color: #999
}

.company-footer .nco-bottom .item .img {
    width: 54px;
    height: 54px;
    border-radius: 6px;
    float: left
}

.company-footer .nco-bottom .item .img > img {
    height: 54px;
    width: 54px;
    border-radius: 6px;
    border: solid 1px #eee;
    -o-object-fit: contain;
    object-fit: contain
}

.company-footer .nco-bottom .item .content {
    padding-left: 10px;
    padding-right: 5px;
    height: 54px;
    display: table-cell;
    vertical-align: middle
}

.company-footer .nco-bottom .item .title, .company-footer .nco-bottom .item .subtitle {
    width: 158px;
    white-space: nowrap;
    word-break: keep-all;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.company-footer .nco-bottom .item .title a {
    color: #333
}

.company-footer .nco-bottom .item .subtitle a {
    color: #999
}

.company-footer .nco-bottom .item a:hover {
    color: #128bed
}


.company-detail-loading {
    height: 800px
}

.company-detail-loading .loading-stat {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 99999999;
    text-align: center
}

.company-detail-loading .loading-stat .status {
    width: 400px;
    height: 400px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -200px 0 0 -200px;
    padding-top: 30px
}

.company-detail-loading .loading-stat .status .app-loading {
    height: 100px;
    margin-bottom: 40px
}

.company-detail-loading .loading-stat .status .btns {
    margin-top: 25px
}

.company-detail-loading .loading-stat .status .btns .btn {
    width: 82px;
    margin-right: 5px;
    margin-left: 5px
}

.company-detail .company-data {
    background: #fff;
    border: solid 1px #eee;
    padding: 25px 15px 15px 15px
}

.company-detail .company-data .data-section {
    margin-bottom: 35px
}

.company-detail .company-data .data-section nav.clearfix .pagination {
    margin-bottom: 15px
}

.company-detail .company-data .sub-section:not(:last-child) {
    margin-bottom: 20px
}

.company-detail .company-data .source-from {
    color: #999;
    margin-bottom: 50px
}

.company-detail .company-data > .nodata {
    padding-top: 100px !important;
    padding-bottom: 120px !important
}

.company-detail .company-data .pay-insert {
    background-size: 1186px 838px;
    background-position: top;
    background-repeat: no-repeat;
    padding: 10px
}

.company-detail .company-data .pay-insert .pay-panel {
    width: 780px;
    border: solid 1px #eee;
    background-color: #fff;
    margin: 80px auto
}

.company-detail .base-opertd .name > a {
    font-size: 16px
}

.company-detail .nav-area > a {
    color: #999
}

.company-detail.oversea .title-china {
    font-size: 22px;
    color: #999
}

.company-detail.oversea .contact-info .rline {
    display: inline-block
}

.company-detail.oversea .contact-info .rline:nth-of-type(odd) {
    min-width: 350px;
    margin-right: 30px
}

.company-detail.oversea .contact-info .rline:nth-of-type(even) {
    min-width: 350px;
    max-width: 600px
}

.company-detail.oversea .data-section td {
    max-width: 500px
}

.company-detail.oversea .data-section td .date-span {
    width: 80px;
    display: inline-block
}


.a-stock-main .operation-analysis .business-charts .chart-item {
    float: left;
    width: 389px;
    height: 300px;
    border: 1px solid #E4EEF6;
    padding: 10px;
    margin-left: 10px
}

.a-stock-main .operation-analysis .business-charts .chart-item:first-child {
    margin-left: 0
}

.a-stock-main .operation-analysis .business-charts .chart-item .chart-title {
    color: #999;
    line-height: 22px;
    font-size: 14px
}

.a-stock-main .operation-analysis .business-charts .chart-item .app-echarts {
    margin-top: 9px
}

.a-stock-main .operation-analysis .business-table {
    margin-top: 20px
}


.stock-structure .chart-wrap[data-v-61403e7c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.stock-structure .chart-wrap .chart[data-v-61403e7c] {
    width: calc((100% - 20px) / 3);
    height: 309px;
    margin-right: 10px;
    border: 1px solid #E4EEF6
}

.stock-structure .chart-wrap .chart[data-v-61403e7c]:last-child {
    margin-right: 0
}

.stock-structure .chart-wrap .chart .chart-title[data-v-61403e7c] {
    font-size: 14px;
    color: #999;
    padding: 10px
}

.stock-structure .chart-wrap .table[data-v-61403e7c] {
    width: 33.3%
}

.stock-structure .chart-wrap .table table[data-v-61403e7c] {
    width: 100%
}

.stock-structure .chart-wrap .table table td[data-v-61403e7c] {
    border: 1px solid #E4EEF6;
    height: 44px;
    padding: 0 10px
}

.stock-structure .chart-wrap .table table td.chart-title[data-v-61403e7c] {
    width: 150px;
    background: #F2F9FC
}

.stock-structure .chart-wrap .table table td.chart-value[data-v-61403e7c] {
    text-align: right
}

.a-stock-tabel-slide .slide-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    border: 1px solid #E4EEF6
}

.a-stock-tabel-slide .slide-wrap .label-t {
    height: 44px;
    line-height: 44px;
    padding: 0 10px;
    color: #333;
    border-right: 1px solid #E4EEF6;
    border-bottom: 1px solid #E4EEF6
}

.a-stock-tabel-slide .slide-wrap .slide-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #F2F9FC;
    width: 266px
}

.a-stock-tabel-slide .slide-wrap .slide-title .label-t:last-child {
    border-bottom: none
}

.a-stock-tabel-slide .slide-wrap .slider-container {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    white-space: nowrap;
    overflow-x: auto
}

.a-stock-tabel-slide .slide-wrap .slide-list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.a-stock-tabel-slide .slide-wrap .slide-list .item {
    text-align: right;
    min-width: 105px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.a-stock-tabel-slide .slide-wrap .slide-list .item:last-child .label-t {
    border-right: none
}

.a-stock-tabel-slide .slide-wrap .slide-list .item div:last-child .label-t {
    border-bottom: none
}

.partner-numbers .bar-table-wrap {
    border: 1px solid #E4EEF6;
    width: 100%;
    margin-bottom: 20px
}

.partner-numbers .bar-table-wrap .bar-table-title {
    font-size: 14px;
    color: #999;
    padding: 10px
}


.org-own-summary .bar-table-wrap {
    border: 1px solid #E4EEF6;
    width: 100%;
    margin-bottom: 20px
}

.org-own-summary .bar-table-wrap .bar-table-title {
    font-size: 14px;
    color: #999;
    padding: 10px
}

.org-own-detail .chart-pie-wrap[data-v-1b70d43d] {
    width: 100%;
    height: 300px;
    border: 1px solid #E4EEF6;
    padding: 10px
}

.org-own-detail .chart-pie-wrap .chart-title[data-v-1b70d43d] {
    font-size: 14px;
    color: #999
}

.org-own-detail .scroll-tab-wrap[data-v-1b70d43d] {
    margin-top: 25px;
    cursor: pointer
}

.org-own-detail .scroll-tab-wrap .scroll-tab[data-v-1b70d43d] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.org-own-detail .scroll-tab-wrap .scroll-tab .tab[data-v-1b70d43d] {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    margin-right: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative
}

.org-own-detail .scroll-tab-wrap .scroll-tab .tab.active[data-v-1b70d43d] {
    color: #128bed
}

.org-own-detail .scroll-tab-wrap .scroll-tab .tab.active .line-blue-border[data-v-1b70d43d] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    background-color: #128bed
}

.org-own-detail .institution-table[data-v-1b70d43d] {
    margin-top: 15px
}

.first-round-susmmary table[data-v-46a3a2f3] {
    width: 100%
}

.first-round-susmmary table td[data-v-46a3a2f3] {
    border: 1px solid #E4EEF6;
    height: 44px;
    line-height: 44px;
    padding: 0 10px
}

.first-round-susmmary table td.first-title[data-v-46a3a2f3] {
    width: 150px;
    background-color: #F2F9FC
}

.increase-round-susmmary table[data-v-6fb233f7] {
    width: 100%;
    border: 1px solid #E4EEF6
}

.increase-round-susmmary table td[data-v-6fb233f7] {
    height: 44px;
    line-height: 44px;
    padding: 0 10px
}

.increase-round-susmmary table td.first-title[data-v-6fb233f7] {
    width: 150px;
    background-color: #F2F9FC
}

.increase-round-susmmary table td.first-title.first-title-s[data-v-6fb233f7] {
    border: 1px solid #E4EEF6
}

.increase-round-susmmary table td.first-value[data-v-6fb233f7] {
    border: 1px solid #E4EEF6
}

.announcement-date {
    font-size: 14px;
    color: #999;
    position: relative;
    top: 2px
}


.a-stock-main .interaction-list ul {
    padding: 0
}

.a-stock-main .interaction-list .interaction-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #E4EEF6;
    border-top: 0;
    padding: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.a-stock-main .interaction-list .interaction-item:first-child {
    border-top: 1px solid #E4EEF6
}

.a-stock-main .interaction-list .interaction-item:hover {
    background: #F5F9FF
}

.a-stock-main .interaction-list .interaction-item .item-left > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.a-stock-main .interaction-list .interaction-item .item-left > div .desc {
    max-width: 840px;
    margin-left: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    line-height: 20px
}

.a-stock-main .interaction-list .interaction-item .item-left .answer {
    margin-top: 12px
}

.a-stock-main .interaction-list .interaction-item .item-left .answer .icon {
    border: 1px solid #A7CDEE;
    color: #128BED;
    background: #DFF4FF
}

.a-stock-main .interaction-list .interaction-item .item-left .answer .desc {
    color: #666;
    font-weight: normal
}

.a-stock-main .interaction-list .interaction-item .item-right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    color: #999;
    text-align: right;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.a-stock-main .interaction-list .interaction-item .item-right .date {
    margin-left: 20px
}

.a-stock-main .interaction-list .interaction-item .icon {
    width: 20px;
    min-width: 20px;
    font-size: 12px;
    height: 20px;
    line-height: 18px;
    border: 1px solid #7BCAAB;
    color: #39956D;
    background: #DFF8EC;
    border-radius: 2px;
    text-align: center;
    font-weight: bold
}

.a-stock-main .tab-module-container .ntable .show-more {
    color: #999;
    cursor: pointer
}

.a-stock-main .tab-module-container .ntable .show-more:hover {
    color: #128bed
}

.a-stock-main .company-header .nheader .infos {
    min-height: 140px
}

.a-stock-main .company-header .tag-list .tag {
    display: inline-block;
    line-height: 20px;
    font-size: 12px;
    color: #128BED;
    padding: 1px 6px;
    background: #E7F4FF;
    border-radius: 2px;
    margin-right: 10px
}

.a-stock-main .company-header .tag-list .tag-yellow {
    color: #F5A622;
    background: #FFF2DE;
    cursor: pointer
}

.a-stock-main .company-header .tag-list .tag-yellow .fa {
    vertical-align: 2px
}

.a-stock-main .company-header .quota-bar {
    padding: 5px 20px 10px 20px;
    background: #F6FAFF;
    margin-top: 10px;
    overflow: hidden
}

.a-stock-main .company-header .quota-bar > div {
    float: left
}

.a-stock-main .company-header .quota-bar .quota-left {
    color: #666;
    line-height: 20px;
    font-size: 12px
}

.a-stock-main .company-header .quota-bar .quota-left .overview {
    height: 38px;
    color: #333;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold
}

.a-stock-main .company-header .quota-bar .quota-left .overview.gray {
    color: #bbb
}

.a-stock-main .company-header .quota-bar .quota-left .overview.red {
    color: #FF6060
}

.a-stock-main .company-header .quota-bar .quota-left .overview.green {
    color: #00AD65
}

.a-stock-main .company-header .quota-bar .quota-left .overview.delist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.a-stock-main .company-header .quota-bar .quota-left .overview span {
    display: inline-block
}

.a-stock-main .company-header .quota-bar .quota-left .overview .current-price {
    font-size: 22px;
    display: inline-block;
    margin-right: 10px
}

.a-stock-main .company-header .quota-bar .quota-left .overview .current-price span {
    line-height: 38px
}

.a-stock-main .company-header .quota-bar .quota-left .overview .current-price img {
    width: 12px
}

.a-stock-main .company-header .quota-bar .quota-left .overview .quota-small {
    margin-left: 10px
}

.a-stock-main .company-header .quota-bar .quota-left .overview .quota-small:first-of-type {
    margin-left: 0
}

.a-stock-main .company-header .quota-bar .quota-right {
    padding-left: 7px
}

.a-stock-main .company-header .quota-bar .quota-right .bar-col {
    float: left;
    margin-left: 40px
}

.a-stock-main .company-header .quota-bar .quota-right .bar-model {
    margin-top: 10px
}

.a-stock-main .company-header .quota-bar .quota-right .bar-model:first-child {
    margin-top: 5px
}

.a-stock-main .company-header .quota-bar .quota-right .bar-model > div {
    float: left;
    font-size: 14px;
    line-height: 22px;
    color: #333
}

.a-stock-main .company-header .quota-bar .quota-right .bar-model .bar-label {
    color: #666
}

.a-stock-main .company-header .a-stock-tags {
    padding: 10px;
    background: #F6FAFF;
    margin-top: 10px
}

.a-stock-main .company-header .a-stock-tags > div {
    float: left
}

.a-stock-main .company-header .a-stock-tags .tag-title {
    width: 66px;
    height: 14px;
    padding-right: 10px;
    position: relative
}

.a-stock-main .company-header .a-stock-tags .tag-title > img {
    height: 12px
}

.a-stock-main .company-header .a-stock-tags .tag-title:before {
    content: '';
    width: 1px;
    height: 100%;
    background: #eee;
    position: absolute;
    top: 4px;
    right: 0
}

.a-stock-main .company-header .a-stock-tags .tag-list {
    width: 970px;
    margin-top: -10px
}

.a-stock-main .company-header .a-stock-tags .tag-list .tag-item {
    float: left;
    margin-left: 10px;
    margin-top: 10px
}

.a-stock-main .company-header .a-stock-tags .tag-list .tag-item > span {
    font-size: 12px;
    color: #666;
    line-height: 20px;
    padding: 1px 6px;
    background: #fff;
    border-radius: 2px;
    display: inline-block
}

.a-stock-main .company-header .a-stock-tags .tag-list .tag-item > span.ant-popover-open {
    color: #128BED
}

.a-stock-main .company-header .a-stock-tags .tag-list .tag-item.tag-item-click {
    cursor: pointer
}

.a-stock-main .company-header .a-stock-tags .tag-list .tag-item .ant-popover {
    max-width: 600px
}

.a-stock-main > .container {
    margin-top: 15px
}

.a-stock-main > .container .navs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #fff
}

.a-stock-main > .container .navs > .navs-item {
    font-size: 15px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background-color: #fcfcfc;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    border-right: 1px solid #eee;
    cursor: pointer
}

.a-stock-main > .container .navs > .navs-item:first-child {
    border-left: 1px solid #eee
}

.a-stock-main > .container .navs > .navs-item.selected {
    color: #128BED;
    font-weight: bold
}

.a-stock-main > .container .main-content {
    background: #fff
}

.a-stock-main > .container .sub-navs {
    padding: 15px 0 15px 15px;
    border-bottom: 1px solid #eee;
    background: #fff
}

.a-stock-main > .container .sub-navs .sub-nav-item {
    height: 32px;
    line-height: 32px;
    border: 1px solid #eee;
    padding: 0 10px;
    font-size: 13px;
    color: #666;
    margin-right: 15px;
    cursor: pointer;
    display: inline-block
}

.a-stock-main > .container .sub-navs .sub-nav-item.selected, .a-stock-main > .container .sub-navs .sub-nav-item:hover {
    background: #128BED;
    color: #fff;
    border: 1px solid #128BED
}

.a-stock-main > .container .sub-navs .sub-nav-item.disabled {
    background: #eee;
    color: #666;
    border: 1px solid #eee
}

.a-stock-main > .container .tab-content {
    border: 1px solid #eee;
    border-top: none
}

.a-stock-main > .container .tab-content .tab-module {
    padding: 0 15px 35px 15px
}

.a-stock-main > .container .tab-content .tab-module .tab-module-container > div {
    padding: 35px 0 15px 0
}

.a-stock-main > .container .tab-content .tab-module .tab-module-container > section {
    padding: 35px 0 15px 0
}

.a-stock-main > .container .tab-content .tab-module .tab-module-container .ntable {
    margin-bottom: 0
}

.a-stock-main > .container .tab-content .tab-module .tab-module-container .app-ntable .pagination {
    margin-top: 20px
}

.a-stock-main > .container .tab-content .tab-module .tab-module-page {
    text-align: right;
    margin-top: 20px;
    margin-right: -10px
}

.a-stock-main > .container .tab-content .tab-module #financialanalysis .tchart-table {
    margin-bottom: 0
}

.a-stock-main > .container .tab-content .tab-module .institution-module {
    margin-top: 20px
}

.a-stock-main > .container .app-ntable .ntable .oper-detail {
    color: #128BED;
    cursor: pointer;
    word-break: keep-all
}

.a-stock-main .bar-table {
    padding: 12px 15px 20px 10px
}

.a-stock-main .bar-table .bar-item {
    padding: 4px 0
}

.a-stock-main .bar-table .bar-item .bar-title {
    font-size: 13px;
    color: #333;
    line-height: 18px
}

.a-stock-main .bar-table .bar-item .bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 2px
}

.a-stock-main .bar-table .bar-item .bar-bg {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 8px;
    background: #F3F3F3;
    border-radius: 1px;
    position: relative
}

.a-stock-main .bar-table .bar-item .bar-progress {
    width: 0px;
    height: 100%;
    position: absolute;
    background: #128BED;
    border-radius: 1px;
    left: 0;
    top: 0
}

.a-stock-main .bar-table .bar-item .bar-count {
    width: 60px;
    min-width: 60px;
    text-align: right;
    font-size: 11px;
    line-height: 16px;
    color: #333
}

.a-stock-main-fixed > .container .navs {
    width: 1220px;
    z-index: 99;
    position: fixed;
    top: 56px
}

.a-stock-main-fixed > .container .sub-navs {
    width: 1220px;
    z-index: 99;
    position: fixed;
    top: 100px;
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05)
}

.a-stock-main-fixed > .container .fixed-holder {
    height: 106px
}

.tag-wrapper[data-v-e9f7e350] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.tag-wrapper .tag[data-v-e9f7e350] {
    line-height: 20px;
    height: 20px;
    padding: 0 4px;
    margin: 10px 10px 0 0;
    font-size: 12px;
    border-radius: 2px;
    background-color: #eee;
    cursor: pointer
}

.tag-wrapper .tag.tec[data-v-e9f7e350] {
    background: #E9F1FF;
    color: #367DFF
}

.tag-wrapper .tag.type[data-v-e9f7e350] {
    background: #EDEEFF;
    color: #6171FF
}

.tag-wrapper .tag.pubish[data-v-e9f7e350] {
    background: #FFECEC;
    color: #FF6060
}

.tag-wrapper .tag.ipr[data-v-e9f7e350] {
    background: #E3F6EE;
    color: #00AD65
}

.tag-wrapper .tag.status[data-v-e9f7e350] {
    background: #E5F2FD;
    color: #128BED
}

.info[data-v-4a495fe8] {
    position: relative
}

.info > .npanel-body[data-v-4a495fe8] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px
}

.info > .npanel-body > .logo[data-v-4a495fe8] {
    margin-left: 0px;
    margin-right: 25px;
    border-radius: 8px
}

.info > .npanel-body > .logo img[data-v-4a495fe8] {
    width: 100px;
    height: 100px;
    border-radius: 8px
}

.info > .npanel-body > .content .tag-wrapper[data-v-4a495fe8] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.info > .npanel-body > .content .tag-wrapper .tag[data-v-4a495fe8] {
    line-height: 20px;
    height: 20px;
    padding: 0 4px;
    margin: 10px 10px 0 0;
    font-size: 12px;
    border-radius: 2px;
    background-color: #eee;
    cursor: pointer
}

.info > .npanel-body > .content .tag-wrapper .tag.tec[data-v-4a495fe8] {
    background: #E9F1FF;
    color: #367DFF
}

.info > .npanel-body > .content .tag-wrapper .tag.type[data-v-4a495fe8] {
    background: #EDEEFF;
    color: #6171FF
}

.info > .npanel-body > .content .tag-wrapper .tag.pubish[data-v-4a495fe8] {
    background: #FFECEC;
    color: #FF6060
}

.info > .npanel-body > .content .tag-wrapper .tag.ipr[data-v-4a495fe8] {
    background: #E3F6EE;
    color: #00AD65
}

.info > .npanel-body > .content .tag-wrapper .tag.status[data-v-4a495fe8] {
    background: #E5F2FD;
    color: #128BED
}

.info > .npanel-body > .content > .title[data-v-4a495fe8] {
    font-size: 22px;
    color: #000;
    font-weight: bold;
    line-height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.info > .npanel-body > .content > .title.margin-b-15[data-v-4a495fe8] {
    margin-bottom: 15px
}

.info > .npanel-body > .content > .title > .tag-w[data-v-4a495fe8] {
    margin-left: 10px;
    font-weight: normal;
    display: inline-block;
    line-height: 20px;
    font-size: 12px;
    padding: 0 8px;
    border-radius: 2px;
    color: #128BED;
    border: 1px solid #128BED
}

.info > .npanel-body > .content > .extra[data-v-4a495fe8] {
    margin-top: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.info > .npanel-body > .content > .extra > .label[data-v-4a495fe8] {
    color: #666;
    font-size: 14px;
    font-weight: normal;
    padding-right: 0;
    padding-left: 0
}

.info > .npanel-body > .content > .extra > .value[data-v-4a495fe8] {
    color: #333;
    font-size: 14px;
    display: inline-block;
    margin-right: 40px
}

.info > .npanel-body > .content .clue-box[data-v-4a495fe8] {
    margin-top: 10px;
    width: 300px;
    height: 60px;
    background-color: #F6FAFF;
    padding: 10px 0 10px 10px;
    cursor: pointer
}

.info > .npanel-body > .content .clue-box .left[data-v-4a495fe8] {
    float: left;
    width: 40px;
    height: 40px
}

.info > .npanel-body > .content .clue-box .left img[data-v-4a495fe8] {
    width: 100%;
    height: 100%
}

.info > .npanel-body > .content .clue-box .right[data-v-4a495fe8] {
    float: left;
    margin: -3px 0 0 10px
}

.info > .npanel-body > .content .clue-box .right .text[data-v-4a495fe8] {
    font-size: 14px;
    color: #444
}

.info > .npanel-body > .content .clue-box .right .info[data-v-4a495fe8] {
    margin-top: 2px
}

.info > .npanel-body > .content .clue-box .right .info .item[data-v-4a495fe8] {
    font-size: 12px;
    color: #999
}

.info > .npanel-body > .content .clue-box .right .info .item + .item[data-v-4a495fe8] {
    margin-left: 10px
}

.info > .batch-identify[data-v-4a495fe8] {
    position: absolute;
    right: 20px;
    top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #3c4144;
    border: 1px solid #128BED;
    border-radius: 2px;
    color: #128bed;
    padding: 3px 8px;
    font-size: 14px
}

.info > .batch-identify[data-v-4a495fe8]:hover {
    background-color: #128bed;
    color: #fff
}

.info > .batch-identify:hover .bg-icon[data-v-4a495fe8] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon-H@2x-c000a9aa.png) !important
}

.info > .batch-identify > .bg-icon[data-v-4a495fe8] {
    display: inline-block;
    height: 22px;
    width: 22px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon-c84e4f01.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

.group-risk-summary-tooltip-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 695px
}

.group-risk-summary-tooltip-content > .item-w {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.group-risk-summary-tooltip-content > .item-w .item {
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.group-risk-summary-tooltip-content > .item-w .item span.label {
    color: #666;
    font-weight: bold
}

.group-risk-summary-tooltip-content > .item-w .item span.value {
    display: inline-block;
    padding-left: 100px
}

.group-risk-summary-tooltip-content img {
    width: 240px;
    height: 108px
}

.risk-summary[data-v-00e5d9e0] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.risk-summary > .category[data-v-00e5d9e0] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.risk-summary > .category > .img[data-v-00e5d9e0] {
    width: 120px;
    height: 64px;
    background-size: 80px 20px;
    background-repeat: no-repeat;
    background-position: center
}

.risk-summary > .category > .img.case[data-v-00e5d9e0] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/case_info@2x-5d3f5170.png)
}

.risk-summary > .category > .img.scan[data-v-00e5d9e0] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/risk_title@2x-9c2b88e1.png)
}

.risk-summary > .category > .info[data-v-00e5d9e0] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 9px 12px 6px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.risk-summary > .category > .info > .item-wrapper[data-v-00e5d9e0] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background: rgba(253, 72, 94, 0.04)
}

.risk-summary > .category > .info > .item-wrapper > .item[data-v-00e5d9e0] {
    cursor: pointer;
    text-align: center;
    padding: 4px 0 0 8px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.risk-summary > .category > .info > .item-wrapper > .item > span.type[data-v-00e5d9e0] {
    color: #3c4144;
    display: block
}

.risk-summary > .category > .info > .item-wrapper > .item > span.value[data-v-00e5d9e0] {
    display: block;
    color: #FD485E
}

.risk-summary > .category > .info > .item-wrapper > .item > span.value.case-reason[data-v-00e5d9e0] {
    max-width: 150px;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.risk-summary > .category > .info > .item-wrapper > .item > .gray[data-v-00e5d9e0] {
    display: block;
    color: #999
}

.risk-summary > .category > .info[data-v-00e5d9e0]:last-child {
    padding-right: 20px
}

.risk-summary > .category > .info > .icon-w[data-v-00e5d9e0] {
    background: rgba(253, 72, 94, 0.04);
    height: 46px;
    line-height: 46px;
    padding-right: 12px
}


.investor .related-ent[data-v-926fdae4] {
    color: #FF722D;
    float: right
}

.button-list > .item[data-v-71a515a2] {
    height: 32px;
    line-height: 28px;
    background: #FCFCFC;
    border: solid 1px #eee;
    color: #666;
    display: inline-block;
    margin: 7px 14px 7px 0;
    padding: 0px 10px;
    padding-right: 0px
}

.button-list > .item.active[data-v-71a515a2], .button-list > .item[data-v-71a515a2]:hover {
    color: #fff;
    border-color: #128bed;
    background-color: #128bed
}

.button-list > .item.active > span.count[data-v-71a515a2], .button-list > .item:hover > span.count[data-v-71a515a2] {
    color: #fff !important
}

.button-list > .item .count[data-v-71a515a2] {
    float: right;
    padding-right: 6px
}

.button-list > .item.disabled[data-v-71a515a2] {
    background-color: #eee;
    border-color: #eee;
    color: #999;
    cursor: not-allowed
}


.news[data-v-3dca2288] .ntable td {
    border-left: solid 1px #eee;
    border-right: solid 1px #eee;
    border-bottom: solid 1px #eee
}

.news .pager-w[data-v-3dca2288] {
    float: right
}


.investor .related-ent[data-v-d3cbb212] {
    color: #FF722D;
    float: right
}


.count-info > .oper-count[data-v-5c2d5407] {
    font-size: 12px;
    padding: 4px 5px;
    color: #128BED;
    background: #E7F4FF;
    margin-right: 4px;
    border-radius: 2px
}

.count-info > .employee-count[data-v-5c2d5407] {
    font-size: 12px;
    padding: 4px 5px;
    color: #F5A623;
    background: #FFF2dE;
    margin-right: 4px;
    border-radius: 2px
}

.count-info > .admin-count[data-v-5c2d5407] {
    font-size: 12px;
    padding: 4px 5px;
    color: #00ad65;
    background: #e3f6ee;
    margin-right: 4px;
    border-radius: 2px
}

.group-navs .sub-nav-w .history[data-placement="bottom"] + .tooltip {
    margin-left: -5px
}

.group-navs .sub-nav-w .history[data-placement="bottom"] + .tooltip .tooltip-inner {
    border: none;
    white-space: nowrap
}

.group-navs .sub-nav-w .detail[data-placement="bottom"] + .tooltip {
    margin-left: -5px
}

.group-navs .sub-nav-w .detail[data-placement="bottom"] + .tooltip .tooltip-inner {
    border: none;
    white-space: nowrap;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #ffe9e7;
    color: #fd485e
}

.group-navs[data-v-bfcb8692] {
    position: relative
}

.group-navs .navs-wrapper[data-v-bfcb8692] {
    position: absolute;
    width: 1250px;
    background: #fff;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: solid 1px #eee
}

.group-navs .navs-wrapper > .navs-bar[data-v-bfcb8692] {
    position: absolute;
    width: 100%;
    margin: 0px;
    z-index: 66;
    background: #fcfcfc
}

.group-navs .navs-wrapper > .navs-bar > .navs-head[data-v-bfcb8692] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    border-bottom: 1px solid #eee
}

.group-navs .navs-wrapper > .navs-bar > .navs-head > .nav-tab[data-v-bfcb8692] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 100%;
    line-height: 42px;
    text-align: center;
    color: #333;
    position: relative;
    font-size: 16px
}

.group-navs .navs-wrapper > .navs-bar > .navs-head > .nav-tab[data-v-bfcb8692]:hover {
    background-color: #fcfcfc
}

.group-navs .navs-wrapper > .navs-bar > .navs-head > .nav-tab:hover > .sub-nav-w[data-v-bfcb8692] {
    background-color: #fcfcfc
}

.group-navs .navs-wrapper > .navs-bar > .navs-head > .nav-tab > .all-cate-count[data-v-bfcb8692] {
    font-size: 12px;
    color: #999;
    font-weight: normal
}

.group-navs .navs-wrapper > .navs-bar > .navs-head > .nav-tab > .seperater[data-v-bfcb8692] {
    border-right: 1px solid #eee;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0
}

.group-navs .navs-wrapper > .navs-bar > .navs-head > .nav-tab:last-child > .seperater[data-v-bfcb8692] {
    border-right: none
}

.group-navs .navs-wrapper > .navs-bar > .navs-head > .nav-tab.active[data-v-bfcb8692] {
    color: #128BED;
    font-weight: bold
}

.group-navs .navs-wrapper > .navs-bar > .navs-head > .nav-tab > *[data-v-bfcb8692] {
    line-height: normal
}

.group-navs .navs-wrapper > .navs-bar > .navs-head > .nav-tab > .sub-nav-w[data-v-bfcb8692] {
    position: absolute;
    left: 0;
    right: 0;
    top: 43px;
    background-color: #fff;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: left;
    padding-left: 25px;
    -webkit-box-shadow: 0px 2px 2px 0px #eee;
    box-shadow: 0px 2px 2px 0px #eee;
    font-weight: normal
}

.group-navs .navs-wrapper > .navs-bar > .navs-head > .nav-tab > .sub-nav-w[data-v-bfcb8692]:last-child {
    border-right: none
}

.group-navs .navs-wrapper > .navs-bar > .navs-head > .nav-tab > .sub-nav-w > a[data-v-bfcb8692] {
    margin-top: 4px;
    display: block;
    color: #333;
    font-size: 13px;
    height: 20px;
    line-height: 20px
}

.group-navs .navs-wrapper > .navs-bar > .navs-head > .nav-tab > .sub-nav-w > a:hover > .sub-desc[data-v-bfcb8692] {
    color: #128BED
}

.group-navs .navs-wrapper > .navs-bar > .navs-head > .nav-tab > .sub-nav-w > a[data-v-bfcb8692]:first-child {
    margin-top: 10px
}

.group-navs .navs-wrapper > .navs-bar > .navs-head > .nav-tab > .sub-nav-w > a > .sub-desc[data-v-bfcb8692] {
    color: #333
}

.group-navs .navs-wrapper > .navs-bar > .navs-head > .nav-tab > .sub-nav-w > a span.disabled[data-v-bfcb8692] {
    color: #999;
    cursor: not-allowed
}

.group-navs .navs-wrapper > .navs-bar > .navs-head > .nav-tab > .sub-nav-w > a > .count[data-v-bfcb8692] {
    color: #128BED
}

.group-navs .navs-wrapper > .navs-bar > .navs-head > .nav-tab > .sub-nav-w > a > .count.risk[data-v-bfcb8692] {
    color: #FD485E !important
}

.group-navs .navs-wrapper > .navs-bar > .navs-head > .nav-tab > .sub-nav-w > a > .count.history[data-v-bfcb8692] {
    float: right;
    padding: 0 2px 0 3px;
    margin: 0;
    min-width: 36px;
    height: 18px;
    line-height: 18px;
    font-size: 12px;
    background-color: #FEF8EB;
    color: #F8AD15;
    border-radius: 2px 0px 0px 2px
}

.group-navs .navs-wrapper > .navs-bar > .navs-head > .nav-tab > .sub-nav-w > a > .count.history[data-v-bfcb8692]:hover {
    background-color: #F8AD15;
    color: #fff
}

.group-navs .navs-wrapper > .navs-bar > .navs-head > .nav-tab > .sub-nav-w > a > .count.detail[data-v-bfcb8692] {
    float: right;
    padding: 0 2px 0 3px;
    margin: 0;
    font-size: 12px;
    width: 36px;
    height: 18px;
    line-height: 18px;
    background-color: #FFF0F2;
    color: #FF6060;
    border-radius: 2px 0px 0px 2px
}

.group-navs .navs-wrapper > .navs-bar > .navs-head > .nav-tab > .sub-nav-w > a > .count.detail[data-v-bfcb8692]:hover {
    background-color: #FF6060;
    color: #fff
}

.group-navs .navs-wrapper > .navs-bar > .navs-head > .nav-tab > .sub-nav-w[data-v-bfcb8692]:hover {
    background-color: #fcfcfc
}

.group-navs > .tab-content[data-v-bfcb8692] {
    margin-bottom: 15px
}

.group-navs > .tab-content .sub-navs[data-v-bfcb8692] {
    padding: 10px 0 10px 10px;
    border-bottom: 1px solid #eee;
    background: #fff;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee
}

.group-navs > .tab-content .sub-navs .sub-nav-item[data-v-bfcb8692] {
    height: 32px;
    line-height: 32px;
    border: 1px solid #eee;
    padding: 0 10px;
    font-size: 13px;
    color: #555;
    margin: 5px 6px;
    cursor: pointer;
    display: inline-block;
    font-weight: 500
}

.group-navs > .tab-content .sub-navs .sub-nav-item > .count[data-v-bfcb8692] {
    margin-left: 4px
}

.group-navs > .tab-content .sub-navs .sub-nav-item.selected[data-v-bfcb8692] {
    background: #128BED;
    color: #fff;
    border: 1px solid #128BED
}

.group-navs > .tab-content .sub-navs .sub-nav-item[data-v-bfcb8692]:hover {
    background: #128bed;
    color: #fff;
    border-color: #128bed
}

.group-navs > .tab-content .sub-navs .sub-nav-item.disabled[data-v-bfcb8692] {
    background: #ebeef4;
    cursor: default;
    color: #555;
    border: none
}

.group-home {
    width: 1250px;
    margin: 15px auto 0
}

.group-home > .npanel > .npanel-body section {
    margin-top: 50px
}

.group-home > .npanel > .npanel-body section:first-child {
    margin-top: 0
}

.group-home .button-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.group-home .button-list .item {
    -ms-flex-preferred-size: 140px;
    flex-basis: 140px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0
}

.group-home .button-list .item:nth-of-type(8n) {
    margin-right: 0
}

.group-home .pay-insert {
    background-size: 1186px 838px;
    background-position: top;
    background-repeat: no-repeat;
    padding: 10px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/group-common-2ea06f58.png)
}

.group-home .pay-insert .pay-panel {
    width: 780px;
    border: solid 1px #eee;
    background-color: #fff !important;
    margin: 80px auto
}

.npanel .npanel-heading[data-v-42a9ad9a] {
    height: 49px
}

.npanel .npanel-heading .tab[data-v-42a9ad9a] {
    height: 100%;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.npanel .npanel-heading .tab .item[data-v-42a9ad9a] {
    color: #333333;
    margin: 0 15px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

.npanel .npanel-heading .tab .item span[data-v-42a9ad9a] {
    color: #999999
}

.npanel .npanel-heading .tab .item.disabled[data-v-42a9ad9a] {
    color: #999;
    cursor: not-allowed
}

.npanel .npanel-heading .tab .item.active[data-v-42a9ad9a] {
    color: #128bed;
    position: relative
}

.npanel .npanel-heading .tab .item.active[data-v-42a9ad9a]::after {
    content: ' ';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    width: 100%;
    background-color: #128bed
}

.npanel .npanel-heading .tab .item.active span[data-v-42a9ad9a] {
    color: #128bed
}

.npanel .npanel-heading .tab .vip-tag[data-v-42a9ad9a] {
    height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #F6F2E9;
    color: #D2A874;
    font-size: 12px;
    padding: 0 5px
}

.npanel .npanel-heading .tab .vip-tag img[data-v-42a9ad9a] {
    width: 22px;
    height: 10px;
    margin-right: 3px
}

.npanel .npanel-body[data-v-42a9ad9a] {
    padding: 20px 15px
}

.npanel .npanel-body .filter[data-v-42a9ad9a] {
    margin-bottom: 5px;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start
}

.npanel .npanel-body .filter .filter-label[data-v-42a9ad9a] {
    line-height: 25px;
    margin-right: 20px;
    color: #999;
    white-space: nowrap
}

.npanel .npanel-body .filter .item-list[data-v-42a9ad9a] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.npanel .npanel-body .filter .item-list .item[data-v-42a9ad9a] {
    padding: 0 10px;
    margin: 0 3px 10px;
    height: 25px;
    color: #222;
    border-radius: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer
}

.npanel .npanel-body .filter .item-list .item.active[data-v-42a9ad9a] {
    background: #128bed;
    color: #fff
}

.npanel .npanel-body .filter .item-list .item[data-v-42a9ad9a]:hover {
    background: #128bed;
    color: #fff
}

.npanel .npanel-body .filter[data-v-42a9ad9a]:last-child {
    margin-bottom: 0
}

.npanel[data-v-adec355c] {
    border-bottom: 0
}

.npanel .npanel-heading[data-v-adec355c] {
    height: 49px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 15px
}

.npanel .npanel-heading .left[data-v-adec355c] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 100%;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.npanel .npanel-heading .left .tag[data-v-adec355c] {
    height: 21px;
    line-height: 21px;
    font-weight: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    padding: 0 5px;
    font-size: 12px;
    margin-left: 10px
}

.npanel .npanel-heading .left .tag.high-risk[data-v-adec355c] {
    color: #FD485E;
    background: #FFE2E5
}

.npanel .npanel-heading .left .tag.warning-risk[data-v-adec355c] {
    color: #F5A623;
    background: #FFF1DA
}

.npanel .npanel-heading .left .tag.notice-risk[data-v-adec355c] {
    color: #128bed;
    background: #EAF2FF
}

.npanel .npanel-heading .watermark[data-v-adec355c] {
    width: 92px;
    height: 26px;
    background: url(../../images/watermark.png?t=1) no-repeat;
    background-size: 92px 26px;
    display: inline-block;
    vertical-align: middle;
    -ms-flex-item-align: center;
    align-self: center
}

.npanel .npanel-body[data-v-adec355c] {
    padding: 0
}

.npanel .npanel-body .list .item .top[data-v-adec355c]:hover {
    cursor: pointer
}

.npanel .npanel-body .list .item.line-bottom[data-v-adec355c] {
    position: relative
}

.npanel .npanel-body .list .item.line-bottom[data-v-adec355c]:after {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 1px solid #eee;
    -webkit-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%
}

.npanel .npanel-body .list .item.line-bottom.line-bottom-transparent[data-v-adec355c]:after {
    border-bottom: 1px solid transparent
}

.npanel .npanel-body .list .item .top[data-v-adec355c] {
    padding: 15px 15px 10px;
    color: #666;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 20px
}

.npanel .npanel-body .list .item .top .left[data-v-adec355c] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 0
}

.npanel .npanel-body .list .item .top .left > *[data-v-adec355c] {
    font-size: 14px
}

.npanel .npanel-body .list .item .top .left a[data-v-adec355c] {
    display: inline-block
}

.npanel .npanel-body .list .item .top .left span[data-v-adec355c] .p-blue {
    color: #128bed
}

.npanel .npanel-body .list .item .top .arrow[data-v-adec355c] {
    font-size: 20px;
    color: #128bed;
    height: 25px
}

.npanel .npanel-body .list .item .items-list[data-v-adec355c] {
    padding: 10px 15px 20px
}

.block-paging[data-v-adec355c] {
    margin-top: 20px;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.risk-scan-tip[data-v-5a1b73b5] {
    margin-top: 30px;
    color: #999;
    font-size: 14px
}

.group-risk-scan[data-v-8de10996] {
    width: 1250px;
    margin: 15px auto 0
}

.bread-crumb[data-v-6a09e458] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.bread-crumb > a > img[data-v-6a09e458] {
    width: 18px;
    margin-right: 4px
}

.bread-crumb > .item > .seperator[data-v-6a09e458] {
    display: inline-block;
    margin: 0 9px
}

.tab-bar[data-v-5005d88f] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #eee
}

.tab-bar .tab-item[data-v-5005d88f] {
    margin-right: 15px;
    padding: 2px 0;
    font-size: 16px;
    line-height: 44px;
    cursor: pointer
}

.tab-bar .tab-item[data-v-5005d88f]:first-of-type {
    margin-left: 15px
}

.tab-bar .tab-item[data-v-5005d88f]:last-of-type {
    margin-right: 15px
}

.tab-bar .tab-item.active[data-v-5005d88f] {
    padding-bottom: 0;
    color: #128bed;
    border-bottom: 2px solid #128bed
}

.common-block .block-header[data-v-222bec8e] {
    padding: 10px 15px;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    background-color: #fcfcfc;
    border: 1px solid #eee;
    border-bottom: none;
    border: 2px 2px 0 0
}

.common-block .block-header .watermark[data-v-222bec8e] {
    float: right;
    margin-left: 20px;
    margin-top: 2px;
    width: 92px;
    height: 26px;
    background: url(../../images/watermark.png?t=1) no-repeat;
    background-size: 92px 26px
}

.common-block .block-body[data-v-222bec8e] {
    margin-bottom: 15px;
    border: 1px solid #eee;
    -webkit-box-shadow: none;
    box-shadow: none
}

.common-block .block-body .risk-cell[data-v-222bec8e] {
    padding: 12px 135px 12px 15px;
    color: #666;
    background-color: #fff;
    cursor: pointer
}

.common-block .block-body .risk-cell[data-v-222bec8e]:not(:first-child) {
    border-top: 1px solid #eee
}

.common-block .block-body .risk-cell .detail-button[data-v-222bec8e] {
    float: right;
    margin-right: -80px
}

.common-block .block-paging[data-v-222bec8e] {
    text-align: right
}

.common-block .block-paging[data-v-222bec8e] .pagination > li:last-of-type {
    margin-right: 0
}

.group-risk-page[data-v-94f2f3f2] {
    margin: 15px auto 0;
    padding: 0 15px;
    width: 1250px
}

.group-risk-page[data-v-94f2f3f2] .bread-crumb {
    margin-bottom: 10px;
    padding: 8px 10px
}

.group-risk-page .content[data-v-94f2f3f2] {
    min-height: 600px
}

.group-risk-page .content .search-container[data-v-94f2f3f2] {
    margin-bottom: 15px;
    padding-bottom: 8px;
    border: 1px solid #eee;
    background-color: #fff;
    border-radius: 2px
}

.group-risk-page .content .search-container .tab-container[data-v-94f2f3f2] {
    margin-bottom: 15px
}

.group-risk-page .content .search-container[data-v-94f2f3f2] .button-list {
    margin-left: 15px
}

.group-risk-page .content .search-container[data-v-94f2f3f2] .button-list > .item {
    width: 182px;
    padding-right: 10px
}


.zlchart-tcount {
    padding-top: 40px;
    text-align: center
}

.zlchart-tcount img {
    width: 40px;
    margin-bottom: 15px
}

.zlchart-tcount .tcount {
    color: #67aef5;
    font-family: PingFangSC-Medium;
    font-size: 56px;
    font-weight: 600;
    margin-right: 15px;
    margin-left: 15px
}

.zlchart-tcount .t-tip {
    margin-top: 16px;
    color: #999;
    text-align: left;
    line-height: 19px
}

.zl-chart-status {
    height: 219px;
    overflow: hidden auto
}

.zl-chart-status::-webkit-scrollbar {
    width: 0px
}

.zlchart-tcount-wrap {
    padding: 15px
}

.zhuanli .chart-contain {
    overflow: visible !important
}

.zs-item {
    margin-bottom: 30px
}

.zs-item:last-child {
    margin-bottom: 0
}


.group-ability-default[data-v-5345e098] {
    width: 1250px;
    margin: 0 auto
}

.group-ability-default > .bread-crumb[data-v-5345e098] {
    margin: 25px 0 20px 0
}

.group-ability-default .content[data-v-5345e098] {
    padding-top: 25px
}

.group-business-page[data-v-329be594] {
    margin: 15px auto 0;
    padding: 0 15px;
    width: 1250px
}

.group-business-page[data-v-329be594] .bread-crumb {
    margin-bottom: 10px;
    padding: 8px 10px
}

.group-business-page .content[data-v-329be594] {
    min-height: 600px
}

.group-business-page .content .search-container[data-v-329be594] {
    margin-bottom: 15px;
    padding: 8px;
    border: 1px solid #eee;
    background-color: #fff;
    border-radius: 2px
}

.group-business-page .content .search-container[data-v-329be594] .button-list {
    margin-left: 7px
}

.group-business-page .content .search-container[data-v-329be594] .button-list > .item {
    width: 182px;
    padding-right: 10px
}

.property-clue-container[data-v-4da37588] {
    width: 1250px;
    margin: 15px auto 0
}

.property-clue-container .filter-box[data-v-4da37588] {
    background-color: #ffffff;
    padding: 15px 15px 3px
}

.property-clue-container .property-clue-box[data-v-4da37588] {
    margin-top: 15px;
    background-color: #ffffff
}

.property-clue-container .property-clue-box .text[data-v-4da37588] {
    padding: 10px 15px;
    background-color: #FCFCFC;
    border-bottom: 1px solid #EEEEEE
}

.property-clue-container .property-clue-box .text .font-pink[data-v-4da37588] {
    color: #FD485E
}

.property-clue-container .property-clue-box .table-content[data-v-4da37588] {
    padding: 15px;
    color: #333
}

.property-clue-container .property-clue-box .table-content[data-v-4da37588] .ant-table-tbody > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td {
    background: #f6f6f6
}

.property-clue-container .property-clue-box .table-content[data-v-4da37588] .ant-table-tbody > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td .ui-partial-container > .expander-box {
    background-color: #f6f6f6
}

.property-clue-container .property-clue-box .table-content[data-v-4da37588] .ant-table-thead th {
    background: #F2F9FC;
    padding-top: 11px;
    padding-bottom: 11px
}

.property-clue-container .property-clue-box .table-content[data-v-4da37588] .ant-table-thead th .ant-table-header-column {
    color: #333
}

.property-clue-container .property-clue-box .table-content[data-v-4da37588] .ant-table-thead tr:first-child th {
    border: unset
}

.property-clue-container .property-clue-box .table-content[data-v-4da37588] .ant-table-tbody > tr > td {
    padding-top: 11px;
    padding-bottom: 11px;
    color: #333
}

.property-clue-container .property-clue-box .table-content .role-type-tip[data-v-4da37588] {
    color: #666;
    margin-bottom: 6px
}

.property-clue-container .property-clue-box .table-content .assets-stock-job[data-v-4da37588] {
    color: #666;
    margin-top: 6px
}

.property-clue-container .property-clue-box .table-content .assets-stock-job > span[data-v-4da37588] {
    color: #333
}

.property-clue-container .property-clue-box .table-content .bottom-tag[data-v-4da37588] {
    margin-top: 6px;
    font-size: 0
}

.property-clue-container .property-clue-box .table-content .bottom-tag .text[data-v-4da37588] {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 2px;
    font-size: 12px
}

.property-clue-container .property-clue-box .table-content .bottom-tag .text[data-v-4da37588]:not(:first-child) {
    margin-left: 10px
}

.property-clue-container .property-clue-box .table-content .bottom-tag .text-primary[data-v-4da37588] {
    color: #128BED;
    background: #E7F4FF
}

.property-clue-container .property-clue-box .table-content .bottom-tag .text-success[data-v-4da37588] {
    color: #009944;
    background: #EBFFF4
}

.property-clue-container .property-clue-box .table-content .bottom-tag .text-danger[data-v-4da37588] {
    color: #FD485E;
    background: #FDEDED
}

.property-clue-container .property-clue-box .table-content .bottom-tag .text-gray[data-v-4da37588] {
    color: #666666;
    background: #EEEEEE
}

.property-clue-container .property-clue-box .table-content .inline-span[data-v-4da37588] {
    display: inline-block;
    padding-right: 30px;
    line-height: 22px
}

.property-clue-container .property-clue-box .table-content .clue-analysis[data-v-4da37588] {
    background: #F6F6F6;
    border-radius: 2px;
    padding: 6px 5px 8px;
    font-size: 14px;
    color: #333;
    margin-top: 5px
}

.property-clue-container .property-clue-box .table-content .clue-analysis-title[data-v-4da37588] {
    color: #666
}

.frame-view[data-v-d8a83d9c] {
    position: relative;
    overflow: hidden
}

.frame-view .frame-view-content[data-v-d8a83d9c] {
    position: fixed;
    width: 100%;
    top: 56px;
    bottom: 0px
}

.frame-view iframe[data-v-d8a83d9c] {
    margin: 0px;
    width: 100%;
    height: 100%
}

.transfer-link[data-v-36646482] {
    position: relative;
    overflow: hidden;
    height: 100vh
}

.transfer-link .center-box[data-v-36646482] {
    position: absolute;
    width: 650px;
    height: 316px;
    top: 50%;
    left: 50%;
    margin-left: -325px;
    margin-top: -180px;
    background: #fff;
    border: 1px solid #EEEEEE;
    z-index: 100;
    text-align: center;
    padding-top: 50px
}

.transfer-link .center-box .title[data-v-36646482] {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px
}

.transfer-link .center-box .sub-title[data-v-36646482] {
    color: #666;
    font-size: 18px;
    margin-bottom: 30px
}

.transfer-link .center-box .link[data-v-36646482] {
    color: #999;
    font-size: 16px;
    margin-bottom: 40px
}

.transfer-link .center-box .btn[data-v-36646482] {
    width: 82px
}

.search-stock-menu[data-v-416cbdaf] .ant-menu {
    color: #666
}

.search-stock-menu .ant-menu-root[data-v-416cbdaf] {
    padding-top: 16px;
    border-right: none
}

.search-stock-menu .ant-menu-item[data-v-416cbdaf] {
    margin: 0 0 4px 0
}

.search-stock-menu .ant-menu-item[data-v-416cbdaf]:after {
    border-right-width: 2px
}

.search-stock-menu .ant-menu-item-selected[data-v-416cbdaf] {
    background-color: #F3F9FD
}

.search-stock-menu .ant-menu-submenu[data-v-416cbdaf] .ant-menu-submenu-title {
    margin: 0 0 4px 0
}

.search-input[data-v-8e08dffc] {
    width: 650px;
    position: relative
}

.search-input .search-input-contanier[data-v-8e08dffc] {
    width: 100%;
    font-size: 0;
    position: relative
}

.search-input input[data-v-8e08dffc] {
    height: 40px;
    vertical-align: top;
    width: calc(100% - 85px);
    padding: 7px 10px;
    border-radius: 4px 0 0 4px;
    border: 1px solid #D6D6D6;
    border-right: none;
    line-height: 24px;
    outline: none;
    font-size: 16px
}

.search-input input[data-v-8e08dffc]:focus {
    border-color: #128BED
}

.search-input input.no-search-input-style[data-v-8e08dffc] {
    width: 260px;
    border-right: 1px solid #eee;
    padding-right: 12px;
    border-radius: 4px
}

.search-input .search-btn[data-v-8e08dffc] {
    width: 85px;
    border-radius: 0px 4px 4px 0px;
    background: #128BED;
    color: #fff;
    font-size: 16px;
    display: inline-block;
    cursor: pointer;
    line-height: 24px;
    padding: 8px 0;
    text-align: center
}

.search-input .search-btn.search-btn-disabled[data-v-8e08dffc] {
    background: #A0D1F8
}

.search-input .anticon-guanbi[data-v-8e08dffc] {
    position: absolute;
    width: 22px;
    height: 22px;
    padding: 4px;
    right: 95px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.search-input .anticon-guanbi[data-v-8e08dffc] svg {
    width: 14px;
    height: 14px;
    color: #D6D6D6
}

.search-input .anticon-guanbi[data-v-8e08dffc]:hover svg {
    color: #999
}

.search-input .search-input-close input[data-v-8e08dffc] {
    padding-right: 32px
}

.search-input.search-input-middle[data-v-8e08dffc] {
    width: 460px
}

.search-input.search-input-middle input[data-v-8e08dffc] {
    height: 36px;
    width: calc(100% - 72px);
    font-size: 14px;
    line-height: 22px;
    padding-top: 6px;
    padding-bottom: 6px
}

.search-input.search-input-middle .search-btn[data-v-8e08dffc] {
    width: 72px;
    font-size: 14px;
    line-height: 22px;
    padding: 7px 0
}

.search-input.search-input-middle .anticon-guanbi[data-v-8e08dffc] {
    right: 82px
}

.search-input.search-input-large[data-v-8e08dffc] {
    width: 100%;
    border: 1px solid #D6D6D6;
    border-radius: 4px;
    background: #fff
}

.search-input.search-input-large input[data-v-8e08dffc] {
    border: none;
    padding-top: 8px;
    padding-bottom: 8px
}

.search-input.search-input-large .search-btn[data-v-8e08dffc] {
    background: #FF722D
}

.search-input.search-input-small[data-v-8e08dffc] {
    width: 280px
}

.search-input.search-input-small input[data-v-8e08dffc] {
    height: 32px;
    width: calc(100% - 32px);
    font-size: 14px;
    line-height: 22px;
    padding-top: 4px;
    padding-bottom: 4px
}

.search-input.search-input-small .search-btn[data-v-8e08dffc] {
    width: 32px;
    height: 32px;
    line-height: 22px;
    font-size: 14px;
    padding: 5px 0;
    position: relative
}

.search-input.search-input-small .anticon-guanbi[data-v-8e08dffc] {
    right: 35px
}

.search-input input[data-v-8e08dffc]::-webkit-input-placeholder {
    color: #BBB !important
}

.search-input input[data-v-8e08dffc]::-moz-placeholder {
    color: #BBB !important
}

.search-input input[data-v-8e08dffc]:-ms-input-placeholder {
    color: #BBB !important
}

.search-input.search-input-small-pro[data-v-8e08dffc] {
    width: 260px
}

.search-input.search-input-small-pro input[data-v-8e08dffc] {
    padding-right: 10px;
    height: 32px;
    width: 100%;
    font-size: 14px;
    line-height: 22px;
    padding-top: 4px;
    padding-bottom: 4px;
    border-right: 1px solid #D6D6D6;
    border-radius: 4px
}

.search-input.search-input-small-pro input[data-v-8e08dffc]:focus {
    border-color: #128BED
}

.search-input.search-input-small-pro input[data-v-8e08dffc]::-moz-placeholder {
    color: #ccc !important
}

.search-input.search-input-small-pro input[data-v-8e08dffc]::-webkit-input-placeholder {
    color: #ccc !important
}

.search-input.search-input-small-pro input[data-v-8e08dffc]:-ms-input-placeholder {
    color: #ccc !important
}

.search-input.search-input-small-pro .anticon-guanbi[data-v-8e08dffc] {
    right: 7px
}

.search-input.search-input-small-pro .anticon-guanbi[data-v-8e08dffc] svg {
    color: rgba(0, 0, 0, 0.25)
}

.search-input.search-input-small-pro .anticon-guanbi[data-v-8e08dffc]:hover svg {
    color: #666666
}

.search-input .search-section[data-v-8e08dffc] {
    left: 0;
    right: 0;
    position: absolute;
    margin-top: 2px;
    z-index: 22
}

.search-input .search-section > div[data-v-8e08dffc] {
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    background: #fff
}

.search-input .search-section .search-list[data-v-8e08dffc] {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #eee
}

.search-input .search-section .search-list .item[data-v-8e08dffc] {
    padding: 9px 14px;
    display: table;
    width: 100%;
    cursor: pointer
}

.search-input .search-section .search-list .item[data-v-8e08dffc]:hover {
    background: #F3F9FD
}

.search-input .search-section .search-list .item:hover .name[data-v-8e08dffc] {
    color: #128BED
}

.search-input .search-section .search-list .item .name[data-v-8e08dffc] {
    display: table-cell;
    vertical-align: middle;
    font-size: 14px;
    line-height: 22px;
    color: #333
}

.search-input .search-section .search-history[data-v-8e08dffc] {
    border-radius: 4px
}

.search-input .search-section .search-history .history-keys[data-v-8e08dffc] {
    padding: 5px 10px 10px 0;
    font-size: 0
}

.search-input .search-section .search-history .history-keys .item[data-v-8e08dffc] {
    margin-top: 5px;
    margin-left: 10px;
    display: inline-block;
    font-size: 12px;
    color: #666;
    line-height: 20px;
    padding: 1px 8px;
    background: #F6F6F6;
    border-radius: 2px;
    cursor: pointer
}

.search-input .search-section .search-history .history-keys .item[data-v-8e08dffc]:hover {
    background: #E7F4FF;
    color: #128BED
}

.search-input .search-section .search-history .history-select .item[data-v-8e08dffc] {
    display: table;
    width: 100%;
    padding: 9px 10px;
    cursor: pointer
}

.search-input .search-section .search-history .history-select .item[data-v-8e08dffc]:first-child {
    border-radius: 4px 4px 0 0
}

.search-input .search-section .search-history .history-select .item[data-v-8e08dffc]:hover {
    background: #F3F9FD
}

.search-input .search-section .search-history .history-select .item:hover .name[data-v-8e08dffc] {
    color: #128BED
}

.search-input .search-section .search-history .history-select .item .icon[data-v-8e08dffc] {
    padding: 4px;
    width: 27px;
    display: table-cell;
    vertical-align: middle;
    color: #999;
    font-size: 14px
}

.search-input .search-section .search-history .history-select .item .name[data-v-8e08dffc] {
    display: table-cell;
    vertical-align: middle;
    color: #666;
    line-height: 22px;
    font-size: 14px
}

.search-input .search-section .search-history .history-keys + .history-select .item[data-v-8e08dffc]:first-child {
    border-radius: 0
}

.search-input .search-section .search-history .history-btns[data-v-8e08dffc] {
    padding: 9px 20px;
    background: #F6F6F6;
    border-radius: 0 0 4px 4px;
    text-align: right
}

.search-input .search-section .search-history .history-btns > div[data-v-8e08dffc] {
    cursor: pointer;
    display: inline-block
}

.search-input .search-section .search-history .history-btns > div .anticon[data-v-8e08dffc] {
    font-size: 14px;
    color: #999
}

.search-input .search-section .search-history .history-btns > div > span[data-v-8e08dffc] {
    line-height: 22px;
    font-size: 14px;
    color: #999
}

.ant-layout-header[data-v-4be68bc8] {
    z-index: 55
}

.ant-layout-menu[data-v-4be68bc8] {
    background: #fff;
    border-right: 1px solid #e8e8e8
}

.ant-layout-menu .contact-us[data-v-4be68bc8] {
    font-size: 14px;
    line-height: 22px;
    color: #666;
    width: 100%;
    padding: 13px 0 13px 24px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-top: 1px solid #EEEEEE;
    background: #fff
}

.ant-layout-menu .contact-us .anticon[data-v-4be68bc8] {
    margin-right: 8px
}

.ant-layout-content[data-v-4be68bc8] {
    padding: 70px 20px 0 20px
}

.ant-layout-content[data-v-4be68bc8] .action-module {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.ant-layout-content[data-v-4be68bc8] .action-module .action-btn {
    color: #999;
    font-size: 14px;
    line-height: 22px;
    display: inline-block;
    cursor: pointer;
    margin-left: 20px
}

.ant-layout-content[data-v-4be68bc8] .action-module .action-btn .reset-icon {
    width: 22px;
    height: 22px;
    display: inline-block;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/reset-icon-cda8f692.png) no-repeat 0 0;
    background-size: contain;
    vertical-align: middle
}

.ant-layout-content[data-v-4be68bc8] .action-module .action-btn .anticon {
    margin-right: 4px
}

.ant-layout-content[data-v-4be68bc8] .search-stock-title {
    line-height: 24px;
    font-size: 16px;
    font-weight: bold;
    padding: 18px 0;
    border-bottom: 1px solid #eee
}

.ant-layout-content[data-v-4be68bc8] .search-stock-title span {
    color: #FD5266
}

.ant-layout-content[data-v-4be68bc8] .panel-table {
    margin-top: 20px
}

.ant-layout-content[data-v-4be68bc8] .tag-status {
    line-height: 20px;
    background: #F6F6F6;
    border-radius: 4px;
    border: 1px solid #D6D6D6;
    padding: 0 7px;
    font-size: 12px;
    color: #666;
    margin-left: 6px;
    display: inline-block;
    position: relative;
    top: -2px
}

.ant-layout-content[data-v-4be68bc8] .tag-status.green {
    border: 1px solid #13C261;
    background: #EBFFF4;
    color: #13C261
}

.ant-layout-content[data-v-4be68bc8] .tag-status.red {
    border: 1px solid #FD5266;
    background: #FDEDED;
    color: #FD5266
}

.app-nfooter {
    background: #2d3237;
    color: #7281AD;
    font-size: 13px;
    margin-top: 50px;
    line-height: 1.8
}

.app-nfooter .udeskBtn {
    display: inline-block !important
}

.app-nfooter .container {
    max-width: 1250px !important
}

.app-nfooter .container h4 {
    font-size: 14px;
    color: #fff !important;
    margin-top: 10px;
    margin-bottom: 10px
}

.app-nfooter .container a {
    color: #7281AD;
    text-decoration: none
}

.app-nfooter .container a:hover {
    color: #fff
}

.app-nfooter .container .footer-top {
    padding-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: solid 1px #7281AD
}

.app-nfooter .container .footer-top .about {
    float: left;
    width: 132px
}

.app-nfooter .container .footer-top .contact {
    float: left;
    width: 220px;
    margin-right: 30px
}

.app-nfooter .container .footer-top .service {
    float: left;
    width: 372px
}

.app-nfooter .container .footer-top .service a {
    margin-right: 15px;
    display: inline-block
}

.app-nfooter .container .footer-top .qrcode {
    float: left;
    width: 455px;
    padding-top: 40px
}

.app-nfooter .container .footer-top .qrcode img {
    width: 100px;
    display: block;
    margin-bottom: 6px
}

.app-nfooter .container .footer-top .qrcode .qrcode-item {
    float: right;
    text-align: center;
    margin-left: 50px
}

.app-nfooter .container .footer-link .footer-row {
    padding-left: 72px
}

.app-nfooter .container .footer-link .footer-row .footer-row-head {
    float: left;
    margin-left: -72px
}

.app-nfooter .container .footer-link .footer-row .footer-row-content .item {
    float: left;
    margin-right: 12px;
    position: relative
}

.app-nfooter .footer-row .item:not(:last-child):after {
    content: " ";
    position: absolute;
    height: 12px;
    width: 1px;
    background: #7281AD;
    right: -7px;
    top: 6px
}

.app-nfooter .footer-copy-bg {
    padding-top: 5px;
    padding-bottom: 10px;
    margin-top: 20px;
    background: #202427
}

.app-nfooter .footer-copy-bg .m-t-xs {
    margin-top: 5px
}

.app-nfooter .footer-copy-bg .auth {
    float: right;
    margin-top: 15px
}

.app-nfooter .footer-copy-bg .auth a + a {
    margin-left: 30px
}

.app-nfooter .footer-copy-bg .auth .m-l-sm {
    margin-left: 10px
}

.app-nfooter .footer-copy-bg .auth .m-l-sm.left {
    width: 98px
}

.app-nfooter .footer-copy-bg .auth .m-l-sm.center {
    width: 30px
}

.app-nfooter .footer-copy-bg .auth .m-l-sm.right {
    width: 106px
}

.ui-corner-mark[data-v-5180b0c7] {
    position: absolute;
    width: 27px;
    height: 13px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icons-4f56c92e.png);
    background-size: 27px 26px
}

.ui-corner-mark.icon-hot[data-v-5180b0c7] {
    background-position: 0px 13px
}

.ui-corner-mark.icon-new[data-v-5180b0c7] {
    background-position: 0px 0px
}

.ui-corner-mark.icon-new2[data-v-5180b0c7] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_new2-3b414202.png);
    background-size: 27px 13px
}


.quick-login_wrapper {
    padding: 20px 25px 15px
}

.quick-login_wrapper .login-btn {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 16px;
    display: block;
    width: 100%
}

.quick-login_wrapper .form-group {
    margin-top: 25px;
    position: relative
}

.quick-login_wrapper .vcode-btn {
    width: 86px;
    text-align: center;
    font-size: 12px;
    position: absolute;
    right: 4px;
    top: 12px;
    text-align: center;
    cursor: pointer
}

.quick-login_wrapper .vcode-btn:after {
    content: " ";
    position: absolute;
    width: 1px;
    height: 28px;
    background: #d8d8d8;
    right: 90px;
    top: 2px;
    margin-top: -6px
}

.quick-login_wrapper input.form-control {
    font-size: 14px;
    height: 40px;
    border-radius: 0;
    color: #000
}

.quick-login_wrapper .el-input-group__append {
    background: #fff
}

.quick-login_wrapper .nc-container .nc_scale .nc_iconfont {
    width: 50px
}

.quick-login_wrapper .bottom {
    margin-top: 20px
}

.quick-login_wrapper .bottom p {
    margin: 0;
    text-align: center;
    font-size: 12px;
    color: #999
}

.password-login_wrapper {
    padding: 20px 25px 15px
}

.password-login_wrapper .login-btn {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 16px;
    display: block;
    width: 100%
}

.password-login_wrapper .form-group {
    margin-top: 25px;
    position: relative
}

.password-login_wrapper .vcode-btn {
    width: 86px;
    text-align: center;
    font-size: 12px;
    position: absolute;
    right: 4px;
    top: 12px;
    text-align: center
}

.password-login_wrapper .vcode-btn:after {
    content: " ";
    position: absolute;
    width: 1px;
    height: 28px;
    background: #d8d8d8;
    right: 90px;
    top: 2px;
    margin-top: -6px
}

.password-login_wrapper input.form-control {
    font-size: 14px;
    height: 40px;
    border-radius: 0;
    color: #000
}

.password-login_wrapper .show-pwd {
    position: absolute;
    width: 24px;
    height: 24px;
    display: inline-block;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/login_icons-eac8c904.png);
    background-size: 72px 96px;
    right: 10px;
    top: 7px;
    background-position: -24px -72px
}

.password-login_wrapper .show-pwd.active {
    background-position: 0px -72px
}

.password-login_wrapper .nc-container .nc_scale .nc_iconfont {
    width: 50px
}

.password-login_wrapper .el-form-item__error {
    left: auto;
    right: 0
}

.password-login_wrapper .bottom {
    margin-top: 20px
}

.password-login_wrapper .bottom .left {
    float: left
}

.password-login_wrapper .bottom .forget {
    color: #999;
    margin-left: 8px
}

.password-login_wrapper .el-form-item__error {
    left: auto;
    right: 0
}

.app-qrcode-login[data-v-78a2a768] {
    position: relative;
    height: 180px
}

.app-qrcode-login > .qrcode-container[data-v-78a2a768] {
    padding: 10px;
    height: 180px;
    width: 180px;
    background-color: #fff;
    position: absolute;
    left: 72px;
    opacity: 1
}

.app-qrcode-login > .sample-container[data-v-78a2a768] {
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    position: absolute;
    left: 255px;
    top: -100px;
    z-index: 10;
    visibility: hidden;
    opacity: 0
}

.app-qrcode-login > .sample-container > img[data-v-78a2a768] {
    height: 390px
}

.app-qrcode-login .qrcodecover[data-v-78a2a768] {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.95;
    top: 0px;
    left: 0px
}

.app-qrcode-login .qrcodecover > .icon[data-v-78a2a768] {
    width: 50px;
    height: 50px;
    margin: auto;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/login_sao_success-2ecc5be9.png);
    background-size: 50px 50px;
    margin-top: 40px
}

.app-qrcode-login .qrcodecover > .title[data-v-78a2a768] {
    color: #128bed;
    margin-top: 8px
}

.app-qrcode-login .qrcodecover > .text[data-v-78a2a768] {
    font-size: 12px;
    color: #333;
    margin-top: 8px
}

.app-qrcode-login .qrcoderefresh[data-v-78a2a768] {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.95;
    top: 0px;
    left: 0px
}

.app-qrcode-login .qrcoderefresh > .text[data-v-78a2a768] {
    font-size: 16px;
    color: #333;
    margin-top: 60px
}

.app-qrcode-login .qrcoderefresh > a[data-v-78a2a768] {
    display: block;
    margin: auto;
    margin-top: 5px;
    line-height: 24px;
    color: #333
}

.app-qrcode-login .qrcoderefresh > a > .icon[data-v-78a2a768] {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/login_icons-eac8c904.png);
    background-size: 72px 96px;
    background-position: -24px -48px;
    position: relative;
    top: 7px
}

.app-qrcode-login.nhover .qrcode-container:hover + .sample-container[data-v-78a2a768] {
    left: 275px;
    opacity: 1;
    visibility: visible
}

.app-login_wrapper {
    width: 765px;
    height: 480px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 6px
}

.app-login_wrapper .left-c {
    float: left;
    width: 325px;
    height: 100%;
    background: #eef6ff;
    padding-top: 30px;
    border-radius: 6px 0px 0px 6px
}

.app-login_wrapper .left-c .logo {
    display: block;
    width: 150px;
    margin: 0 auto
}

.app-login_wrapper .left-c .qr-wrap {
    margin: 57px auto 20px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap
}

.app-login_wrapper .left-c .qr-wrap:hover .qrcodets {
    opacity: 1;
    width: 120px
}

.app-login_wrapper .left-c .qrcodets {
    width: 0;
    height: 180px;
    margin-left: 10px;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s
}

.app-login_wrapper .left-c .qr-code {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 20px
}

.app-login_wrapper .left-c .desc {
    margin: 0;
    color: #333;
    text-align: center;
    font-size: 16px;
    line-height: 1.6
}

.app-login_wrapper .left-c .qrcode-downapp {
    width: 272px;
    position: absolute;
    bottom: 115px;
    left: -35px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s
}

.app-login_wrapper .left-c .downapp-hover:hover + .qrcode-downapp {
    opacity: 1;
    visibility: visible;
    bottom: 110px
}

.app-login_wrapper .right-c {
    float: left;
    width: 440px;
    height: 100%;
    padding: 30px 20px
}

.app-login_wrapper .login-panel-head {
    margin-top: 10px;
    margin-bottom: 0px;
    padding: 0px 50px
}

.app-login_wrapper .login-panel-title {
    text-align: center;
    font-size: 18px
}

.app-login_wrapper .login-tab {
    float: left;
    width: 50%;
    text-align: center
}

.app-login_wrapper .login-tab > a {
    padding-bottom: 10px;
    font-size: 18px;
    color: #999;
    cursor: pointer
}

.app-login_wrapper .login-tab > a.active {
    color: #128bed;
    border-bottom: solid 2px #128bed
}

.app-login_wrapper .btn-wx, .app-login_wrapper .btn-qq, .app-login_wrapper .btn-weibo, .app-login_wrapper .btn-wx-d, .app-login_wrapper .btn-qq-d, .app-login_wrapper .btn-weibo-d {
    width: 24px;
    height: 24px;
    display: inline-block;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/login_icons-eac8c904.png);
    background-size: 72px 96px;
    margin-left: 5px
}

.app-login_wrapper .btn-wx-d {
    background-position: -0px -0px
}

.app-login_wrapper .btn-qq-d {
    background-position: -24px -0px
}

.app-login_wrapper .btn-weibo-d {
    background-position: -48px -0px
}

.app-login_wrapper .btn-wx {
    background-position: -0px -24px
}

.app-login_wrapper .btn-qq {
    background-position: -24px -24px
}

.app-login_wrapper .btn-weibo {
    background-position: -48px -24px
}

.app-login_wrapper .btn-wx:hover {
    background-position: -0px -24px
}

.app-login_wrapper .btn-qq:hover {
    background-position: -24px -24px
}

.app-login_wrapper .btn-weibo:hover {
    background-position: -48px -24px
}

.app-login_wrapper .btn-wx-d:hover {
    background-position: -0px -24px
}

.app-login_wrapper .btn-qq-d:hover {
    background-position: -24px -24px
}

.app-login_wrapper .btn-weibo-d:hover {
    background-position: -48px -24px
}

.app-login_wrapper .login-tip {
    margin-top: 20px
}

.app-login_wrapper .login-tip-large {
    margin-top: 50px
}

.aicon {
    color: #d6d6d6
}

.aicon.text-primary {
    color: #128bed
}

.aicon.text-danger {
    color: #FD485E
}

.aicon.text-grap {
    color: #999999
}

.ant-btn .aicon {
    color: unset
}

.aicon-new, .aicon-hot {
    font-size: 14px;
    position: absolute;
    z-index: 2;
    color: #ff6060
}

.nc-container {
    border-radius: 2px;
    overflow: hidden;
    width: 100%;
    height: 40px
}

.nc-container .nc_wrapper {
    width: auto !important
}

.nc-container .nc_scale {
    height: 40px !important
}

.nc-container .nc_scale .nc_iconfont {
    height: 40px !important;
    line-height: 38px !important
}

.nc-container .nc_scale .scale_text2 {
    text-align: center !important
}

.nc-container .nc-lang-cnt {
    display: inline-block;
    line-height: 40px !important
}

.nc-container .errloading {
    width: 100% !important
}

.nc-container.small {
    height: 32px
}

.nc-container.small .nc_scale {
    height: 32px !important
}

.nc-container.small .nc_scale .nc_iconfont {
    height: 32px !important;
    line-height: 30px !important
}

.nc-container.small .nc_scale .scale_text {
    line-height: 30px !important
}

.nc-container.small .nc-lang-cnt {
    display: inline-block;
    line-height: 32px !important
}

.nc-container.small .errloading {
    padding-top: 5px !important;
    padding-bottom: 5px !important
}

.nc-container.small .errloading .nc-lang-cnt {
    line-height: 20px !important
}

.nodata[data-v-db0c7ddc] {
    text-align: center;
    padding: 100px 20px
}

.nodata img[data-v-db0c7ddc] {
    width: 80px;
    margin-top: 5px;
    margin-bottom: 10px
}

.nodata p[data-v-db0c7ddc] {
    color: rgba(0, 0, 0, 0.25);
    font-size: 14px;
    margin-bottom: 0px
}

.nodata.bg[data-v-db0c7ddc] {
    background: #fff
}

.nodata.absolute[data-v-db0c7ddc] {
    width: 300px;
    padding: 0px !important;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -110px;
    margin-left: -150px
}


#app-bankruptcy-relat .tcaption[data-v-7a36f54f] {
    color: #999;
    margin-bottom: 10px
}

.app-search-input[data-v-363a25ca] {
    position: relative
}

.app-search-input .form-group[data-v-363a25ca] {
    margin-bottom: 0px
}

.app-search-input .search-key.no-br[data-v-363a25ca] {
    border-bottom-left-radius: 0px !important
}

.app-search-input .clear-searchkey[data-v-363a25ca] {
    top: 9px;
    right: 75px
}

.search-section[data-v-363a25ca] {
    position: absolute;
    width: 100%;
    z-index: 10
}

.search-section .nologin[data-v-363a25ca] {
    background: #fff;
    text-align: center;
    padding: 5px;
    height: 180px
}

.search-section .nologin img[data-v-363a25ca] {
    width: 312px
}

.search-list .list-group-item[data-v-363a25ca] {
    border-width: 1px 0;
    border-radius: 0;
    border-color: #FAFAFA;
    color: #333
}

.search-list .list-group-item[data-v-363a25ca]:first-child {
    border-top: 0
}

.search-list .cell[data-v-363a25ca] {
    display: table;
    width: 100%
}

.search-list .logo[data-v-363a25ca] {
    width: 32px;
    display: table-cell;
    vertical-align: middle
}

.search-list .logo > .app-auto-logo[data-v-363a25ca] {
    vertical-align: middle
}

.search-list .text[data-v-363a25ca] {
    display: table-cell;
    vertical-align: middle;
    line-height: 1.6
}

.search-list .stext[data-v-363a25ca] {
    line-height: 1.2;
    font-size: 12px;
    color: #999
}

.search-list .usericon[data-v-363a25ca] {
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 6px;
    float: left;
    margin-right: 10px
}

.search-list .usericon[first-letter][data-v-363a25ca]:not([style]):empty:before {
    color: #fff !important;
    font-size: 16px;
    line-height: 32px
}

.search-list .rstu[data-v-363a25ca] {
    display: table-cell;
    text-align: right;
    padding-left: 10px;
    vertical-align: middle
}

.search-list .keyMove[data-v-363a25ca] {
    background: #FAFAFA
}

.search-list .ntag[data-v-363a25ca] {
    padding: 4px;
    white-space: nowrap;
    vertical-align: baseline
}

.search-list-his .list-group-item[data-v-363a25ca] {
    border-width: 1px 0;
    border-radius: 0;
    border-color: #FAFAFA;
    color: #333
}

.search-list-his .list-group-item[data-v-363a25ca]:first-child {
    border-top: 0
}

.search-list-his .list-group-item .ntag[data-v-363a25ca] {
    margin-bottom: 2px;
    margin-top: 2px
}

.search-list-his .list-group-item .ntag[data-v-363a25ca]:hover {
    color: #333
}

.search-list-his .bg[data-v-363a25ca] {
    background: #FAFAFA
}

.search-list-his .htext[data-v-363a25ca] {
    color: #333;
    font-size: 12px;
    line-height: 22px
}

.search-list-his a.htext[data-v-363a25ca] {
    float: right
}

.search-list-his a.htext[data-v-363a25ca]:hover {
    color: #128bed
}

.search-list-his .icon-time[data-v-363a25ca] {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 5px;
    top: 3px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_time-d1e467eb.png);
    background-size: 16px 16px
}

.search-list-his .icon-timesave[data-v-363a25ca] {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 5px;
    top: 3px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_timesave-88a50fd1.png);
    background-size: 16px 16px
}

.search-list-his .bt[data-v-363a25ca] {
    color: #999;
    font-size: 12px;
    cursor: default;
    margin-left: 15px
}

.search-list-his .bt[data-v-363a25ca]:hover {
    color: #128BED
}

.search-list-his .bt > span[data-v-363a25ca] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/nsearch_bt-a00554bd.png);
    background-size: 32px 32px;
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    top: 3px;
    left: -2px
}

.search-list-his .bt > .del[data-v-363a25ca] {
    background-position: -16px 0px
}

.search-list-his .bt:hover > span[data-v-363a25ca] {
    background-position-y: -16px
}

.search-list-his a.list-group-item[data-v-363a25ca]:hover {
    background: #F3F9FD;
    color: #128bed
}

.search-list-his .keyMove[data-v-363a25ca] {
    background: #FAFAFA
}

.search-list-his .ellipsis-line[data-v-363a25ca] {
    word-break: break-all;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.search-section.simple[data-v-363a25ca] {
    border: 1px solid #eee;
    z-index: 100
}

.app-auto-logo {
    display: inline-block;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat
}

.app-auto-logo > span {
    text-align: center;
    background-color: #E79177;
    display: inline-block;
    width: 44px;
    height: 44px;
    color: #fff
}

.app-auto-logo > img {
    border: solid 1px #f1f1f1;
    -o-object-fit: contain;
    object-fit: contain
}

.main[data-v-1895b289] {
    width: 100%;
    height: 400px
}

.app-step[data-v-106164c0] {
    padding: 2px 90px;
    position: relative;
    display: table;
    width: 100%;
    overflow: visible;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.app-step .step-item[data-v-106164c0] {
    position: relative;
    display: table-cell;
    width: 50%
}

.app-step .step-item .step-icon[data-v-106164c0] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #128bed
}

.app-step .step-item .step-tail[data-v-106164c0] {
    position: absolute;
    height: 4px;
    background: #128bed;
    left: 7px;
    right: 0;
    bottom: 5px
}

.app-step .step-item .step-content[data-v-106164c0] {
    font-size: 16px;
    margin-bottom: 15px
}

.app-step .step-item[data-v-106164c0]:nth-child(2) {
    text-align: right
}

.app-step .step-item:nth-child(2) .step-icon[data-v-106164c0] {
    float: right;
    background: #d6d6d6
}

.app-step .step-item:nth-child(2) .step-tail[data-v-106164c0] {
    left: 0;
    right: 7px;
    background: #d6d6d6
}

.app-step.success .step-item .step-icon[data-v-106164c0] {
    background: #128bed
}

.app-step.success .step-item .step-tail[data-v-106164c0] {
    background: #128bed
}

.app-step.error .step-item .step-icon[data-v-106164c0] {
    background: #FD485E
}

.app-step.error .step-item .step-tail[data-v-106164c0] {
    background: #FD485E
}

.vcode-btn {
    color: #128bed;
    min-width: 88px;
    display: inline-block
}

.vcode-btn[disabled] > span {
    color: #aaa;
    cursor: not-allowed
}


.data-vip-guid .wrap[data-v-5cc24e02] {
    background: #f3f9fd;
    padding: 10px 15px
}

.data-vip-guid .wrap .title[data-v-5cc24e02] {
    font-weight: bold;
    margin-bottom: 5px
}

.data-vip-guid .wrap .expire[data-v-5cc24e02] {
    color: #666
}

.data-vip-guid .wrap .guid-icon[data-v-5cc24e02] {
    float: left;
    margin-top: 5px;
    margin-right: 10px;
    width: 40px
}

.data-vip-guid .tis[data-v-5cc24e02] {
    color: #999;
    font-size: 12px;
    margin-top: 15px
}

.export-info[data-v-4c0b53fc] {
    width: 320px;
    min-height: 100px;
    padding-top: 8px;
    padding-left: 110px
}

.export-info .litimg[data-v-4c0b53fc] {
    float: left;
    margin-top: -8px;
    margin-left: -110px
}

.export-info .litimg img[data-v-4c0b53fc] {
    width: 100px
}

.export-info .mtext[data-v-4c0b53fc] {
    color: #128bed
}

.export-info .subtext[data-v-4c0b53fc] {
    color: #333;
    margin-top: 3px
}

.export-info .rline[data-v-4c0b53fc] {
    height: 1px;
    background: #eee;
    margin-top: 10px;
    margin: 10px;
    margin-left: 0px
}

.app-check-multi[data-v-b0bb7bc8] {
    padding-left: 85px
}

.app-check-multi > .cate-label[data-v-b0bb7bc8] {
    margin-right: 15px;
    width: 70px;
    float: left;
    margin-left: -85px;
    padding: 3px 0
}

.app-check-multi > .cate-data[data-v-b0bb7bc8] {
    float: left
}

.app-check-multi > .cate-data[data-v-b0bb7bc8] .ant-checkbox-group {
    line-height: 30px
}

.app-check-multi > .cate-data[data-v-b0bb7bc8] span {
    color: #666;
    font-weight: normal
}

.app-check-multi > .cate-data[data-v-b0bb7bc8] .ant-checkbox-group-item {
    margin-right: 30px
}

.pline-scroll[data-v-235ec5d0] {
    padding-left: 20px;
    padding-right: 20px;
    position: relative
}

.pline-scroll[data-v-235ec5d0]:after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}

.pline-scroll .pline-wrap[data-v-235ec5d0] {
    width: 100%;
    overflow: hidden
}

.pline-scroll .pline-wrap .pline-content[data-v-235ec5d0] {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.pline-scroll .pline-wrap .pline-item[data-v-235ec5d0] {
    width: 350px;
    float: left;
    border-radius: 2px;
    border: solid 1px #eee
}

.pline-scroll .pline-wrap .pline-item[data-v-235ec5d0]:not(:last-child) {
    margin-right: 15px
}

.pline-scroll .btn-prev[data-v-235ec5d0], .pline-scroll .btn-next[data-v-235ec5d0] {
    cursor: pointer;
    position: absolute;
    top: calc(50% - 27px);
    width: 14px;
    height: 46px;
    background-size: 14px 46px;
    z-index: 2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.pline-scroll .btn-prev[data-v-235ec5d0]:hover, .pline-scroll .btn-next[data-v-235ec5d0]:hover {
    opacity: .8
}

.pline-scroll .btn-prev.disbale[data-v-235ec5d0], .pline-scroll .btn-next.disbale[data-v-235ec5d0] {
    cursor: not-allowed;
    opacity: .5
}

.pline-scroll .btn-prev[data-v-235ec5d0] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/darrow_prev-b893ea34.png);
    left: 0px
}

.pline-scroll .btn-next[data-v-235ec5d0] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/darrow_next-80239b7c.png);
    right: 0px
}

.pline-scroll .btn-next-mask[data-v-235ec5d0] {
    z-index: 1;
    position: absolute;
    top: 2px;
    bottom: 2px;
    right: 0px;
    width: 40px;
    background-image: -webkit-gradient(linear, right top, left top, from(#fff), to(rgba(255, 255, 255, 0.2)));
    background-image: -o-linear-gradient(right, #fff, rgba(255, 255, 255, 0.2));
    background-image: linear-gradient(-90deg, #fff, rgba(255, 255, 255, 0.2))
}

.whead-text {
    display: table
}

.whead-text .whead-text-td, .whead-text .checktd {
    display: table-cell;
    vertical-align: middle
}

.whead-text .imgtd {
    padding-right: 10px
}

.whead-text.fixed {
    table-layout: fixed;
    width: 100%
}

.whead-text.fixed .checktd {
    width: 22px
}

.whead-text.fixed .imgtd {
    width: 50px
}

.app-rnav .rnav-menu[data-v-09ebc073] {
    position: fixed;
    z-index: 999;
    right: 0px;
    bottom: 146px;
    background: #fff;
    border-left: 1px solid #eee;
    border-top: 1px solid #eee;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    border-bottom: solid 1px #eee;
    -webkit-transition: right 0.5s ease;
    -o-transition: right 0.5s ease;
    transition: right 0.5s ease
}

.app-rnav .rnav-menu .item[data-v-09ebc073] {
    display: block;
    width: 46px;
    height: 64px;
    text-align: center;
    padding-top: 5px;
    position: relative
}

.app-rnav .rnav-menu .item .rnav-name[data-v-09ebc073] {
    display: block;
    color: #333;
    font-size: 10px;
    text-align: center;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    font-weight: normal;
    cursor: pointer;
    margin-bottom: 0px;
    margin-top: -2px
}

.app-rnav .rnav-menu .item .rnav-icon[data-v-09ebc073] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/rnav-icon-d3fe8969.png);
    background-size: 210px 60px;
    display: inline-block;
    width: 30px;
    height: 30px;
    background-position-y: -30px
}

.app-rnav .rnav-menu .item .rnav-icon.xcx[data-v-09ebc073] {
    background-position-x: -30px
}

.app-rnav .rnav-menu .item .rnav-icon.gzh[data-v-09ebc073] {
    background-position-x: -60px
}

.app-rnav .rnav-menu .item .rnav-icon.app[data-v-09ebc073] {
    background-position-x: -90px
}

.app-rnav .rnav-menu .item .rnav-icon.feedback[data-v-09ebc073] {
    background-position-x: -180px
}

.app-rnav .rnav-menu .item .rnav-icon.kf[data-v-09ebc073] {
    background-position-x: -120px
}

.app-rnav .rnav-menu .item .rnav-icon.totop[data-v-09ebc073] {
    background-position-x: -150px
}

.app-rnav .rnav-menu .item .rnav-icon.vip[data-v-09ebc073] {
    background-position-x: -210px
}

.app-rnav .rnav-menu .item .popover-img[data-v-09ebc073] {
    position: absolute;
    top: -70px;
    left: -250px;
    z-index: 1099;
    height: 178px;
    width: 195px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: left 0.5s ease, opacity 0.5s ease-in;
    -o-transition: left 0.5s ease, opacity 0.5s ease-in;
    transition: left 0.5s ease, opacity 0.5s ease-in
}

.app-rnav .rnav-menu .item .popover-img > img[data-v-09ebc073] {
    width: 195px;
    height: 178px;
    position: absolute;
    left: 0;
    top: 0
}

.app-rnav .rnav-menu .item[data-v-09ebc073]:hover {
    background-color: #128bed
}

.app-rnav .rnav-menu .item:hover .rnav-name[data-v-09ebc073] {
    color: #fff
}

.app-rnav .rnav-menu .item:hover .rnav-icon[data-v-09ebc073] {
    background-position-y: 0px
}

.app-rnav .rnav-menu .item:hover .popover-img[data-v-09ebc073] {
    opacity: 1;
    left: -200px;
    visibility: visible
}

.app-rnav .rnav-menu .vip .vip-icon[data-v-09ebc073] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_VIP-1c9da4e3.png);
    background-size: 100% 100%;
    display: inline-block;
    width: 30px;
    height: 30px
}

.app-rnav .rnav-menu .vip .popover-img[data-v-09ebc073] {
    width: 215px;
    height: 186px
}

.app-rnav .rnav-menu .vip .popover-img > img[data-v-09ebc073] {
    width: 215px;
    height: 186px
}

.app-rnav .rnav-menu .vip[data-v-09ebc073]:hover {
    background-color: #128bed
}

.app-rnav .rnav-menu .vip:hover .vip-icon[data-v-09ebc073] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_VIP_hover-e7f9e64f.png);
    background-size: 100% 100%
}

.app-rnav .rnav-menu .vip:hover .rnav-name[data-v-09ebc073] {
    color: #fff
}

.app-rnav .rnav-menu .vip:hover .popover-img[data-v-09ebc073] {
    opacity: 1;
    left: -200px;
    visibility: visible;
    cursor: auto
}

.app-rnav .rnav-menu .vip:hover .popover-img > .popover-tip[data-v-09ebc073] {
    position: absolute;
    color: #128bed;
    bottom: 17px;
    left: 66px
}

.app-rnav .rnav-menu .vip:hover .img-vip > img[data-v-09ebc073] {
    left: -18px;
    top: 0
}

.app-rnav .rnav-menu .vip:hover .img-vip > .popover-tip[data-v-09ebc073] {
    position: absolute;
    color: #128bed;
    bottom: 20px;
    left: 45px
}

.app-rnav .rnav-menu .item-out[data-v-09ebc073] {
    display: none
}

.app-rnav .top-menu[data-v-09ebc073] {
    bottom: 70px
}

@media screen and (max-width: 1335px) {
    .app-rnav .rnav-menu .item-out[data-v-09ebc073] {
        z-index: 999;
        cursor: pointer;
        display: block;
        position: absolute;
        height: 60px;
        width: 20px;
        background-color: #fff;
        border-radius: 2px 0px 0px 2px;
        border: 1px solid #eeeeee;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        left: -20px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        font-size: 20px;
        color: #979797;
        font-weight: bolder
    }

    .app-rnav .rnav-menu .item-out .item-out-img[data-v-09ebc073] {
        height: 16px;
        width: 16px;
        background-size: 100% 100%;
        background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/arrow_no_hover-73153cbb.png);
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%) rotate(-180deg);
        -ms-transform: translate(-50%, -50%) rotate(-180deg);
        transform: translate(-50%, -50%) rotate(-180deg)
    }

    .app-rnav .rnav-menu .item-out[data-v-09ebc073]:hover {
        background-color: #128bed;
        border: 1px solid #128bed
    }

    .app-rnav .rnav-menu .item-out:hover .item-out-img[data-v-09ebc073] {
        background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/arrow_hover-f4b9a4e3.png)
    }

    .app-rnav .rnav-menu .item-out .item-in-img[data-v-09ebc073] {
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }
}

.app-rnav .itemHide[data-v-09ebc073] {
    opacity: 0
}

.block[data-v-487a73bd] {
    display: block
}


.section-title {
    margin-bottom: 10px;
    color: #000;
    font-weight: 700
}


.assets-avatar {
    width: 66px
}

.app-datalist > .datalist-loading[data-v-296a8990] {
    height: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.app-datalist > .datalist-loading img[data-v-296a8990] {
    display: inline-block
}

.upload-content[data-v-7a290536] {
    height: 100%;
    position: relative;
    background-color: #f5f9ff
}

.upload-content .import-upload-field[data-v-7a290536] {
    height: 100%;
    border: dashed 1px #ddd;
    text-align: center;
    cursor: pointer;
    position: relative
}

.upload-content .import-upload-field > div[data-v-7a290536] {
    pointer-events: none
}

.upload-content .import-upload-field p[data-v-7a290536] {
    margin-top: 18px
}

.upload-content .import-upload-pickfile[data-v-7a290536] {
    width: 85px;
    margin: 18px auto;
    margin-top: 18px;
    border-bottom: solid 2px #23b7e5;
    line-height: 32px
}

.upload-content .import-upload-load[data-v-7a290536], .upload-content .import-upload-xlx[data-v-7a290536] {
    color: #23b7e5
}

.upload-content .import-upload-load[data-v-7a290536], .upload-content .import-upload-xlx[data-v-7a290536], .upload-content .import-upload-fail[data-v-7a290536] {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.upload-content .import-upload-xlx .import-upload-pickfile[data-v-7a290536] {
    border-bottom-color: #23b7e5
}

.upload-content .import-upload-suc[data-v-7a290536] {
    color: #00ac3b
}

.upload-content .import-upload-suc .import-upload-pickfile[data-v-7a290536] {
    border-bottom-color: #00ac3b
}

.upload-content .import-upload-fail[data-v-7a290536] {
    color: #d0021b
}

.upload-content .import-upload-fail .import-upload-pickfile[data-v-7a290536] {
    border-bottom-color: #d0021b
}

.upload-content .import-upload-preinfo[data-v-7a290536] {
    display: none
}

.upload-content .import-des[data-v-7a290536] {
    margin-top: 20px;
    color: #999999;
    letter-spacing: 1.79px
}

.upload-content .import-des-title[data-v-7a290536] {
    margin-bottom: 15px
}

.upload-content .import-upload-load-img[data-v-7a290536] {
    width: 80px;
    margin-bottom: 15px
}

.ui-partial-container[data-v-5d043385] {
    position: relative;
    width: 100%
}

.ui-partial-container > .inner-container[data-v-5d043385] {
    overflow: hidden;
    width: 100%
}

.ui-partial-container > .inner-container > .inner-wrapper[data-v-5d043385] {
    width: 100%
}

.ui-partial-container > .expander-box[data-v-5d043385] {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #fff;
    font-size: 14px;
    line-height: 22px;
    -webkit-transition: background-color .25s ease;
    -o-transition: background-color .25s ease;
    transition: background-color .25s ease
}

.ui-partial-container > .expander-box > .expand-text[data-v-5d043385] {
    color: #128bed;
    cursor: pointer
}

.page-action .item[data-v-09bf3398]:not(:last-child) {
    border-bottom: solid 1px #fff
}


.invite-text[data-v-5320d3a8] {
    line-height: 1.5;
    padding: 4px 11px;
    padding-right: 5px;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    min-height: 52px;
    word-break: break-all
}

.invite-textarea[data-v-5320d3a8] {
    width: 1px;
    height: 1px;
    resize: none;
    position: absolute;
    z-index: -100000;
    opacity: 0;
    left: 0px
}

.invite-copy-btn[data-v-5320d3a8] {
    margin-left: -5px;
    margin-right: -15px
}

.steps-content[data-v-3a0cfe8b] {
    padding-top: 10px;
    height: 300px
}

.steps-content .des[data-v-3a0cfe8b] {
    color: #666;
    padding-left: 15px;
    margin-top: 20px
}

.steps-content .fail-list[data-v-3a0cfe8b] {
    height: 150px;
    overflow-y: auto;
    padding-left: 120px
}

.steps-content .fail-list table td[data-v-3a0cfe8b] {
    color: #FD485E;
    padding: 4px 6px
}

.ant-result.step-result {
    padding-top: 10px
}

.ant-result.step-result .ant-result-icon {
    margin-bottom: 20px
}

.ant-result.step-result .ant-result-icon > .anticon {
    font-size: 58px
}

.ant-result.step-result .ant-result-title {
    font-size: 16px;
    color: #333
}

.ant-result.step-result .ant-result-extra {
    margin-top: 15px
}

.app-edit-company .form-model-upload .avatar-uploader[data-v-3b35a036] {
    float: left;
    width: auto
}

.app-edit-company .form-model-upload .desc[data-v-3b35a036] {
    float: left;
    margin-left: 15px
}

.app-edit-company .form-model-upload .desc p[data-v-3b35a036] {
    color: #999;
    margin-top: 5px;
    margin-bottom: 5px;
    line-height: 22px
}

.app-edit-company .area-choose[data-v-3b35a036] {
    margin-bottom: 0px !important;
    margin-top: 40px;
    position: relative
}

.app-edit-company .area-choose[data-v-3b35a036] .ant-form-item-label {
    position: absolute;
    top: -40px;
    left: 0
}

.verify-input[data-v-f268e810] {
    width: 70%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.verify-btn[data-v-f268e810] {
    width: 30%;
    font-size: 12px;
    padding: 6px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    line-height: 18px;
    margin-top: -2px;
    margin-left: -1px;
    background: #fff;
    border: 1px solid #D6D6D6;
    border-left: none;
    color: #128BED
}

.change-owner-captcha[data-v-f268e810] {
    margin-top: 20px
}

[data-v-f268e810] .ant-select-selection {
    border: 1px solid #d6d6d6
}

.change-member-info[data-v-f268e810] {
    color: #666;
    font-size: 14px
}

[data-v-f268e810] .nc-container {
    border-radius: 4px;
    height: 32px
}

[data-v-f268e810] .nc-container .nc-lang-cnt {
    border-radius: 4px;
    line-height: 32px !important
}

[data-v-f268e810] .nc-container .nc_scale {
    border-radius: 4px;
    height: 32px !important
}

[data-v-f268e810] .nc-container .nc_scale .nc_iconfont {
    border-radius: 4px;
    height: 32px !important;
    line-height: 32px !important
}

.invite-text[data-v-43d5a32d] {
    line-height: 1.5;
    padding: 4px 11px;
    padding-right: 5px;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    min-height: 52px;
    word-break: break-all
}

.invite-textarea[data-v-43d5a32d] {
    width: 1px;
    height: 1px;
    resize: none;
    position: absolute;
    z-index: -100000;
    opacity: 0;
    left: 0px
}

.invite-copy-btn[data-v-43d5a32d] {
    margin-left: -5px;
    margin-right: -15px
}

.left-saas-list[data-v-4bb4aef2] {
    position: fixed;
    top: 56px;
    width: 350px;
    left: 0px;
    bottom: 0px;
    z-index: 1020;
    background: #fff;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    display: none;
    -webkit-transition: visibility .3s;
    -o-transition: visibility .3s;
    transition: visibility .3s;
    overflow-y: auto
}

.left-saas-list.visible[data-v-4bb4aef2] {
    display: block
}

.left-saas-list .cell[data-v-4bb4aef2] {
    width: 100%;
    height: 80px;
    background: #F3F9FD;
    padding: 10px;
    padding-left: 20px;
    display: table;
    margin-top: 15px;
    margin-bottom: 15px
}

.left-saas-list .cell .cell-ht[data-v-4bb4aef2], .left-saas-list .cell .cell-content[data-v-4bb4aef2], .left-saas-list .cell .cell-ft[data-v-4bb4aef2] {
    display: table-cell
}

.left-saas-list .cell .cell-ht[data-v-4bb4aef2] {
    width: 80px;
    vertical-align: top
}

.left-saas-list .cell .cell-content[data-v-4bb4aef2] {
    vertical-align: top
}

.left-saas-list .cell .cell-ft[data-v-4bb4aef2] {
    vertical-align: middle;
    width: 80px;
    text-align: right
}

.left-saas-list .cell .saas-icon[data-v-4bb4aef2] {
    width: 60px
}

.left-saas-list .cell .category-icon[data-v-4bb4aef2] {
    width: 60px
}

.left-saas-list .cell .name[data-v-4bb4aef2] {
    color: #333;
    font-size: 16px;
    font-family: PingFangSC-Medium, PingFang SC;
    margin-top: 5px
}

.left-saas-list .cell .desc[data-v-4bb4aef2] {
    color: #999;
    font-size: 14px;
    margin-top: 10px
}

.left-saas-list .cell:hover .name[data-v-4bb4aef2] {
    color: #128bed
}

.left-saas-list .ant-drawer-mask {
    background: transparent
}

.left-saas-list .ant-drawer-content-wrapper {
    margin-top: 56px
}

.left-saas-list .ant-drawer-body {
    padding: 0px;
    padding-bottom: 5px
}

.w-new-space .ant-drawer-close {
    color: #D6D6D6
}

.w-new-space .user-icon-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.w-new-space .user-icon-wrap .user-icon {
    position: relative
}

.w-new-space .user-icon-wrap .user-icon .icon {
    width: 56px;
    height: 56px;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.w-new-space .user-icon-wrap .user-icon .icon img {
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    vertical-align: middle;
    -o-object-fit: contain;
    object-fit: contain
}

.w-new-space .user-icon-wrap .user-icon .icon-mask {
    display: none;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0
}

.w-new-space .user-icon-wrap .user-icon .icon-mask i {
    position: relative;
    top: 17px;
    color: #128bed
}

.w-new-space .user-icon-wrap .user-icon:hover .icon-mask {
    display: block
}

.w-new-space .user-icon-wrap .user-icon .user-text {
    font-size: 12px;
    color: #666;
    text-align: center
}

.w-new-space .user-icon-wrap .avatar-uploader > .ant-upload {
    margin: 0;
    width: 56px;
    height: 56px
}

.w-new-space .ant-form-item-label > label::after {
    display: none
}

.w-new-space .ant-form-item-control {
    line-height: unset
}

.w-new-space .jurisdiction {
    margin-right: 20px
}

.w-new-space .ant-radio-wrapper {
    color: #666
}

.w-new-space i {
    vertical-align: middle
}

.w-new-space .ant-radio-wrapper:first-child {
    margin-right: 22px
}

.w-new-space .ant-drawer-footer .blue-gray {
    background: #A0D1F8;
    border: 1px solid #A0D1F8
}

.w-new-space .ant-input-affix-wrapper .ant-input:not(:last-child) {
    padding-right: 66px !important;
    position: relative
}

.w-new-space .ant-input-affix-wrapper .ant-input:not(:last-child) /deep/ .ant-input-suffix {
    right: 40px !important
}

.w-new-space .ant-input-affix-wrapper .ant-input:not(:last-child) .slot-style {
    position: absolute;
    right: 12px
}

.w-new-space .ant-input-group-addon {
    background: #fff !important;
    font-size: 14px;
    color: #999
}

.space-log-model .ant-modal-close-x {
    color: #D6D6D6
}

.space-log-model .oper-wrap {
    font-size: 14px;
    color: #666
}

.space-log-model .oper-wrap .oper-inner {
    color: #333
}

.space-log-model .ant-modal-footer {
    display: none
}

.space-log-model .td-coy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.space-log-model .td-coy .cont {
    margin-left: 10px !important
}

.space-log-model .ant-table-header {
    overflow: auto !important;
    margin-bottom: 0 !important
}

.space-log-model .ant-table-body {
    overflow: auto !important
}

.w-link-invite-modal-phone-content-wrap[data-v-483d0593] {
    padding: 30px 0 20px 0
}

.w-link-invite-modal-phone-content-wrap .content[data-v-483d0593] {
    font-size: 14px;
    color: #333;
    font-family: 'PingFangSC-Medium'
}

.w-link-invite-modal-phone-content-wrap[data-v-483d0593] .ant-checkbox-checked .ant-checkbox-inner {
    border: none
}

.w-link-invite-modal-phone-content-wrap .error-input[data-v-483d0593] input {
    border-color: #FD485E
}

.w-link-invite-modal-phone-content-wrap .error-input[data-v-483d0593] input:focus {
    border-color: #ff707c;
    border-right-width: 1px !important;
    outline: 0;
    -webkit-box-shadow: 0 0 0 2px rgba(253, 72, 94, 0.2);
    box-shadow: 0 0 0 2px rgba(253, 72, 94, 0.2)
}

.w-link-invite-modal-phone-content-wrap .checked-icon[data-v-483d0593] {
    color: #00AD65;
    font-size: 16px;
    margin-left: 10px
}

.w-link-invite-modal-phone-content-wrap .fail-icon[data-v-483d0593] {
    color: #FD485D;
    font-size: 16px;
    margin-left: 10px
}

.w-link-invite-modal-phone-content-wrap .error-message[data-v-483d0593] {
    font-size: 14px;
    color: #FD485D;
    position: relative;
    top: -12px
}

.w-link-invite-modal-phone-content-wrap .ant-checkbox-group[data-v-483d0593] {
    margin: 20px 0;
    width: 100%
}

.w-link-invite-modal-phone-content-wrap .ant-checkbox-group .col-left[data-v-483d0593] {
    margin-right: 21px
}

.w-link-invite-modal-phone-content-wrap .ant-checkbox-group[data-v-483d0593] .ant-checkbox-wrapper {
    font-size: 14px;
    color: #666;
    font-weight: normal
}

.w-link-invite-modal-phone-content-wrap .ant-checkbox-group[data-v-483d0593] .ant-checkbox-wrapper .ant-checkbox-inner {
    border-color: #D6D6D6;
    width: 14px;
    height: 14px
}

.w-link-invite-modal-phone-content-wrap .ant-checkbox-group[data-v-483d0593] .ant-checkbox-wrapper > span {
    padding-left: 0px;
    padding-right: 0px
}

.w-link-invite-modal-member-content-wrap[data-v-fbcf39b4] {
    padding: 30px 0 20px 0
}

.w-link-invite-modal-member-content-wrap .input-search-wrap[data-v-fbcf39b4] {
    position: relative;
    width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.w-link-invite-modal-member-content-wrap .input-search-wrap .ant-input-search[data-v-fbcf39b4] {
    width: 300px
}

.w-link-invite-modal-member-content-wrap .input-search-wrap .ant-input-search[data-v-fbcf39b4] .ant-input-affix-wrapper .ant-input-prefix {
    left: 9px
}

.w-link-invite-modal-member-content-wrap .input-search-wrap .ant-input-search[data-v-fbcf39b4] .ant-input-affix-wrapper .ant-input-prefix i {
    color: #999 !important
}

.w-link-invite-modal-member-content-wrap .input-search-wrap .ant-input-search .ant-input-group-addon .ant-input-search-button[data-v-fbcf39b4] {
    padding: 0 9px;
    background: #F3F9FD;
    border-color: #128bed;
    color: #128bed;
    font-size: 22px
}

.w-link-invite-modal-member-content-wrap .input-search-wrap .member-icon[data-v-fbcf39b4] {
    width: 30px;
    height: 30px;
    margin-left: 20px
}

.w-link-invite-modal-member-content-wrap .input-search-wrap .member-wrap[data-v-fbcf39b4] {
    position: absolute;
    top: 32px;
    left: 0;
    width: 270px;
    height: 300px;
    background: #fff;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    border-radius: 4px 4px 0 0;
    z-index: 9
}

.w-link-invite-modal-member-content-wrap .input-search-wrap .member-wrap .member-join-status-wrap[data-v-fbcf39b4] {
    height: 244px;
    overflow-y: auto
}

.w-link-invite-modal-member-content-wrap .input-search-wrap .member-wrap .member-join-status-wrap .member-top[data-v-fbcf39b4] {
    height: 44px;
    line-height: 44px;
    padding: 0 20px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #999
}

.w-link-invite-modal-member-content-wrap .input-search-wrap .member-wrap .member-join-status-wrap .member-content .ant-checkbox-group[data-v-fbcf39b4] {
    margin: 0
}

.w-link-invite-modal-member-content-wrap .input-search-wrap .member-wrap .member-join-status-wrap .member-content .item[data-v-fbcf39b4] {
    height: 44px;
    padding: 0 10px 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.w-link-invite-modal-member-content-wrap .input-search-wrap .member-wrap .member-join-status-wrap .member-content .item .app-auto-logo[data-v-fbcf39b4] {
    margin: 0 10px
}

.w-link-invite-modal-member-content-wrap .input-search-wrap .member-wrap .member-join-status-wrap .member-content .item .member-name[data-v-fbcf39b4] {
    word-break: break-all
}

.w-link-invite-modal-member-content-wrap .input-search-wrap .member-wrap .member-join-status-wrap .member-content .item .member-name[data-v-fbcf39b4] i {
    font-style: normal
}

.w-link-invite-modal-member-content-wrap .input-search-wrap .member-wrap .member-join-status-wrap .member-content .item .member-phone[data-v-fbcf39b4] {
    display: block;
    font-size: 12px;
    color: #999
}

.w-link-invite-modal-member-content-wrap .input-search-wrap .member-wrap .member-join-status-wrap .member-content .item .member-phone[data-v-fbcf39b4] i {
    font-style: normal
}

.w-link-invite-modal-member-content-wrap .input-search-wrap .member-wrap .member-footer[data-v-fbcf39b4] {
    border-top: 1px solid #eee;
    height: 56px;
    line-height: 56px;
    padding: 0 20px;
    text-align: right
}

.w-link-invite-modal-member-content-wrap .input-search-wrap .member-wrap .member-footer .btn[data-v-fbcf39b4] {
    width: 74px;
    height: 32px;
    line-height: 18px;
    text-align: center;
    border-radius: 4px;
    background: #128bed;
    color: #fff;
    font-size: 14px
}

.w-link-invite-modal-member-content-wrap .ant-checkbox-group[data-v-fbcf39b4] {
    margin: 32px 0 20px 0;
    width: 100%
}

.w-link-invite-modal-member-content-wrap .ant-checkbox-group .col-left[data-v-fbcf39b4] {
    margin-right: 21px
}

.w-link-invite-modal-member-content-wrap .ant-checkbox-group[data-v-fbcf39b4] .ant-checkbox-wrapper {
    font-size: 14px;
    color: #666;
    font-weight: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.w-link-invite-modal-member-content-wrap .ant-checkbox-group[data-v-fbcf39b4] .ant-checkbox-wrapper .ant-checkbox-inner {
    border-color: #D6D6D6;
    width: 14px;
    height: 14px
}

.w-link-invite-modal-member-content-wrap .ant-checkbox-group[data-v-fbcf39b4] .ant-checkbox-wrapper > span {
    padding-left: 0px;
    padding-right: 0px
}

.w-link-invite-modal-member-content-wrap .ant-checkbox-group[data-v-fbcf39b4] .ant-checkbox-wrapper > span + span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.w-link-invite-modal-member-content-wrap .line-1[data-v-fbcf39b4] {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical
}

.w-link-invite-modal .content-wrap[data-v-112e2163] {
    padding: 20px 0
}

.w-link-invite-modal .thelp[data-v-112e2163] {
    margin-top: 20px !important;
    padding: 20px 14px !important;
    color: #128bed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.w-link-invite-modal .invite-textarea[data-v-112e2163] {
    padding: 0;
    resize: none;
    min-height: unset;
    height: 22px !important;
    line-height: 22px;
    border: none;
    background: transparent;
    color: #128bed;
    margin-left: 2px
}

.w-link-invite-modal .invite-textarea[data-v-112e2163]:focus {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none
}

.w-link-invite-modal .footer[data-v-112e2163] {
    background: #fff
}

.w-link-invite-modal .footer .success-text[data-v-112e2163] {
    background-color: #52C41B;
    border-color: #52C41B
}

.w-link-invite-modal .item-wrap .item[data-v-112e2163] {
    position: relative;
    padding: 30px 0
}

.w-link-invite-modal .item-wrap .item[data-v-112e2163]:hover {
    cursor: pointer
}

.w-link-invite-modal .item-wrap .item .item-label[data-v-112e2163] {
    font-size: 16px;
    color: #333
}

.w-link-invite-modal .item-wrap .item .item-tip[data-v-112e2163] {
    font-size: 14px;
    color: #999;
    margin-top: 10px
}

.w-link-invite-modal .item-wrap .item[data-v-112e2163]:first-child {
    border-bottom: 1px solid #eee
}

.w-link-invite-modal .item-wrap .item i[data-v-112e2163] {
    position: absolute;
    right: 0;
    color: #999;
    font-size: 14px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.w-link-invite-modal .modal-header-s .title-wrap[data-v-112e2163] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee
}

.w-link-invite-modal .modal-header-s .title-wrap i[data-v-112e2163] {
    color: #999;
    font-size: 14px;
    margin-right: 10px
}

.w-link-invite-modal .modal-header-s .title-wrap .title[data-v-112e2163] {
    font-size: 16px;
    color: #333;
    font-family: 'PingFangSC-Medium'
}

.w-link-footer-success-text[data-v-112e2163] .ant-modal-footer button + button {
    background-color: #52C41B;
    border-color: #52C41B
}

.w-other-link-invite-modal .ant-modal-content .ant-modal-header {
    display: none !important
}

.w-other-link-invite-modal .modal-header-s::after {
    content: " ";
    position: absolute;
    height: 1px;
    background-color: #eee;
    bottom: 0px;
    left: 20px;
    right: 20px
}

.w-other-link-invite-modal .ant-modal-body {
    padding-bottom: 0;
    padding-top: 18px
}

.w-other-link-invite-modal .ant-tabs-bar {
    margin-bottom: 0
}

.w-other-link-invite-modal .tab-s .ant-tabs-nav {
    font-size: 16px;
    color: #999
}

.w-other-link-invite-modal .tab-s .ant-tabs-nav .ant-tabs-tab {
    padding: 0 0 18px 0
}

.w-other-link-invite-modal .tab-s .ant-tabs-nav .ant-tabs-tab:hover {
    color: #999;
    font-weight: normal
}

.w-other-link-invite-modal .tab-s .ant-tabs-nav .ant-tabs-tab-active {
    font-weight: bold;
    color: #333 !important
}

.w-other-link-invite-modal .tab-s .ant-tabs-nav .ant-tabs-tab-active:hover {
    font-weight: bold;
    color: #333 !important
}

.new-creat-group-modal .content-wrap[data-v-8c086f52] {
    margin: 8px 0 31px 0;
    text-align: left
}

.new-creat-group-modal .content-wrap .item[data-v-8c086f52] {
    height: 56px;
    line-height: 56px;
    padding: 0 15px;
    font-size: 14px;
    color: #333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.new-creat-group-modal .content-wrap .item .item-right .oper > span[data-v-8c086f52] {
    margin-left: 17px;
    color: #666;
    cursor: pointer
}

.new-creat-group-modal .content-wrap .item .item-right .oper > span[data-v-8c086f52]:hover {
    color: #128bed
}

.new-creat-group-modal .content-wrap .item.item-select[data-v-8c086f52] {
    background: #F5F9FF;
    color: #128bed
}

.new-creat-group-modal .content-wrap .item.item-select .oper[data-v-8c086f52] {
    display: block
}

.new-creat-group-modal .content-wrap .item[data-v-8c086f52]:hover {
    background: #F5F9FF;
    color: #128bed
}

.new-creat-group-modal .content-wrap .item:hover .oper[data-v-8c086f52] {
    display: block
}

.new-creat-group-modal .content-wrap .item:hover .oper > span[data-v-8c086f52] {
    margin-left: 17px;
    color: #666;
    cursor: pointer
}

.new-creat-group-modal .content-wrap .item:hover .oper > span[data-v-8c086f52]:hover {
    color: #128bed
}

.new-creat-group-modal input[data-v-8c086f52] {
    height: 40px;
    line-height: 40px
}

.new-creat-group-modal .tab-group {
    text-align: center
}

.new-creat-group-modal .tab-group .ant-tabs-nav-wrap .ant-tabs-nav .ant-tabs-tab {
    padding: 0 0 10px 0
}

.new-creat-group-modal .tab-group .ant-tabs-bar {
    border-bottom: 0
}

.new-creat-group-modal .ant-btn {
    visibility: hidden
}

.new-creat-group-modal .ant-btn-primary {
    visibility: visible
}

.new-creat-group-modal .ant-input-group-addon {
    background: #fff !important;
    color: #999 !important
}

.work-space-confirm-pop .ant-popover-message > .anticon {
    display: none
}

.work-space-confirm-pop .ant-popover-message-title {
    padding-left: 0
}

.work-space-confirm-pop .ant-popover-content {
    position: relative;
    right: -10px
}

.work-space-confirm-pop .ant-popover-content > .ant-popover-arrow {
    top: -4px;
    right: 21px
}

.w-move-group-modal .ant-modal-body[data-v-33dd2347] {
    padding: 10px 20px 40px 20px
}

.w-move-group-modal .thelp-s[data-v-33dd2347] {
    text-align: center
}

.w-move-group-modal .radio-wrap[data-v-33dd2347] {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-height: 400px;
    overflow-y: auto
}

.w-move-group-modal .radio-wrap .ant-radio-wrapper[data-v-33dd2347] {
    margin-right: 0;
    font-weight: normal;
    width: 50%
}

.w-select-group-modal .ant-modal-body[data-v-f3a81682] {
    padding: 10px 20px 40px 20px
}

.w-select-group-modal .radio-wrap[data-v-f3a81682] {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-height: 428px;
    overflow: auto
}

.w-select-group-modal .radio-wrap .ant-radio-wrapper[data-v-f3a81682] {
    margin-right: 0;
    font-weight: normal
}

.w-select-group-modal .radio-wrap .ant-radio-wrapper span.ant-radio + *[data-v-f3a81682] {
    word-break: break-all
}

.w-select-group-modal .ant-modal-body {
    padding: 10px 20px 40px 20px
}

.w-select-group-modal .ant-modal-close-x {
    color: #D6D6D6
}


.w-add-note-modal .header-input[data-v-93778886] {
    padding: 0 20px
}

.w-add-note-modal .input-compalted[data-v-93778886] {
    color: #666666;
    height: 32px;
    line-height: 32px;
    padding: 0 10px;
    border: 1px solid #D6D6D6;
    border-radius: 4px;
    font-size: 14px;
    background: #F6F6F6;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical
}

.w-add-note-modal .scroll-wrap[data-v-93778886] {
    max-height: 500px;
    overflow-y: auto
}

.w-add-note-modal .scroll-wrap .content-wrap[data-v-93778886] {
    margin: 0 20px;
    margin-top: 20px;
    border: 1px solid #D6D6D6;
    border-radius: 4px;
    background: #FCFCFC;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.w-add-note-modal .scroll-wrap .content-wrap .scroll-content[data-v-93778886] {
    min-height: 246px
}

.w-add-note-modal .scroll-wrap .content-wrap .scroll-content[data-v-93778886] textarea {
    word-break: break-all
}

.w-add-note-modal .scroll-wrap .content-wrap .scroll-content[data-v-93778886] textarea.ant-input {
    padding-left: 0
}

.w-add-note-modal .scroll-wrap .content-wrap .scroll-content[data-v-93778886] .ant-form-item-control-wrapper {
    padding-left: 10px
}

.w-add-note-modal .scroll-wrap .content-wrap .scroll-content .row-3[data-v-93778886] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.w-add-note-modal .scroll-wrap .content-wrap .scroll-content .row-3 .ant-input-affix-wrapper[data-v-93778886] {
    width: 300px
}

.w-add-note-modal .scroll-wrap .content-wrap .scroll-content .row-3 i[data-v-93778886] {
    color: #128bed
}

.w-add-note-modal .scroll-wrap .content-wrap .scroll-content .row-3 > .oper[data-v-93778886] {
    font-size: 14px;
    color: #999;
    cursor: pointer;
    margin-left: 10px
}

.w-add-note-modal .scroll-wrap .content-wrap .scroll-content .row-3.picture[data-v-93778886] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 0;
    margin: 0 9px 15px 9px
}

.w-add-note-modal .scroll-wrap .content-wrap .scroll-content .row-3.picture .img-wrap[data-v-93778886] {
    width: 100px;
    height: 100px;
    border: 1px solid #EEEEEE;
    border-radius: 4px;
    margin-right: 10px;
    margin-top: 15px;
    position: relative
}

.w-add-note-modal .scroll-wrap .content-wrap .scroll-content .row-3.picture .img-wrap .zhezhao[data-v-93778886] {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px
}

.w-add-note-modal .scroll-wrap .content-wrap .scroll-content .row-3.picture .img-wrap .zhezhao .zoom[data-v-93778886] {
    position: absolute;
    top: 50%;
    left: 35%;
    -webkit-transform: translate(-35%, -50%);
    -ms-transform: translate(-35%, -50%);
    transform: translate(-35%, -50%);
    color: #fff;
    cursor: pointer;
    font-size: 14px
}

.w-add-note-modal .scroll-wrap .content-wrap .scroll-content .row-3.picture .img-wrap .zhezhao .shanchu[data-v-93778886] {
    position: absolute;
    top: 50%;
    right: 35%;
    -webkit-transform: translate(35%, -50%);
    -ms-transform: translate(35%, -50%);
    transform: translate(35%, -50%);
    color: #fff;
    cursor: pointer;
    font-size: 14px
}

.w-add-note-modal .scroll-wrap .content-wrap .scroll-content .row-3.picture .img-wrap:hover .zhezhao[data-v-93778886] {
    display: block
}

.w-add-note-modal .scroll-wrap .content-wrap .scroll-content .row-3.picture .img-wrap[data-v-93778886]:nth-child(5n) {
    margin-right: 0px
}

.w-add-note-modal .scroll-wrap .content-wrap .scroll-content .row-3.picture .img-wrap img[data-v-93778886] {
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    vertical-align: middle;
    -o-object-fit: contain;
    object-fit: contain
}

.w-add-note-modal .scroll-wrap .content-wrap .oper-wrap[data-v-93778886] {
    height: 32px;
    line-height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 15px;
    background: #F6F6F6;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px
}

.w-add-note-modal .scroll-wrap .content-wrap .oper-wrap .oper-left[data-v-93778886] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.w-add-note-modal .scroll-wrap .content-wrap .oper-wrap .oper-left .oper-text[data-v-93778886] {
    margin-right: 30px;
    cursor: pointer;
    color: #999;
    font-size: 14px
}

.w-add-note-modal .scroll-wrap .content-wrap .oper-wrap .oper-left .oper-text[data-v-93778886]:hover {
    color: #128bed
}

.w-add-note-modal .scroll-wrap .content-wrap .oper-wrap .oper-left .oper-text i[data-v-93778886] {
    margin-right: 2px;
    width: 22px;
    height: 22px
}

.w-add-note-modal .scroll-wrap .content-wrap .oper-wrap .oper-right[data-v-93778886] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.w-add-note-modal .scroll-wrap .content-wrap .oper-wrap .oper-right > div[data-v-93778886] {
    width: 74px;
    height: 32px;
    font-size: 14px;
    text-align: center;
    cursor: pointer
}

.w-add-note-modal .scroll-wrap .content-wrap .oper-wrap .oper-right > div.cancel[data-v-93778886] {
    color: #999
}

.w-add-note-modal .scroll-wrap .content-wrap .oper-wrap .oper-right > div.confirm[data-v-93778886] {
    background: #128bed;
    color: #fff;
    border-bottom-right-radius: 3px
}

.w-add-note-modal .scroll-wrap .node-list-wrap .node-item[data-v-93778886] {
    padding: 20px 20px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #eee
}

.w-add-note-modal .scroll-wrap .node-list-wrap .node-item .item-left[data-v-93778886] {
    width: 38px;
    margin-right: 20px
}

.w-add-note-modal .scroll-wrap .node-list-wrap .node-item .item-right[data-v-93778886] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative
}

.w-add-note-modal .scroll-wrap .node-list-wrap .node-item .item-right .edit-date[data-v-93778886] {
    font-size: 14px;
    color: #999
}

.w-add-note-modal .scroll-wrap .node-list-wrap .node-item .item-right .edit-info[data-v-93778886] {
    margin-top: 6px;
    font-size: 14px;
    color: #333
}

.w-add-note-modal .scroll-wrap .node-list-wrap .node-item .item-right .edit-info .nick-name[data-v-93778886] {
    font-weight: bold
}

.w-add-note-modal .scroll-wrap .node-list-wrap .node-item .item-right .item-right-content-wrap[data-v-93778886] {
    margin-top: 10px
}

.w-add-note-modal .scroll-wrap .node-list-wrap .node-item .item-right .item-right-content-wrap .content[data-v-93778886] {
    font-size: 14px;
    color: #666;
    word-break: break-all
}

.w-add-note-modal .scroll-wrap .node-list-wrap .node-item .item-right .item-right-content-wrap .flex-img[data-v-93778886] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.w-add-note-modal .scroll-wrap .node-list-wrap .node-item .item-right .item-right-content-wrap .flex-img .pic-wrap[data-v-93778886] {
    width: 100px;
    height: 100px;
    border: 1px solid #EEEEEE;
    border-radius: 4px;
    margin-right: 10px;
    margin-top: 15px;
    position: relative;
    margin-top: 15px
}

.w-add-note-modal .scroll-wrap .node-list-wrap .node-item .item-right .item-right-content-wrap .flex-img .pic-wrap img[data-v-93778886] {
    width: 100%;
    height: 100%;
    vertical-align: middle;
    -o-object-fit: contain;
    object-fit: contain
}

.w-add-note-modal .scroll-wrap .node-list-wrap .node-item .item-right .item-right-content-wrap .flex-img .pic-wrap .zhezhao[data-v-93778886] {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px
}

.w-add-note-modal .scroll-wrap .node-list-wrap .node-item .item-right .item-right-content-wrap .flex-img .pic-wrap .zhezhao .zoom[data-v-93778886] {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    cursor: pointer;
    font-size: 14px
}

.w-add-note-modal .scroll-wrap .node-list-wrap .node-item .item-right .item-right-content-wrap .flex-img .pic-wrap:hover .zhezhao[data-v-93778886] {
    display: block
}

.w-add-note-modal .scroll-wrap .node-list-wrap .node-item .item-right .item-right-content-wrap .link[data-v-93778886] {
    color: #128bed;
    cursor: pointer
}

.w-add-note-modal .scroll-wrap .node-list-wrap .node-item .item-right .item-right-content-wrap .tag[data-v-93778886] {
    margin-top: 15px;
    background: #F6F6F6;
    border-radius: 4px;
    height: 32px;
    line-height: 32px;
    padding: 0 15px;
    display: inline-block;
    margin-right: 10px
}

.w-add-note-modal .scroll-wrap .node-list-wrap .node-item .item-right .item-right-content-wrap .tag i[data-v-93778886] {
    margin-right: 3px;
    color: #128bed
}

.w-add-note-modal .scroll-wrap .node-list-wrap .node-item .item-right .item-right-oper[data-v-93778886] {
    position: absolute;
    top: 0px;
    right: 0px;
    color: #999
}

.w-add-note-modal .scroll-wrap .node-list-wrap .node-item .item-right .item-right-oper i[data-v-93778886] {
    font-size: 14px;
    margin-left: 10px;
    cursor: pointer
}

.w-add-note-modal .scroll-wrap .node-list-wrap .node-item .item-right .item-right-oper i[data-v-93778886]:hover {
    color: #128bed
}

.w-add-note-modal .scroll-wrap .node-list-wrap .node-item[data-v-93778886]:hover {
    background: #F3F9FD
}

.w-add-note-modal .ant-modal-body {
    padding: 20px 0px 0px 0px
}

.w-add-note-modal .ant-modal-body textarea.ant-input {
    border: none;
    resize: none;
    background: #FCFCFC;
    margin-top: 5px
}

.w-add-note-modal .ant-modal-body textarea.ant-input:focus {
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none
}

.w-add-note-modal .ant-upload-list {
    display: none
}

.w-add-note-modal .input-completed .ant-input {
    color: #128bed
}

.w-add-note-modal .input-ing .ant-input {
    color: #333
}

.w-manage-member-modal .ant-drawer-footer .blue-gray[data-v-83a649b8] {
    background: #A0D1F8;
    border: 1px solid #A0D1F8
}

.w-manage-member-modal .member-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    width: 100%
}

.w-manage-member-modal .member-wrap .ant-btn-primary[disabled] {
    background: #F6F6F6;
    color: #666;
    border-color: #D6D6D6
}

.w-manage-member-modal .member-wrap .ant-transfer-list .ant-transfer-list-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 8px 0;
    margin: 0px 12px;
    width: calc(100% - 24px)
}

.w-manage-member-modal .member-wrap .ant-transfer-list .ant-transfer-list-header .ant-transfer-list-header-selected {
    padding-left: 0
}

.w-manage-member-modal .member-wrap .ant-transfer-list .ant-transfer-list-header .ant-transfer-list-header-selected > span {
    left: 0px
}

.w-manage-member-modal .member-wrap .ant-transfer-list .ant-transfer-list-header .ant-transfer-list-header-selected > span:first-child {
    display: none
}

.w-manage-member-modal .member-wrap .ant-transfer-list .ant-transfer-list-content .LazyLoad {
    height: 42px !important;
    margin: 10px 0
}

.w-manage-member-modal .member-wrap .ant-transfer-list .ant-transfer-list-content .LazyLoad .ant-transfer-list-content-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.w-manage-member-modal .member-wrap .ant-transfer-list .ant-transfer-list-content .LazyLoad .ant-transfer-list-content-item .ant-transfer-list-content-item-text {
    padding-left: 0
}


.w-feed-back-modal .ant-modal-content .ant-modal-header {
    display: none !important
}

.w-feed-back-modal .ant-modal-body {
    padding: 20px 20px 40px 20px
}

.w-feed-back-modal .feed-back-result {
    text-align: center;
    font-size: 16px;
    color: #333;
    margin-top: 10px;
    font-family: 'PingFangSC-Medium'
}

.w-feed-back-modal .icon {
    margin-top: 19px;
    text-align: center
}

.w-feed-back-modal .icon i {
    font-size: 53px;
    font-weight: bold;
    color: #52C41A;
    text-align: center
}

.w-feed-back-modal .text {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
    color: #333
}

.w-feed-back-modal .tip {
    text-align: center;
    margin-top: 5px;
    font-size: 14px;
    color: #999
}

.w-feed-back-modal .ant-modal-footer .ant-btn:first-child {
    display: none
}

.w-import-modal .ant-modal-body[data-v-3faa52ce] {
    padding: 20px 20px 20px 40px
}

.w-import-modal .ant-modal-body .notice-item[data-v-3faa52ce] {
    margin-top: 20px
}

.w-import-modal .ant-modal-body .notice-item .notice-title[data-v-3faa52ce] {
    font-size: 14px;
    color: #333;
    font-weight: 600
}

.w-import-modal .ant-modal-body .notice-item .notice-text[data-v-3faa52ce] {
    margin-top: 5px;
    font-size: 14px;
    color: #666
}

.w-import-modal .ant-modal-footer .footer-wrap[data-v-3faa52ce] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.w-import-modal .ant-modal-footer .footer-wrap .footer-left[data-v-3faa52ce] {
    font-size: 14px
}

.w-import-modal .ant-modal-footer .footer-wrap .footer-left .m-t-md[data-v-3faa52ce] {
    margin: 0
}

.w-import-modal .ant-upload-drag {
    background: #F3F9FD !important;
    border: 1px dashed #128bed;
    text-align: center;
    width: 100%;
    height: 150px
}

.w-import-modal .ant-upload-drag i {
    font-size: 64px;
    color: #128bed
}

.w-import-modal .ant-upload-drag .tip {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin-top: 5px
}

.w-import-modal .ant-upload-drag .file-desc {
    font-size: 14px;
    color: #999
}

.w-import-modal .status {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #13C261;
    position: relative;
    top: -2px
}


.w-not-exist-space-modal .ant-modal-body {
    padding: 20px 20px 40px 20px
}

.w-not-exist-space-modal .ant-modal-body i {
    color: #128bed;
    font-size: 16px;
    margin-right: 5px;
    vertical-align: middle;
    position: relative;
    top: -1px
}

.w-not-exist-space-modal .ant-modal-body .text {
    font-size: 14px;
    color: #333
}

.w-not-exist-space-modal .ant-modal-close-x {
    color: #D6D6D6
}

.w-not-exist-space-modal .ant-btn {
    visibility: hidden
}

.w-not-exist-space-modal .ant-btn-primary {
    visibility: visible
}

.buy-back-model .ant-modal-close-x {
    color: #D6D6D6
}

.buy-back-model .ant-modal-footer {
    display: none
}

.buy-back-model .ant-modal-body {
    padding-top: 0;
    padding-bottom: 36px
}

.buy-back-model .table-container .table-title {
    font-size: 14px;
    color: #333;
    padding: 10px 0
}

.buy-back-model .table-container table {
    width: 100%
}

.buy-back-model .table-container table td {
    border: 1px solid #E4EEF6;
    padding: 10px;
    width: 200px;
    font-size: 14px;
    color: #666
}

.buy-back-model .table-container table td.first-title {
    background-color: #F2F9FC
}

.buy-back-model .blue {
    color: #128bed;
    cursor: pointer
}

.buy-back-model .ant-table-header {
    overflow: auto !important;
    margin-bottom: 0 !important
}

.buy-back-model .ant-table-body {
    overflow: auto !important
}

.menu[data-v-5bef8277] {
    padding: 15px 0;
    border-right: solid 1px #eee;
    list-style: none;
    position: relative;
    margin: 0;
    background-color: #fff;
    height: 100%
}

.menu .menu-header[data-v-5bef8277] {
    padding-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 40px
}

.menu .menu-header h3[data-v-5bef8277] {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    line-height: 38px
}

.menu .menu-header .btn[data-v-5bef8277] {
    color: #128bed;
    border: none;
    outline: none;
    background-color: transparent;
    padding: 10px;
    font-size: 13px
}

.menu .menu-item[data-v-5bef8277] {
    display: block;
    color: #666;
    height: 40px;
    line-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    position: relative;
    padding-left: 20px;
    margin-top: 2px;
    margin-bottom: 4px
}

.menu .menu-item .anticon[data-v-5bef8277] {
    width: 22px
}

.menu .menu-item *[data-v-5bef8277] {
    vertical-align: middle
}

.menu .menu-item[data-v-5bef8277]:hover {
    color: #128bed
}

.menu .menu-item.router-link-active[data-v-5bef8277] {
    background-color: #f3f9fd;
    color: #128bed;
    border-right: solid 2px #128bed
}

.menu .menu-item-bottom[data-v-5bef8277] {
    left: 0;
    bottom: 0;
    position: absolute;
    width: 240px;
    padding: 4px 0;
    border-top: 1px solid #eee;
    border-right: 1px solid #e8e8e8;
    background-color: #fff;
    cursor: pointer
}

.menu .menu-item-bottom .anticon[data-v-5bef8277] {
    margin-right: 8px
}

.menu .menu-item-bottom .contact[data-v-5bef8277] {
    color: #666;
    padding-left: 24px;
    padding-right: 24px;
    height: 40px;
    line-height: 40px
}

.menu .menu-item-bottom .contact-tip[data-v-5bef8277] {
    margin: -8px -10px;
    width: 230px;
    height: 217px
}

.menu .menu-item-bottom .contact-tip img[data-v-5bef8277] {
    display: block;
    width: 100%
}

.menu .menu-item-bottom:hover .contact[data-v-5bef8277] {
    background-color: #f3f9fd;
    color: #128bed
}

ul[data-v-5bef8277] {
    list-style-type: none;
    padding: 0
}


.radio[data-v-111bcd84] {
    display: block;
    height: 30px;
    line-height: 30px;
    font-weight: normal
}

.radio .name[data-v-111bcd84] {
    color: #333;
    width: 60px;
    display: inline-block
}

.empty-service-list[data-v-111bcd84] {
    width: 100%;
    text-align: center
}

.menu[data-v-2c8a22ab] {
    padding: 15px 0;
    border-right: solid 1px #eee;
    list-style: none;
    position: relative;
    margin: 0;
    background-color: #fff;
    height: 100%
}

.menu .menu-item[data-v-2c8a22ab] {
    display: block;
    color: #666;
    height: 40px;
    line-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    position: relative;
    padding-left: 24px
}

.menu .menu-item .menu-title[data-v-2c8a22ab] {
    margin-left: 3px
}

.menu .menu-item .anticon[data-v-2c8a22ab] {
    width: 22px
}

.menu .menu-item *[data-v-2c8a22ab] {
    vertical-align: middle
}

.menu .menu-item[data-v-2c8a22ab]:hover {
    color: #128bed
}

.menu .menu-item.router-link-active[data-v-2c8a22ab] {
    background-color: #f3f9fd;
    color: #128bed;
    border-left: solid 2px #128bed;
    padding-left: 22px
}

.menu .menu-item .btn[data-v-2c8a22ab] {
    position: absolute;
    right: 0px;
    bottom: 4px
}

.menu .menu-item .btn i[data-v-2c8a22ab] {
    color: #128bed
}

.menu .work-space-recycle[data-v-2c8a22ab] {
    left: 0;
    bottom: 0;
    position: absolute;
    width: 240px;
    border-top: 1px solid #eee;
    border-right: 1px solid #e8e8e8;
    background-color: #fff;
    cursor: pointer;
    padding-left: 24px;
    height: 48px;
    line-height: 48px
}

ul[data-v-2c8a22ab] {
    list-style-type: none;
    padding: 0
}

.app-icon[data-v-47a016e8] {
    width: 90px;
    padding: 8px 0px
}

.app-icon .icon[data-v-47a016e8] {
    margin: auto;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/app-icons-98cc1bc3.png);
    background-size: 40px 40px;
    display: block;
    height: 40px;
    width: 40px;
    margin-bottom: 10px
}

.app-icon .icon-1[data-v-47a016e8] {
    background-position: 0px 0px
}

.app-icon .icon-2[data-v-47a016e8] {
    background-position: -40px 0px
}

.app-icon .icon-3[data-v-47a016e8] {
    background-position: -80px 0px
}

.app-icon .icon-4[data-v-47a016e8] {
    background-position: -120px 0px
}

.app-icon .icon-5[data-v-47a016e8] {
    background-position: 0px -40px
}

.app-icon .icon-6[data-v-47a016e8] {
    background-position: -40px -40px
}

.app-icon .icon-7[data-v-47a016e8] {
    background-position: -80px -40px
}

.app-icon .icon-8[data-v-47a016e8] {
    background-position: -120px -40px
}

.app-icon .icon-9[data-v-47a016e8] {
    background-position: 0px -80px
}

.app-icon .icon-10[data-v-47a016e8] {
    background-position: -40px -80px
}

.app-icon .icon-11[data-v-47a016e8] {
    background-position: -80px -80px
}

.app-icon .icon-12[data-v-47a016e8] {
    background-position: -120px -80px
}

.app-icon .icon-13[data-v-47a016e8] {
    background-position: 0px -160px
}

.app-icon .icon-14[data-v-47a016e8] {
    background-position: -120px -120px
}

.app-icon .icon-15[data-v-47a016e8] {
    background-position: -40px -120px
}

.app-icon .icon-16[data-v-47a016e8] {
    background-position: 0px -120px
}

.app-icon .icon-17[data-v-47a016e8] {
    background-position: -80px -120px
}

.app-icon .icon-18[data-v-47a016e8] {
    background-position: -40px -160px
}

.app-icon .label[data-v-47a016e8] {
    font-size: 13px;
    color: #333;
    font-weight: normal
}

.app-icon:hover .label[data-v-47a016e8] {
    color: #128bed
}

.app-list {
    background: #fff;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    width: 650px;
    padding: 15px 0px;
    margin-right: -122px !important
}

.app-list .tco {
    padding-right: 15px;
    margin-bottom: 10px;
    margin-top: 5px
}

.app-list .category {
    position: relative;
    color: #000;
    background-color: #fff;
    font-weight: bold;
    z-index: 2;
    padding-right: 10px;
    padding-left: 15px;
    font-size: 15px
}

.app-list .line {
    position: relative;
    float: left;
    margin-top: -11px;
    z-index: 1;
    width: 100%;
    height: 1px;
    background: #EEEEEE;
    z-index: 1
}

.app-list .padding-5 {
    padding-top: 5px;
    padding-bottom: 5px
}

.app-saas-box > .nav-link[data-v-fc7f3710] {
    padding-left: 35px
}

.app-saas-box > .nav-link .hicon-saas[data-v-fc7f3710] {
    position: absolute;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_saas-819234d4.png);
    background-size: 44px 22px;
    background-position: -22px 0px;
    width: 22px;
    height: 22px;
    top: 17px;
    left: 10px
}

.app-saas-box > .nav-link:hover .hicon-saas[data-v-fc7f3710] {
    background-position: 0px 0px
}

.saas-list[data-v-fc7f3710] {
    width: 747px;
    padding: 15px 15px;
    padding-right: 0px;
    padding-bottom: 0px
}

.saas-list.saas-open[data-v-fc7f3710] {
    width: 382px;
    margin-right: -165px !important
}

.saas-list .cell[data-v-fc7f3710] {
    width: 350px;
    float: left;
    height: 80px;
    background: #F3F9FD;
    padding: 10px;
    padding-left: 20px;
    display: table;
    margin-bottom: 15px;
    margin-right: 15px
}

.saas-list .cell .cell-ht[data-v-fc7f3710], .saas-list .cell .cell-content[data-v-fc7f3710], .saas-list .cell .cell-ft[data-v-fc7f3710] {
    display: table-cell
}

.saas-list .cell .cell-ht[data-v-fc7f3710] {
    width: 80px;
    vertical-align: middle
}

.saas-list .cell .cell-content[data-v-fc7f3710] {
    vertical-align: middle
}

.saas-list .cell .cell-ft[data-v-fc7f3710] {
    vertical-align: middle;
    width: 80px;
    text-align: right
}

.saas-list .cell .saas-icon[data-v-fc7f3710] {
    width: 60px
}

.saas-list .cell .category-icon[data-v-fc7f3710] {
    width: 60px
}

.saas-list .cell .name[data-v-fc7f3710] {
    color: #333;
    font-size: 16px;
    font-family: PingFangSC-Medium, PingFang SC;
    margin-top: 5px
}

.saas-list .cell .desc[data-v-fc7f3710] {
    color: #999;
    font-size: 14px;
    margin-top: 10px
}

.saas-list .cell:hover .name[data-v-fc7f3710] {
    color: #128bed
}

.saas-list.odd .cell[data-v-fc7f3710]:first-child {
    height: 175px
}

.app-user-menu > .dropdown-item {
    padding: 6px 20px;
    color: #333;
    display: block
}

.app-user-menu > .dropdown-item .sicon {
    color: #D6D6D6;
    font-size: 14px
}

.app-user-menu > .dropdown-item .stext {
    color: #999;
    font-size: 12px;
    margin-top: 7px;
    width: 118px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    word-break: keep-all
}

.app-user-menu > .dropdown-item:hover {
    background: #f2f4f8
}

.app-user-menu > .dropdown-item:hover .stext {
    color: #128bed
}

.app-user-menu .divider {
    margin: 5px 1px
}

.app-user-message[data-v-10abd0da] {
    padding: 0px;
    width: 400px;
    max-height: 400px;
    overflow-y: auto;
    left: -220px;
    color: #333;
    font-size: 14px;
    line-height: 22px
}

.app-user-message .list-group[data-v-10abd0da] {
    margin-bottom: 0px;
    padding-bottom: 3px
}

.app-user-message .list-group-item[data-v-10abd0da] {
    border: none
}

.app-user-message .list-group-item[data-v-10abd0da]:not(:first-child) {
    border-top: solid 1px #eee
}

.app-user-message .message-box-title[data-v-10abd0da] {
    font-size: 16px
}

.app-user-message .title[data-v-10abd0da] {
    font-size: 16px;
    float: left;
    margin-bottom: 8px;
    position: relative
}

.app-user-message .time[data-v-10abd0da] {
    float: right;
    color: #999;
    font-size: 12px;
    margin-top: 5px
}

.app-user-message .content[data-v-10abd0da] {
    word-break: break-all
}

.app-user-message .operate[data-v-10abd0da] {
    margin-top: 4px
}

.app-user-message .font-bold[data-v-10abd0da] {
    font-weight: bold
}

.app-user-message a[data-v-10abd0da] {
    color: #128bed;
    text-decoration: none
}

.app-user-message .view-all[data-v-10abd0da] {
    text-align: center
}

.app-nheader {
    height: 56px
}

.app-nheader .app-nheader-wrap {
    position: relative;
    z-index: 1002;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05);
    height: 56px
}

.app-nheader.fixed .app-nheader-wrap {
    position: fixed;
    width: 100%;
    top: 0px
}

.app-nheader .navbar-left {
    float: left
}

.app-nheader .navbar-brand {
    padding: 0px;
    padding-right: 15px;
    height: 56px;
    position: relative;
    float: left
}

.app-nheader .navbar-brand > a {
    display: block;
    float: left;
    line-height: 56px
}

.app-nheader .navbar-brand .logo {
    height: 37px;
    margin-top: -4px;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px
}

.app-nheader .navbar-brand .logo-zx {
    display: inline-block;
    margin-left: 0px;
    width: 138px;
    cursor: pointer;
    margin-top: -4px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/logo_zx3-ac43c237.png);
    background-size: 138px 36px;
    background-position: 0px -1px;
    display: block;
    width: 138px;
    height: 35px;
    margin-top: 10px;
    cursor: default
}

.app-nheader .navbar-brand .logo-zx-img {
    width: 532px
}

.app-nheader .navbar-brand .zx-detail {
    top: 52px;
    padding: 5px
}

.app-nheader .navbar-nav {
    float: left;
    color: #222;
    padding-left: 0px
}

.app-nheader .navbar {
    margin-bottom: 0px;
    border: none;
    padding-top: 0px;
    padding-bottom: 0px
}

.app-nheader .dropdown-menu {
    margin-top: 0;
    border-radius: 4px;
    top: 52px
}

.app-nheader .dropdown-menu > .dropdown-item {
    color: #333
}

.app-nheader .download-app-container {
    padding: 0px
}

.app-nheader .download-app-container > .download-app-qr-code {
    width: 250px
}

.app-nheader .nav-item > a {
    color: #222;
    padding: 18px 15px;
    float: left
}

.app-nheader .nav-item > a.router-link-active {
    color: #128bed
}

.app-nheader .nav-item > a:hover, .app-nheader .nav-item > a.active {
    color: #128bed
}

.app-nheader .nav-item > a.navi-btn {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 5px
}

.app-nheader .nav-item > a.navi-btn > span {
    line-height: 32px;
    text-align: center;
    display: inline-block;
    background: #128bed;
    color: #fff;
    width: 92px;
    border-radius: 2px
}

.app-nheader .nav-item > a.register-icon {
    width: 108px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/regis-login-btn-5c0cdbf5.png) no-repeat center center;
    background-size: 108px 32px;
    position: relative
}

.app-nheader .nav-item > a.register-icon > span {
    display: inline-block;
    text-align: center;
    color: #fff;
    width: 100px;
    border-radius: 2px
}

.app-nheader .nav-item > a.register-icon > .register-promotion-info {
    width: 218px;
    height: 78px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/new-register-hbtn-a8e49bef.png) no-repeat center center;
    background-size: 218px 78px;
    position: absolute;
    top: 50px;
    right: -4px
}

.app-nheader .nav-item .logo-popover {
    width: 250px;
    padding: 15px;
    background-color: #F3F9FD;
    border-radius: 4px
}

.app-nheader .nav-item .logo-popover .rquestion-panel-arrow.top:after {
    border-bottom-color: #F3F9FD
}

.app-nheader .nav-item .logo-popover .login-guide-popover-inner {
    width: 220px
}

.app-nheader .nav-item .logo-popover .login-guide-popover-inner .login-pop-title {
    font-size: 14px;
    color: #333;
    font-weight: 500
}

.app-nheader .nav-item .logo-popover .login-guide-popover-inner .login-pop-content {
    margin: 15px 0
}

.app-nheader .nav-item .logo-popover .login-guide-popover-inner .login-pop-content .lpb-icon {
    float: left;
    width: 32px;
    height: 32px;
    margin-right: 10px;
    vertical-align: middle;
    margin: 4px 5px 0 0
}

.app-nheader .nav-item .logo-popover .login-guide-popover-inner .login-pop-content .lpb-icon img {
    display: inline-block;
    width: 100%;
    height: 100%
}

.app-nheader .nav-item .logo-popover .login-guide-popover-inner .login-pop-content .lpb-desc {
    float: left;
    width: 80%;
    height: 40px;
    font-size: 12px
}

.app-nheader .nav-item .logo-popover .login-guide-popover-inner .login-pop-content .lpb-desc .lpb-desc-a {
    color: #333;
    height: 20px
}

.app-nheader .nav-item .logo-popover .login-guide-popover-inner .login-pop-content .lpb-desc .lpb-desc-b {
    color: #999;
    height: 20px
}

.app-nheader .nav-item .logo-popover .login-guide-popover-inner .login-pop-content:last-child {
    margin: 15px 0 0 0
}

.app-nheader .nav-item .logo-popover .login-guide-popover-inner .login-pop-content:after {
    display: table;
    content: ' ';
    clear: both
}

.app-nheader .nav-item .logo-popover .login-guide-popover-inner .login-pop-footer {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee
}

.app-nheader .nav-item .logo-popover:hover {
    visibility: visible
}

.app-nheader .nav-item .login-nav-btn:hover + .logo-popover {
    visibility: visible
}

@media (max-width: 1400px) {
    .app-nheader .nav-item .logo-popover {
        right: 10px
    }

    .app-nheader .nav-item .login-popover-arrow {
        left: 80%
    }
}

.app-nheader .head-line {
    line-height: 56px;
    color: #efefef
}

.app-nheader .hicon-saas {
    display: inline-block;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_saas-819234d4.png);
    background-size: 44px 22px;
    background-position: -22px 0px;
    width: 22px;
    height: 22px
}

.app-nheader .hicon-vip {
    width: 60px
}

.app-nheader .hicon-app {
    display: inline-block;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_app-fc8396e9.png);
    background-size: 22px 22px;
    width: 22px;
    height: 22px
}

.app-nheader .hicon-app:hover {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/icon_app_H-34cb6a2d.png)
}

.app-nheader .hicon-notify {
    display: inline-block;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/ic_noti_new-246d1b8d.png);
    background-size: 22px 22px;
    width: 22px;
    height: 22px
}

.app-nheader .hicon-notify:hover {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/ic_noti_new_H-1c4a48fa.png)
}

.app-nheader .gicon-vip {
    width: 24px;
    margin-top: -2px
}

.app-nheader .gcolor-vip {
    color: #AA6715;
    font-weight: bold
}

.app-nheader .header-qrcode .no-cart {
    padding-left: 5px;
    padding-bottom: 11px
}

.app-nheader .user-message > a {
    display: inline-block;
    padding-right: 20px;
    padding-left: 3px;
    padding-bottom: 11px;
    cursor: pointer
}

.app-nheader .user-message .msg-count {
    position: absolute;
    font-size: 12px;
    line-height: 1;
    color: #fff;
    background: #FD485E;
    min-width: 20px;
    text-align: center;
    padding: 2px 2px;
    left: 15px;
    top: 9px;
    border: solid 2px #fff;
    border-radius: 15px;
    overflow: hidden
}

.app-nheader .user-message .notify {
    height: 22px;
    display: inline-block;
    margin-top: 1px
}

.app-nheader .user-menu {
    padding-left: 5px !important;
    padding-bottom: 10px !important;
    position: relative
}

.app-nheader .user-menu > .avatar {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    -o-object-fit: contain;
    object-fit: contain;
    left: 0px;
    top: -4px
}

.app-nheader .user-menu > .icon-vip-leveic {
    position: absolute;
    left: 23px;
    top: 30px;
    font-size: 12px;
    background-color: #fff;
    border-radius: 50%;
    padding: 2px
}

.app-nheader .user-menu > .icon-vip-levelsm {
    position: absolute;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/level-icons-3b86707c.png);
    background-size: 56px 14px;
    height: 14px;
    width: 14px;
    left: 25px;
    top: 32px;
    background-position: 0px 0px;
    display: none
}

.app-nheader .user-menu > .icon-vip-levelsm.vip {
    background-position: -14px 0px;
    display: block
}

.app-nheader .user-menu > .icon-vip-levelsm.qiye {
    background-position: -28px 0px;
    display: block
}

.app-nheader .user-menu > .icon-vip-levelsm.svip {
    background-position: -42px 0px;
    display: block
}

.app-nheader .app-box .dropdown-menu, .app-nheader .app-saas-box .dropdown-menu, .app-nheader .header-qrcode .dropdown-menu, .app-nheader .pass-drop .dropdown-menu, .app-nheader .user-message .dropdown-menu, .app-nheader .user-drop .dropdown-menu {
    border-radius: 2px !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: solid 1px #eee
}

.app-nheader .app-box:hover .dropdown-menu, .app-nheader .app-saas-box:hover .dropdown-menu, .app-nheader .header-qrcode:hover .dropdown-menu, .app-nheader .pass-drop:hover .dropdown-menu, .app-nheader .user-message:hover .dropdown-menu, .app-nheader .user-drop:hover .dropdown-menu {
    display: block
}

.app-nheader .app-box .dropdown-menu {
    margin-right: -128px
}

.app-nheader .app-saas-box .dropdown-menu {
    margin-right: -500px
}

.app-nheader .header-qrcode .dropdown-menu {
    margin-right: -80px
}

.app-nheader .user-message .dropdown-menu {
    margin-right: -60px;
    background: #fff
}

.app-nheader .navi-form {
    float: left;
    margin-top: 12px;
    margin-left: 0px
}

.app-nheader .navi-form .search-key {
    width: 375px !important;
    border-bottom-left-radius: 4px !important;
    border-top-left-radius: 4px !important
}

.app-nheader .navi-form .input-group-btn {
    float: left
}

.app-nheader .navi-form .search-section {
    top: 34px;
    border: 1px solid #eee;
    z-index: 100;
    width: 375px
}

.app-nheader .navi-form .clear-searchkey {
    top: 9px;
    right: 75px
}

@media (max-width: 768px) {
    .app-nheader .navbar-right {
        display: none
    }
}

.app-nheader.ant {
    width: 100%;
    background-color: #fff;
    padding: 0px
}

.app-nheader.ant .app-nheader-wrap {
    padding: 0 20px
}

.app-nheader.ant .lsass.hicon-saas {
    position: absolute;
    left: -14px;
    top: 17px;
    cursor: pointer;
    z-index: 2
}

.app-nheader.ant .lsass.hicon-saas:hover {
    background-position: 0px 0px
}

.app-nheader.ant .lsass + .navbar-brand {
    padding-left: 12px
}

.app-nheader.ant .user-message .dropdown-menu {
    margin-right: -20px
}

.app-nheader.ant .navbar-brand a {
    line-height: normal;
    padding-top: 10px
}

.app-nheader.ant .navbar-brand a .logo {
    height: 36px;
    margin-top: 0px
}

.app-nheader.ant .navi-form {
    margin-left: 5px;
    margin-top: 11px
}

.app-nheader.ant .navi-form .search-key {
    width: 388px !important
}

.app-nheader.ant .navi-form .search-section {
    width: 388px !important
}

.app-nheader.ant .app-box .dropdown-menu {
    margin-right: -180px
}

.app-nheader.ant .app-saas-box .dropdown-menu {
    margin-right: -180px
}

.app-nheader.ant .header-qrcode .dropdown-menu {
    margin-right: -40px
}

.case-msg-point[data-v-41926c7f] {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #FD485E;
    border-radius: 50%;
    position: relative;
    bottom: 4px
}

.filter-father-h[data-v-41926c7f] {
    position: relative;
    min-height: 900px
}

.cases-list-filter[data-v-41926c7f] {
    -webkit-filter: blur(5px);
    filter: blur(5px)
}

.pay-insert[data-v-41926c7f] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    z-index: 2
}

.pay-insert .insert-wrap[data-v-41926c7f] {
    width: 780px;
    background: #fff;
    border: solid 1px #eee;
    margin: 80px auto
}

.pushIcon[data-v-41926c7f] {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 17px;
    margin-top: -6px;
    top: 3px;
    margin-left: -2px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pushIcon-3ce2616f.png);
    background-repeat: no-repeat;
    background-size: 20px 20px
}

.more-series-group[data-v-41926c7f] {
    font-size: 14px;
    font-weight: 400;
    color: #FF722D;
    margin-top: 2px;
    cursor: pointer
}

.pre-watch-btn[data-v-41926c7f], .case-watch-btn[data-v-41926c7f] {
    width: 76px;
    height: 30px;
    font-size: 14px;
    vertical-align: middle;
    padding: 4px 6px
}

.bigsearch-list .title[data-v-4306022e] {
    display: inline !important
}

.bigsearch-list .title[data-v-5ebfb48d] {
    display: inline !important
}

.judgement-list .statustd[data-v-35d83258] {
    width: 0px !important
}

.judgement-list .hchoosen[data-v-35d83258] {
    padding-top: 14px;
    padding-bottom: 14px
}

.judgement-list .clearterm[data-v-35d83258] {
    margin-top: 7px
}

.judgement-list .wenshu-shuaxin[data-v-35d83258] {
    color: #128bed
}

.judgement-list .list-group-item .fa[data-v-35d83258] {
    padding-top: 3px;
    padding-bottom: 3px;
    padding-right: 5px;
    padding-left: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.judgement-list .list-group-item.sub[data-v-35d83258] {
    padding-left: 30px;
    color: #666
}

.judgement-list .list-group-item.third[data-v-35d83258] {
    padding-left: 53px;
    color: #666
}

.judgement-list .bigsearch-list .title[data-v-35d83258] {
    display: inline
}

.bigsearch-list .title[data-v-a23c1f60] {
    display: inline
}

.bigsearch-list .title[data-v-6908d3cc] {
    display: inline
}

.judgement-list .statustd[data-v-da71c1e6] {
    width: 0px !important
}

.judgement-list .list-group-item .fa[data-v-da71c1e6] {
    padding-top: 3px;
    padding-bottom: 3px;
    padding-right: 5px;
    padding-left: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.judgement-list .list-group-item.sub[data-v-da71c1e6] {
    padding-left: 30px;
    color: #666
}

.judgement-list .list-group-item.third[data-v-da71c1e6] {
    padding-left: 53px;
    color: #666
}

.judgement-list .hover-blue:hover .title-hover[data-v-da71c1e6] {
    color: #128bed
}

.judgement-list .text-line[data-v-da71c1e6] {
    padding: 0;
    margin: 0;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.judgement-list .text-line[data-v-da71c1e6] p {
    padding: 0;
    margin: 0;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.bigsearch-list .title[data-v-3d52292f] {
    display: inline !important
}

[data-v-3d52292f] .ntable em {
    color: #fd485e !important
}

.judgement-list .statustd[data-v-56ab0dba] {
    width: 0px !important
}

.judgement-list .list-group-item .fa[data-v-56ab0dba] {
    padding-top: 3px;
    padding-bottom: 3px;
    padding-right: 5px;
    padding-left: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.judgement-list .list-group-item.sub[data-v-56ab0dba] {
    padding-left: 30px;
    color: #666
}

.judgement-list .list-group-item.third[data-v-56ab0dba] {
    padding-left: 53px;
    color: #666
}

.judgement-list .bigsearch-list .title[data-v-56ab0dba] {
    display: inline
}

.bigsearch-list .title[data-v-8f644106] {
    display: inline !important
}

.bigsearch-list[data-v-8f644106] {
    background-color: #fff
}

.bigsearch-list .ntable-list td[data-v-8f644106] {
    border: 1px solid #eee
}

.more[data-v-8f644106] {
    margin-left: 10px
}

[data-v-8f644106] .ntable em {
    color: #fd485e !important
}

.rline_icon[data-v-8f644106] {
    height: 22px;
    width: 22px;
    display: inline-block
}

.search-table .batch-check-label[data-v-5c725549] {
    display: inline-block !important
}

.search-table .batch-bar[data-v-5c725549] {
    height: 50px;
    background: #f3f9fe;
    padding: 9px 15px;
    border-top: solid 1px #eeeeee
}

.search-table .batch-bar .btn[data-v-5c725549] {
    width: 98px;
    height: 32px;
    font-size: 12px;
    line-height: 18px
}

.search-table .ntable-wrap[data-v-5c725549] {
    position: relative;
    padding: 15px
}

.search-table .ntable-wrap .loading-mask[data-v-5c725549] {
    min-height: 500px;
    opacity: 0.6
}

.search-table .ntable-wrap.loading[data-v-5c725549] {
    height: 500px;
    overflow: hidden;
    position: relative
}

.search-table .ntable-wrap.loading .loading-mask[data-v-5c725549] {
    display: block
}

.search-table .columns-set[data-v-5c725549] {
    position: absolute;
    right: 15px;
    top: 15px;
    height: 41px;
    background: #f2f9fc;
    width: 44px;
    text-align: center;
    z-index: 10;
    border: solid 1px #eee
}

.search-table .batch-table[data-v-5c725549] {
    margin-bottom: 0px;
    background: #ffffff;
    border: 1px solid #eee
}

.search-table .batch-table[data-v-5c725549] th {
    text-align: left;
    background: #f2f9fc
}

.search-table .batch-table[data-v-5c725549] td {
    vertical-align: middle
}

.search-table .batch-table[data-v-5c725549] .ant-table-thead > tr {
    height: 44px !important
}

.search-table .batch-table[data-v-5c725549] .ant-table-thead > tr > th {
    padding: 8px 0 8px 10px
}

.search-table .batch-table[data-v-5c725549] .ant-table-tbody > tr > td {
    padding: 10px 6px 10px 10px
}

.search-table .batch-table[data-v-5c725549] .ant-table-body {
    min-height: 500px;
    cursor: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/openhand2-745f6772.cur) 8 8, default;
    border-left: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8
}

.search-table .batch-table[data-v-5c725549] th.ant-table-column-has-sorters:hover {
    background: #f2f9fc50 !important
}

.search-table .batch-table[data-v-5c725549] .ant-table-fixed-left td, .search-table .batch-table[data-v-5c725549] .ant-table-fixed-left th {
    border-right: 0 !important
}

.search-table .batch-table[data-v-5c725549] .ant-table table {
    border-radius: 0
}

.search-table .batch-table[data-v-5c725549] .ant-table-bordered .ant-table-thead > tr > th, .search-table .batch-table .ant-table-bordered .ant-table-tbody > tr > td[data-v-5c725549] {
    border-radius: 0
}

.search-table .batch-table[data-v-5c725549] tr td:last-child, .search-table .batch-table[data-v-5c725549] tr th:last-child {
    border-right: none
}

.search-table .batch-table .maininfo[data-v-5c725549] {
    position: relative
}

.search-table .batch-table .img[data-v-5c725549] {
    width: 40px;
    height: 40px
}

.search-table .batch-table .ntag[data-v-5c725549] {
    overflow: hidden;
    max-width: 100%;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    vertical-align: bottom
}

.search-table .batch-table .ellipsis-content[data-v-5c725549] {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.search-table .batch-table .ellipsis-content .title[data-v-5c725549] {
    display: inline;
    margin-bottom: 0px
}

.search-table .batch-table .ellipsis-content .sub-title[data-v-5c725549] {
    font-size: 12px;
    color: #999
}

.search-table .batch-table .ellipsis-content .failed-name[data-v-5c725549] {
    display: inline-block;
    color: #fd485e;
    max-width: 300px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle
}

.search-table .batch-table .check-label[data-v-5c725549] {
    margin: 0px 8px 0px 0px;
    display: block;
    line-height: 1
}

.search-table .batch-table .check-label input[data-v-5c725549] {
    margin: 0px
}

.search-table .batch-table .nstatus[data-v-5c725549] {
    font-size: 12px;
    padding: 4px 8px 4px 8px;
    line-height: 12px;
    display: inline-block;
    position: relative
}

.search-table .batch-table .frtrt td[data-v-5c725549] {
    border-bottom: none
}

.search-table .batch-table .frtrt[data-v-5c725549]:hover {
    background: #f3f9fe
}

.search-table .batch-table .frtr td[data-v-5c725549] {
    border-top: none
}

.search-table .batch-table .frtr td[data-v-5c725549] {
    padding: 3px 10px;
    background: #f3f9fe
}

.search-table .batch-table .frtr td .fp-p[data-v-5c725549] {
    margin-top: 5px;
    margin-bottom: 5px
}

.search-table .batch-table .frtr td .fp-p > span[data-v-5c725549] {
    margin-right: 20px
}

.search-table .follow-btn.active[data-v-5c725549] {
    color: #999
}

.search-table .follow-btn.active[data-v-5c725549]:hover {
    color: #666
}

[data-v-5c725549] em {
    color: #fd485e !important;
    font-style: normal
}

.title[data-v-5c725549] {
    font-size: 16px;
    color: #333333
}

.title[data-v-5c725549] :hover {
    color: #128bed
}

.subtitle[data-v-5c725549] {
    color: #999999;
    font-size: 14px;
    line-height: 22px
}

.val[data-v-5c725549] {
    color: #128bed
}

span[data-v-5c725549] {
    cursor: auto
}

.judgement-list .statustd[data-v-6b5c1d7d] {
    width: 0px !important
}

.judgement-list .list-group-item .fa[data-v-6b5c1d7d] {
    padding-top: 3px;
    padding-bottom: 3px;
    padding-right: 5px;
    padding-left: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.judgement-list .list-group-item.sub[data-v-6b5c1d7d] {
    padding-left: 30px;
    color: #666
}

.judgement-list .list-group-item.third[data-v-6b5c1d7d] {
    padding-left: 53px;
    color: #666
}

.judgement-list .bigsearch-list .title[data-v-6b5c1d7d] {
    display: inline
}

.ntable[data-v-6b5c1d7d] {
    border-bottom: 1px solid #e4eef6
}

.ntable th[data-v-6b5c1d7d]:not(:last-child) {
    border-right: #e4eef6 1px solid
}

.ntable td[data-v-6b5c1d7d] {
    border: 1px solid #e4eef6
}

.npanel[data-v-6b5c1d7d] {
    background: none;
    border: none
}

.npanel-body[data-v-6b5c1d7d] {
    padding: 0px
}

.date-length[data-v-6b5c1d7d] {
    width: 110px;
    text-align: center
}

.wz-length[data-v-6b5c1d7d] {
    width: 561px
}

.choosen[data-v-6b5c1d7d] {
    border-bottom: solid 1px #eee;
    padding-bottom: 15px;
    margin-bottom: 10px
}

.choosen .pills-after[data-v-6b5c1d7d] {
    padding-left: 12px;
    max-width: 1000px
}

.choosen .pills-item[data-v-6b5c1d7d] {
    position: relative;
    color: #128bed;
    background: #fff;
    border: solid 1px #128bed;
    line-height: 22px;
    padding: 0px 20px 0px 6px;
    font-size: 12px;
    max-width: 250px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    position: relative;
    margin-left: 0px;
    margin-right: 10px;
    cursor: pointer
}

.choosen .pills-item[data-v-6b5c1d7d]:hover {
    background: #128bed;
    color: #fff
}

.choosen .pills-item[data-v-6b5c1d7d]:after {
    content: "X";
    position: absolute;
    right: 6px;
    top: 0px
}

.npanel-heading[data-v-6b5c1d7d] {
    border: 1px solid #eee;
    border-bottom: none
}

.switch-btn[data-v-6b5c1d7d] {
    display: inline-block;
    font-size: 12px;
    height: 32px;
    border: 1px solid #d6d6d6;
    background-color: #fff;
    position: relative;
    line-height: 24px;
    padding: 3px;
    border-radius: 2px
}

.switch-btn > .item[data-v-6b5c1d7d] {
    color: #333;
    padding: 0px 8px;
    border-radius: 2px;
    display: inline-block;
    letter-spacing: 0
}

.switch-btn > .item.active[data-v-6b5c1d7d] {
    color: #fff;
    background: #128bed
}

.qrcode-loading[data-v-238a447f] {
    width: 160px;
    height: 160px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/preloader_old-0e004f27.gif) no-repeat center center
}

.app-payment-ali[data-v-22eda759] {
    width: 160px;
    height: 160px;
    display: inline-block;
    position: relative
}

.app-payment-wx[data-v-7fea28bc] {
    width: 160px;
    height: 160px;
    display: inline-block;
    position: relative
}

.app-payment-pub .tips h4[data-v-5ce121c6] {
    font-size: 14px
}

.app-payment-pub .tips p[data-v-5ce121c6] {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px
}

.app-payment-pub .tips .card-no[data-v-5ce121c6] {
    display: inline-block;
    background: #D5ECFF;
    padding: 9px 15px;
    color: #333333
}

.coupon-content[data-v-17830261] {
    color: #999;
    cursor: pointer;
    position: relative
}

.coupon-content .caret[data-v-17830261] {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.coupon-dropdown[data-v-17830261] {
    display: block;
    position: absolute;
    font-size: 14px;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: left;
    top: 100%;
    width: 380px;
    max-height: 412px;
    overflow-y: auto;
    background-color: #fff;
    color: #333;
    z-index: 1
}

.coupon-dropdown .coupon-type[data-v-17830261] {
    padding: 10px 15px;
    display: inline-block
}

.coupon-dropdown .coupon-item[data-v-17830261] {
    padding: 10px 15px;
    margin: 5px 0px;
    display: table;
    width: 100%;
    height: 100%
}

.coupon-dropdown .coupon-item[data-v-17830261]:hover {
    background-color: #f6f6f6
}

.coupon-dropdown .coupon-item.active .check[data-v-17830261] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/ic_radio_button_on-c0fbaeb5.png)
}

.coupon-dropdown .coupon-item_cell[data-v-17830261] {
    display: table-cell;
    vertical-align: middle
}

.coupon-dropdown .price[data-v-17830261] {
    color: #128bed;
    border: solid 2px #128bed;
    padding: 6px 5px;
    width: 50px;
    text-align: center;
    margin-right: 10px;
    background: #f3f9fe;
    display: inline-block
}

.coupon-dropdown .desc[data-v-17830261] {
    color: #666;
    font-size: 12px
}

.coupon-dropdown .time[data-v-17830261] {
    color: #999;
    font-size: 12px
}

.coupon-dropdown .check[data-v-17830261] {
    width: 24px;
    height: 24px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/ic_radio_button_off-ccb6566e.png);
    background-size: 24px 24px;
    display: inline-block
}

.mnumber-input[data-v-7d61d324] {
    position: relative;
    font-size: 12px;
    line-height: 24px
}

.mnumber-input .minput[data-v-7d61d324] {
    float: left;
    width: 62px;
    height: 24px;
    border: solid 1px #eee;
    outline: none;
    outline-width: 0px;
    outline-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 10px;
    padding-right: 25px;
    padding-top: 4px;
    padding-bottom: 4px;
    line-height: 16px;
    text-align: right;
    margin-left: -1px;
    margin-right: -1px
}

.mnumber-input .unit[data-v-7d61d324] {
    position: absolute;
    left: 65px
}

.mnumber-input .gbtn[data-v-7d61d324] {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: block;
    height: 24px;
    width: 24px;
    border: solid 1px #eee;
    position: relative;
    float: left;
    text-align: center;
    line-height: 22px;
    font-size: 14px;
    color: #128bed
}

.mnumber-input .gbtn.disable[data-v-7d61d324] {
    color: #d6d6d6;
    cursor: not-allowed
}

.mnumber-input.big[data-v-7d61d324] {
    font-size: 14px;
    line-height: 40px
}

.mnumber-input.big .minput[data-v-7d61d324] {
    width: 98px;
    height: 42px;
    padding-right: 46px
}

.mnumber-input.big .unit[data-v-7d61d324] {
    left: 105px;
    color: #999;
    line-height: 41px
}

.mnumber-input.big .gbtn[data-v-7d61d324] {
    width: 42px;
    height: 42px;
    font-size: 18px;
    line-height: 40px
}

.mnumber-input.big .gbtn.minus[data-v-7d61d324] {
    line-height: 39px
}

.intro-preview {
    display: block
}

.pay-panel[data-v-23f6269b] {
    color: #333;
    min-height: 420px;
    font-size: 14px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_modal_bg2@2x-d55f337d.png) center top;
    background-size: contain;
    background-repeat: no-repeat;
    padding-bottom: 50px
}

.pay-panel .pay-top[data-v-23f6269b] {
    padding-top: 5px;
    font-weight: normal;
    text-align: center
}

.pay-panel .pay-top .title[data-v-23f6269b] {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #fff
}

.pay-panel .pay-top .sub-title[data-v-23f6269b] {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff
}

.pay-panel .pay-top .rights[data-v-23f6269b] {
    font-size: 14px;
    color: #f9ad14;
    margin-left: 10px
}

.pay-panel .pay-top .type-tab[data-v-23f6269b] {
    text-align: center
}

.pay-panel .pay-top .type-tab .tab-item[data-v-23f6269b] {
    font-size: 16px;
    display: inline-block;
    line-height: 40px;
    margin-left: 15px;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.6)
}

.pay-panel .pay-top .type-tab .tab-item.active[data-v-23f6269b] {
    color: #fff;
    border-bottom: solid 2px #fff
}

.pay-panel .pay-container[data-v-23f6269b] {
    margin-top: 15px;
    padding: 0 50px
}

.pay-panel .pay-container .pay-wrap[data-v-23f6269b] {
    background: #fff;
    border: solid 1px #eee;
    border-radius: 6px;
    padding: 20px 75px 10px;
    margin-bottom: 25px
}

.pay-panel .pay-container .pay-wrap .goods-list[data-v-23f6269b] {
    height: 70px;
    margin-bottom: 20px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item[data-v-23f6269b] {
    display: inline-block;
    text-align: center;
    width: 148px;
    height: 70px;
    border: solid 2px #cdcdcd;
    border-radius: 2px;
    cursor: pointer;
    position: relative
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item[data-v-23f6269b]:not(:last-child) {
    margin-right: 40px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .price[data-v-23f6269b] {
    margin-top: 10px;
    color: #666
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .price .big[data-v-23f6269b] {
    font-size: 18px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .desc[data-v-23f6269b] {
    font-size: 12px;
    color: #666;
    margin-top: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .desc .old[data-v-23f6269b] {
    text-decoration: line-through;
    margin-right: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .actvity-desc[data-v-23f6269b] {
    font-size: 13px;
    color: #999;
    margin-top: 2px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .actvity-desc .old[data-v-23f6269b] {
    text-decoration: line-through;
    margin-right: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .ic-recomend[data-v-23f6269b] {
    position: absolute;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/ic_recomend-4a403486.png);
    background-size: 50px 18px;
    width: 50px;
    height: 18px;
    top: -10px;
    left: -2px
}

.pay-panel .pay-container .pay-wrap .pay-btn[data-v-23f6269b] {
    text-align: center
}

.pay-panel .pay-container .pay-wrap .pay-btn .btn-open-pay[data-v-23f6269b] {
    display: block;
    width: 242px;
    border-radius: 2px;
    font-size: 18px;
    color: #fff;
    line-height: 44px;
    margin: auto
}

.pay-panel .pay-container .pay-wrap .pay-btn .desc[data-v-23f6269b] {
    color: #999999;
    margin-top: 13px;
    margin-bottom: 5px
}

.pay-panel .pay-container .pay-wrap .pay-info .color-hl[data-v-23f6269b] {
    color: #F9552A
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-23f6269b] {
    height: 28px;
    margin-bottom: 5px;
    font-size: 16px
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-23f6269b]:before {
    display: table;
    content: ' '
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-23f6269b]:after {
    clear: both;
    display: table;
    content: ' '
}

.pay-panel .pay-container .pay-wrap .pay-info .rline .c[data-v-23f6269b] {
    float: left
}

.pay-panel .pay-container .pay-wrap .pay-info .rline .v[data-v-23f6269b] {
    float: right
}

.pay-panel .pay-intro img[data-v-23f6269b] {
    width: 680px;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

.pay-panel .pay-off .pay-select[data-v-23f6269b] {
    float: left;
    width: 185px;
    margin-right: 18px
}

.pay-panel .pay-off .pay-select .pay-type[data-v-23f6269b] {
    width: 185px;
    height: 60px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pay_btn_imgs-977feac3.png);
    background-size: 370px 240px;
    cursor: pointer;
    text-indent: -9999px;
    margin-bottom: 10px
}

.pay-panel .pay-off .pay-select .pay-type.disabled[data-v-23f6269b] {
    cursor: not-allowed;
    opacity: .5
}

.pay-panel .pay-off .pay-select .pay-type.wx[data-v-23f6269b] {
    background-position: 0px 0px
}

.pay-panel .pay-off .pay-select .pay-type.wx.active[data-v-23f6269b] {
    background-position: -185px 0px
}

.pay-panel .pay-off .pay-select .pay-type.ali[data-v-23f6269b] {
    background-position: 0px -60px
}

.pay-panel .pay-off .pay-select .pay-type.ali.active[data-v-23f6269b] {
    background-position: -185px -60px
}

.pay-panel .pay-off .pay-select .pay-type.pub[data-v-23f6269b] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pay_btn_imgs3-23b81d91.png);
    background-size: 370px 180px;
    background-position: 0px -120px
}

.pay-panel .pay-off .pay-select .pay-type.pub.active[data-v-23f6269b] {
    background-position: -185px -120px
}

.pay-panel .pay-off .pay-select .pay-desc[data-v-23f6269b] {
    margin-top: 25px;
    color: #999;
    line-height: 1.3;
    margin-bottom: 10px
}

.pay-panel .pay-off .pay-qrcode[data-v-23f6269b] {
    float: left;
    width: 475px;
    background: #f3f9fe
}

.pay-panel .pay-off .pay-qrcode .pay-box[data-v-23f6269b] {
    width: 323px;
    height: 223px;
    margin-left: 120px;
    margin-top: 30px;
    margin-bottom: 30px;
    background-size: 323px 223px;
    background-repeat: no-repeat;
    position: relative;
    text-align: left;
    padding-top: 10px;
    padding-left: 10px
}

.pay-panel .pay-off .pay-qrcode .pay-box.wx[data-v-23f6269b] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_payqrcodek2-60d77466.png)
}

.pay-panel .pay-off .pay-qrcode .pay-box.wx .wx_pay_img[data-v-23f6269b] {
    position: relative;
    top: 12px;
    left: 10px;
    width: 160px;
    height: 160px
}

.pay-panel .pay-off .pay-qrcode .pay-box.ali[data-v-23f6269b] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_payqrcodek3-81425c0c.png)
}

.pay-panel .pay-off .pay-qrcode .pay-box-pub[data-v-23f6269b] {
    padding: 10px 15px 10px 15px
}

.pay-panel .pay-off .pay-qrcode.s3[data-v-23f6269b] {
    height: 322px
}

.pay-panel .pay-off .pay-qrcode.s3 .pay-box[data-v-23f6269b] {
    margin-top: 50px
}

.pay-panel.vip .color-hl[data-v-23f6269b] {
    color: #F9552A
}

.pay-panel.vip .btn-open-pay[data-v-23f6269b] {
    background: #F9552A
}

.pay-panel.vip .goods-item.active[data-v-23f6269b] {
    border-color: #F9552A !important
}

.pay-panel.svip .color-hl[data-v-23f6269b] {
    color: #d2a874
}

.pay-panel.svip .btn-open-pay[data-v-23f6269b] {
    background: #d2a874
}

.pay-panel.svip .goods-item.active[data-v-23f6269b] {
    border-color: #d2a874 !important
}

.pay-panel.svip.no-introimg[data-v-23f6269b] {
    padding-bottom: 0;
    min-height: 340px
}

.pay-panel.qiye .color-hl[data-v-23f6269b] {
    color: #128bed
}

.pay-panel.qiye .btn-open-pay[data-v-23f6269b] {
    background: #128bed
}

.pay-panel.qiye .goods-item.active[data-v-23f6269b] {
    border-color: #128bed !important
}

.pay-panel[data-v-3f21a825] {
    color: #333;
    min-height: 420px;
    font-size: 14px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_modal_bg2@2x-d55f337d.png) center top;
    background-size: contain;
    background-repeat: no-repeat;
    padding-bottom: 50px
}

.pay-panel .pay-top[data-v-3f21a825] {
    padding-top: 5px;
    font-weight: normal;
    text-align: center
}

.pay-panel .pay-top .title[data-v-3f21a825] {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #fff
}

.pay-panel .pay-top .sub-title[data-v-3f21a825] {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff
}

.pay-panel .pay-top .rights[data-v-3f21a825] {
    font-size: 14px;
    color: #f9ad14;
    margin-left: 10px
}

.pay-panel .pay-top .type-tab[data-v-3f21a825] {
    text-align: center
}

.pay-panel .pay-top .type-tab .tab-item[data-v-3f21a825] {
    font-size: 16px;
    display: inline-block;
    line-height: 40px;
    margin-left: 15px;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.6)
}

.pay-panel .pay-top .type-tab .tab-item.active[data-v-3f21a825] {
    color: #fff;
    border-bottom: solid 2px #fff
}

.pay-panel .pay-container[data-v-3f21a825] {
    margin-top: 15px;
    padding: 0 50px
}

.pay-panel .pay-container .pay-wrap[data-v-3f21a825] {
    background: #fff;
    border: solid 1px #eee;
    border-radius: 6px;
    padding: 20px 75px 10px;
    margin-bottom: 25px
}

.pay-panel .pay-container .pay-wrap .goods-list[data-v-3f21a825] {
    height: 70px;
    margin-bottom: 20px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item[data-v-3f21a825] {
    display: inline-block;
    text-align: center;
    width: 148px;
    height: 70px;
    border: solid 2px #cdcdcd;
    border-radius: 2px;
    cursor: pointer;
    position: relative
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item[data-v-3f21a825]:not(:last-child) {
    margin-right: 40px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .price[data-v-3f21a825] {
    margin-top: 10px;
    color: #666
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .price .big[data-v-3f21a825] {
    font-size: 18px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .desc[data-v-3f21a825] {
    font-size: 12px;
    color: #666;
    margin-top: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .desc .old[data-v-3f21a825] {
    text-decoration: line-through;
    margin-right: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .actvity-desc[data-v-3f21a825] {
    font-size: 13px;
    color: #999;
    margin-top: 2px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .actvity-desc .old[data-v-3f21a825] {
    text-decoration: line-through;
    margin-right: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .ic-recomend[data-v-3f21a825] {
    position: absolute;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/ic_recomend-4a403486.png);
    background-size: 50px 18px;
    width: 50px;
    height: 18px;
    top: -10px;
    left: -2px
}

.pay-panel .pay-container .pay-wrap .pay-btn[data-v-3f21a825] {
    text-align: center
}

.pay-panel .pay-container .pay-wrap .pay-btn .btn-open-pay[data-v-3f21a825] {
    display: block;
    width: 242px;
    border-radius: 2px;
    font-size: 18px;
    color: #fff;
    line-height: 44px;
    margin: auto
}

.pay-panel .pay-container .pay-wrap .pay-btn .desc[data-v-3f21a825] {
    color: #999999;
    margin-top: 13px;
    margin-bottom: 5px
}

.pay-panel .pay-container .pay-wrap .pay-info .color-hl[data-v-3f21a825] {
    color: #F9552A
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-3f21a825] {
    height: 28px;
    margin-bottom: 5px;
    font-size: 16px
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-3f21a825]:before {
    display: table;
    content: ' '
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-3f21a825]:after {
    clear: both;
    display: table;
    content: ' '
}

.pay-panel .pay-container .pay-wrap .pay-info .rline .c[data-v-3f21a825] {
    float: left
}

.pay-panel .pay-container .pay-wrap .pay-info .rline .v[data-v-3f21a825] {
    float: right
}

.pay-panel .pay-intro img[data-v-3f21a825] {
    width: 680px;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

.pay-panel .pay-off .pay-select[data-v-3f21a825] {
    float: left;
    width: 185px;
    margin-right: 18px
}

.pay-panel .pay-off .pay-select .pay-type[data-v-3f21a825] {
    width: 185px;
    height: 60px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pay_btn_imgs-977feac3.png);
    background-size: 370px 240px;
    cursor: pointer;
    text-indent: -9999px;
    margin-bottom: 10px
}

.pay-panel .pay-off .pay-select .pay-type.disabled[data-v-3f21a825] {
    cursor: not-allowed;
    opacity: .5
}

.pay-panel .pay-off .pay-select .pay-type.wx[data-v-3f21a825] {
    background-position: 0px 0px
}

.pay-panel .pay-off .pay-select .pay-type.wx.active[data-v-3f21a825] {
    background-position: -185px 0px
}

.pay-panel .pay-off .pay-select .pay-type.ali[data-v-3f21a825] {
    background-position: 0px -60px
}

.pay-panel .pay-off .pay-select .pay-type.ali.active[data-v-3f21a825] {
    background-position: -185px -60px
}

.pay-panel .pay-off .pay-select .pay-type.pub[data-v-3f21a825] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pay_btn_imgs3-23b81d91.png);
    background-size: 370px 180px;
    background-position: 0px -120px
}

.pay-panel .pay-off .pay-select .pay-type.pub.active[data-v-3f21a825] {
    background-position: -185px -120px
}

.pay-panel .pay-off .pay-select .pay-desc[data-v-3f21a825] {
    margin-top: 25px;
    color: #999;
    line-height: 1.3;
    margin-bottom: 10px
}

.pay-panel .pay-off .pay-qrcode[data-v-3f21a825] {
    float: left;
    width: 475px;
    background: #f3f9fe
}

.pay-panel .pay-off .pay-qrcode .pay-box[data-v-3f21a825] {
    width: 323px;
    height: 223px;
    margin-left: 120px;
    margin-top: 30px;
    margin-bottom: 30px;
    background-size: 323px 223px;
    background-repeat: no-repeat;
    position: relative;
    text-align: left;
    padding-top: 10px;
    padding-left: 10px
}

.pay-panel .pay-off .pay-qrcode .pay-box.wx[data-v-3f21a825] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_payqrcodek2-60d77466.png)
}

.pay-panel .pay-off .pay-qrcode .pay-box.wx .wx_pay_img[data-v-3f21a825] {
    position: relative;
    top: 12px;
    left: 10px;
    width: 160px;
    height: 160px
}

.pay-panel .pay-off .pay-qrcode .pay-box.ali[data-v-3f21a825] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_payqrcodek3-81425c0c.png)
}

.pay-panel .pay-off .pay-qrcode .pay-box-pub[data-v-3f21a825] {
    padding: 10px 15px 10px 15px
}

.pay-panel .pay-off .pay-qrcode.s3[data-v-3f21a825] {
    height: 322px
}

.pay-panel .pay-off .pay-qrcode.s3 .pay-box[data-v-3f21a825] {
    margin-top: 50px
}

.pay-panel.vip .color-hl[data-v-3f21a825] {
    color: #F9552A
}

.pay-panel.vip .btn-open-pay[data-v-3f21a825] {
    background: #F9552A
}

.pay-panel.vip .goods-item.active[data-v-3f21a825] {
    border-color: #F9552A !important
}

.pay-panel.svip .color-hl[data-v-3f21a825] {
    color: #d2a874
}

.pay-panel.svip .btn-open-pay[data-v-3f21a825] {
    background: #d2a874
}

.pay-panel.svip .goods-item.active[data-v-3f21a825] {
    border-color: #d2a874 !important
}

.pay-panel.svip.no-introimg[data-v-3f21a825] {
    padding-bottom: 0;
    min-height: 340px
}

.pay-panel.qiye .color-hl[data-v-3f21a825] {
    color: #128bed
}

.pay-panel.qiye .btn-open-pay[data-v-3f21a825] {
    background: #128bed
}

.pay-panel.qiye .goods-item.active[data-v-3f21a825] {
    border-color: #128bed !important
}

.pay-panel[data-v-992f9172] {
    color: #333;
    min-height: 420px;
    font-size: 14px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_modal_bg2@2x-d55f337d.png) center top;
    background-size: contain;
    background-repeat: no-repeat;
    padding-bottom: 50px
}

.pay-panel .pay-top[data-v-992f9172] {
    padding-top: 5px;
    font-weight: normal;
    text-align: center
}

.pay-panel .pay-top .title[data-v-992f9172] {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #fff
}

.pay-panel .pay-top .sub-title[data-v-992f9172] {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff
}

.pay-panel .pay-top .rights[data-v-992f9172] {
    font-size: 14px;
    color: #f9ad14;
    margin-left: 10px
}

.pay-panel .pay-top .type-tab[data-v-992f9172] {
    text-align: center
}

.pay-panel .pay-top .type-tab .tab-item[data-v-992f9172] {
    font-size: 16px;
    display: inline-block;
    line-height: 40px;
    margin-left: 15px;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.6)
}

.pay-panel .pay-top .type-tab .tab-item.active[data-v-992f9172] {
    color: #fff;
    border-bottom: solid 2px #fff
}

.pay-panel .pay-container[data-v-992f9172] {
    margin-top: 15px;
    padding: 0 50px
}

.pay-panel .pay-container .pay-wrap[data-v-992f9172] {
    background: #fff;
    border: solid 1px #eee;
    border-radius: 6px;
    padding: 20px 75px 10px;
    margin-bottom: 25px
}

.pay-panel .pay-container .pay-wrap .goods-list[data-v-992f9172] {
    height: 70px;
    margin-bottom: 20px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item[data-v-992f9172] {
    display: inline-block;
    text-align: center;
    width: 148px;
    height: 70px;
    border: solid 2px #cdcdcd;
    border-radius: 2px;
    cursor: pointer;
    position: relative
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item[data-v-992f9172]:not(:last-child) {
    margin-right: 40px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .price[data-v-992f9172] {
    margin-top: 10px;
    color: #666
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .price .big[data-v-992f9172] {
    font-size: 18px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .desc[data-v-992f9172] {
    font-size: 12px;
    color: #666;
    margin-top: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .desc .old[data-v-992f9172] {
    text-decoration: line-through;
    margin-right: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .actvity-desc[data-v-992f9172] {
    font-size: 13px;
    color: #999;
    margin-top: 2px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .actvity-desc .old[data-v-992f9172] {
    text-decoration: line-through;
    margin-right: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .ic-recomend[data-v-992f9172] {
    position: absolute;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/ic_recomend-4a403486.png);
    background-size: 50px 18px;
    width: 50px;
    height: 18px;
    top: -10px;
    left: -2px
}

.pay-panel .pay-container .pay-wrap .pay-btn[data-v-992f9172] {
    text-align: center
}

.pay-panel .pay-container .pay-wrap .pay-btn .btn-open-pay[data-v-992f9172] {
    display: block;
    width: 242px;
    border-radius: 2px;
    font-size: 18px;
    color: #fff;
    line-height: 44px;
    margin: auto
}

.pay-panel .pay-container .pay-wrap .pay-btn .desc[data-v-992f9172] {
    color: #999999;
    margin-top: 13px;
    margin-bottom: 5px
}

.pay-panel .pay-container .pay-wrap .pay-info .color-hl[data-v-992f9172] {
    color: #F9552A
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-992f9172] {
    height: 28px;
    margin-bottom: 5px;
    font-size: 16px
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-992f9172]:before {
    display: table;
    content: ' '
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-992f9172]:after {
    clear: both;
    display: table;
    content: ' '
}

.pay-panel .pay-container .pay-wrap .pay-info .rline .c[data-v-992f9172] {
    float: left
}

.pay-panel .pay-container .pay-wrap .pay-info .rline .v[data-v-992f9172] {
    float: right
}

.pay-panel .pay-intro img[data-v-992f9172] {
    width: 680px;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

.pay-panel .pay-off .pay-select[data-v-992f9172] {
    float: left;
    width: 185px;
    margin-right: 18px
}

.pay-panel .pay-off .pay-select .pay-type[data-v-992f9172] {
    width: 185px;
    height: 60px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pay_btn_imgs-977feac3.png);
    background-size: 370px 240px;
    cursor: pointer;
    text-indent: -9999px;
    margin-bottom: 10px
}

.pay-panel .pay-off .pay-select .pay-type.disabled[data-v-992f9172] {
    cursor: not-allowed;
    opacity: .5
}

.pay-panel .pay-off .pay-select .pay-type.wx[data-v-992f9172] {
    background-position: 0px 0px
}

.pay-panel .pay-off .pay-select .pay-type.wx.active[data-v-992f9172] {
    background-position: -185px 0px
}

.pay-panel .pay-off .pay-select .pay-type.ali[data-v-992f9172] {
    background-position: 0px -60px
}

.pay-panel .pay-off .pay-select .pay-type.ali.active[data-v-992f9172] {
    background-position: -185px -60px
}

.pay-panel .pay-off .pay-select .pay-type.pub[data-v-992f9172] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pay_btn_imgs3-23b81d91.png);
    background-size: 370px 180px;
    background-position: 0px -120px
}

.pay-panel .pay-off .pay-select .pay-type.pub.active[data-v-992f9172] {
    background-position: -185px -120px
}

.pay-panel .pay-off .pay-select .pay-desc[data-v-992f9172] {
    margin-top: 25px;
    color: #999;
    line-height: 1.3;
    margin-bottom: 10px
}

.pay-panel .pay-off .pay-qrcode[data-v-992f9172] {
    float: left;
    width: 475px;
    background: #f3f9fe
}

.pay-panel .pay-off .pay-qrcode .pay-box[data-v-992f9172] {
    width: 323px;
    height: 223px;
    margin-left: 120px;
    margin-top: 30px;
    margin-bottom: 30px;
    background-size: 323px 223px;
    background-repeat: no-repeat;
    position: relative;
    text-align: left;
    padding-top: 10px;
    padding-left: 10px
}

.pay-panel .pay-off .pay-qrcode .pay-box.wx[data-v-992f9172] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_payqrcodek2-60d77466.png)
}

.pay-panel .pay-off .pay-qrcode .pay-box.wx .wx_pay_img[data-v-992f9172] {
    position: relative;
    top: 12px;
    left: 10px;
    width: 160px;
    height: 160px
}

.pay-panel .pay-off .pay-qrcode .pay-box.ali[data-v-992f9172] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_payqrcodek3-81425c0c.png)
}

.pay-panel .pay-off .pay-qrcode .pay-box-pub[data-v-992f9172] {
    padding: 10px 15px 10px 15px
}

.pay-panel .pay-off .pay-qrcode.s3[data-v-992f9172] {
    height: 322px
}

.pay-panel .pay-off .pay-qrcode.s3 .pay-box[data-v-992f9172] {
    margin-top: 50px
}

.pay-panel.vip .color-hl[data-v-992f9172] {
    color: #F9552A
}

.pay-panel.vip .btn-open-pay[data-v-992f9172] {
    background: #F9552A
}

.pay-panel.vip .goods-item.active[data-v-992f9172] {
    border-color: #F9552A !important
}

.pay-panel.svip .color-hl[data-v-992f9172] {
    color: #d2a874
}

.pay-panel.svip .btn-open-pay[data-v-992f9172] {
    background: #d2a874
}

.pay-panel.svip .goods-item.active[data-v-992f9172] {
    border-color: #d2a874 !important
}

.pay-panel.svip.no-introimg[data-v-992f9172] {
    padding-bottom: 0;
    min-height: 340px
}

.pay-panel.qiye .color-hl[data-v-992f9172] {
    color: #128bed
}

.pay-panel.qiye .btn-open-pay[data-v-992f9172] {
    background: #128bed
}

.pay-panel.qiye .goods-item.active[data-v-992f9172] {
    border-color: #128bed !important
}

.pay-panel[data-v-2a2ef929] {
    color: #333;
    min-height: 420px;
    font-size: 14px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_modal_bg2@2x-d55f337d.png) center top;
    background-size: contain;
    background-repeat: no-repeat;
    padding-bottom: 50px
}

.pay-panel .pay-top[data-v-2a2ef929] {
    padding-top: 5px;
    font-weight: normal;
    text-align: center
}

.pay-panel .pay-top .title[data-v-2a2ef929] {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #fff
}

.pay-panel .pay-top .sub-title[data-v-2a2ef929] {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff
}

.pay-panel .pay-top .rights[data-v-2a2ef929] {
    font-size: 14px;
    color: #f9ad14;
    margin-left: 10px
}

.pay-panel .pay-top .type-tab[data-v-2a2ef929] {
    text-align: center
}

.pay-panel .pay-top .type-tab .tab-item[data-v-2a2ef929] {
    font-size: 16px;
    display: inline-block;
    line-height: 40px;
    margin-left: 15px;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.6)
}

.pay-panel .pay-top .type-tab .tab-item.active[data-v-2a2ef929] {
    color: #fff;
    border-bottom: solid 2px #fff
}

.pay-panel .pay-container[data-v-2a2ef929] {
    margin-top: 15px;
    padding: 0 50px
}

.pay-panel .pay-container .pay-wrap[data-v-2a2ef929] {
    background: #fff;
    border: solid 1px #eee;
    border-radius: 6px;
    padding: 20px 75px 10px;
    margin-bottom: 25px
}

.pay-panel .pay-container .pay-wrap .goods-list[data-v-2a2ef929] {
    height: 70px;
    margin-bottom: 20px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item[data-v-2a2ef929] {
    display: inline-block;
    text-align: center;
    width: 148px;
    height: 70px;
    border: solid 2px #cdcdcd;
    border-radius: 2px;
    cursor: pointer;
    position: relative
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item[data-v-2a2ef929]:not(:last-child) {
    margin-right: 40px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .price[data-v-2a2ef929] {
    margin-top: 10px;
    color: #666
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .price .big[data-v-2a2ef929] {
    font-size: 18px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .desc[data-v-2a2ef929] {
    font-size: 12px;
    color: #666;
    margin-top: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .desc .old[data-v-2a2ef929] {
    text-decoration: line-through;
    margin-right: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .actvity-desc[data-v-2a2ef929] {
    font-size: 13px;
    color: #999;
    margin-top: 2px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .actvity-desc .old[data-v-2a2ef929] {
    text-decoration: line-through;
    margin-right: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .ic-recomend[data-v-2a2ef929] {
    position: absolute;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/ic_recomend-4a403486.png);
    background-size: 50px 18px;
    width: 50px;
    height: 18px;
    top: -10px;
    left: -2px
}

.pay-panel .pay-container .pay-wrap .pay-btn[data-v-2a2ef929] {
    text-align: center
}

.pay-panel .pay-container .pay-wrap .pay-btn .btn-open-pay[data-v-2a2ef929] {
    display: block;
    width: 242px;
    border-radius: 2px;
    font-size: 18px;
    color: #fff;
    line-height: 44px;
    margin: auto
}

.pay-panel .pay-container .pay-wrap .pay-btn .desc[data-v-2a2ef929] {
    color: #999999;
    margin-top: 13px;
    margin-bottom: 5px
}

.pay-panel .pay-container .pay-wrap .pay-info .color-hl[data-v-2a2ef929] {
    color: #F9552A
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-2a2ef929] {
    height: 28px;
    margin-bottom: 5px;
    font-size: 16px
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-2a2ef929]:before {
    display: table;
    content: ' '
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-2a2ef929]:after {
    clear: both;
    display: table;
    content: ' '
}

.pay-panel .pay-container .pay-wrap .pay-info .rline .c[data-v-2a2ef929] {
    float: left
}

.pay-panel .pay-container .pay-wrap .pay-info .rline .v[data-v-2a2ef929] {
    float: right
}

.pay-panel .pay-intro img[data-v-2a2ef929] {
    width: 680px;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

.pay-panel .pay-off .pay-select[data-v-2a2ef929] {
    float: left;
    width: 185px;
    margin-right: 18px
}

.pay-panel .pay-off .pay-select .pay-type[data-v-2a2ef929] {
    width: 185px;
    height: 60px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pay_btn_imgs-977feac3.png);
    background-size: 370px 240px;
    cursor: pointer;
    text-indent: -9999px;
    margin-bottom: 10px
}

.pay-panel .pay-off .pay-select .pay-type.disabled[data-v-2a2ef929] {
    cursor: not-allowed;
    opacity: .5
}

.pay-panel .pay-off .pay-select .pay-type.wx[data-v-2a2ef929] {
    background-position: 0px 0px
}

.pay-panel .pay-off .pay-select .pay-type.wx.active[data-v-2a2ef929] {
    background-position: -185px 0px
}

.pay-panel .pay-off .pay-select .pay-type.ali[data-v-2a2ef929] {
    background-position: 0px -60px
}

.pay-panel .pay-off .pay-select .pay-type.ali.active[data-v-2a2ef929] {
    background-position: -185px -60px
}

.pay-panel .pay-off .pay-select .pay-type.pub[data-v-2a2ef929] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pay_btn_imgs3-23b81d91.png);
    background-size: 370px 180px;
    background-position: 0px -120px
}

.pay-panel .pay-off .pay-select .pay-type.pub.active[data-v-2a2ef929] {
    background-position: -185px -120px
}

.pay-panel .pay-off .pay-select .pay-desc[data-v-2a2ef929] {
    margin-top: 25px;
    color: #999;
    line-height: 1.3;
    margin-bottom: 10px
}

.pay-panel .pay-off .pay-qrcode[data-v-2a2ef929] {
    float: left;
    width: 475px;
    background: #f3f9fe
}

.pay-panel .pay-off .pay-qrcode .pay-box[data-v-2a2ef929] {
    width: 323px;
    height: 223px;
    margin-left: 120px;
    margin-top: 30px;
    margin-bottom: 30px;
    background-size: 323px 223px;
    background-repeat: no-repeat;
    position: relative;
    text-align: left;
    padding-top: 10px;
    padding-left: 10px
}

.pay-panel .pay-off .pay-qrcode .pay-box.wx[data-v-2a2ef929] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_payqrcodek2-60d77466.png)
}

.pay-panel .pay-off .pay-qrcode .pay-box.wx .wx_pay_img[data-v-2a2ef929] {
    position: relative;
    top: 12px;
    left: 10px;
    width: 160px;
    height: 160px
}

.pay-panel .pay-off .pay-qrcode .pay-box.ali[data-v-2a2ef929] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_payqrcodek3-81425c0c.png)
}

.pay-panel .pay-off .pay-qrcode .pay-box-pub[data-v-2a2ef929] {
    padding: 10px 15px 10px 15px
}

.pay-panel .pay-off .pay-qrcode.s3[data-v-2a2ef929] {
    height: 322px
}

.pay-panel .pay-off .pay-qrcode.s3 .pay-box[data-v-2a2ef929] {
    margin-top: 50px
}

.pay-panel.vip .color-hl[data-v-2a2ef929] {
    color: #F9552A
}

.pay-panel.vip .btn-open-pay[data-v-2a2ef929] {
    background: #F9552A
}

.pay-panel.vip .goods-item.active[data-v-2a2ef929] {
    border-color: #F9552A !important
}

.pay-panel.svip .color-hl[data-v-2a2ef929] {
    color: #d2a874
}

.pay-panel.svip .btn-open-pay[data-v-2a2ef929] {
    background: #d2a874
}

.pay-panel.svip .goods-item.active[data-v-2a2ef929] {
    border-color: #d2a874 !important
}

.pay-panel.svip.no-introimg[data-v-2a2ef929] {
    padding-bottom: 0;
    min-height: 340px
}

.pay-panel.qiye .color-hl[data-v-2a2ef929] {
    color: #128bed
}

.pay-panel.qiye .btn-open-pay[data-v-2a2ef929] {
    background: #128bed
}

.pay-panel.qiye .goods-item.active[data-v-2a2ef929] {
    border-color: #128bed !important
}

.pay-panel[data-v-e96b41f2] {
    color: #333;
    min-height: 420px;
    font-size: 14px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_modal_bg2@2x-d55f337d.png) center top;
    background-size: contain;
    background-repeat: no-repeat;
    padding-bottom: 50px
}

.pay-panel .pay-top[data-v-e96b41f2] {
    padding-top: 5px;
    font-weight: normal;
    text-align: center
}

.pay-panel .pay-top .title[data-v-e96b41f2] {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #fff
}

.pay-panel .pay-top .sub-title[data-v-e96b41f2] {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff
}

.pay-panel .pay-top .rights[data-v-e96b41f2] {
    font-size: 14px;
    color: #f9ad14;
    margin-left: 10px
}

.pay-panel .pay-top .type-tab[data-v-e96b41f2] {
    text-align: center
}

.pay-panel .pay-top .type-tab .tab-item[data-v-e96b41f2] {
    font-size: 16px;
    display: inline-block;
    line-height: 40px;
    margin-left: 15px;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.6)
}

.pay-panel .pay-top .type-tab .tab-item.active[data-v-e96b41f2] {
    color: #fff;
    border-bottom: solid 2px #fff
}

.pay-panel .pay-container[data-v-e96b41f2] {
    margin-top: 15px;
    padding: 0 50px
}

.pay-panel .pay-container .pay-wrap[data-v-e96b41f2] {
    background: #fff;
    border: solid 1px #eee;
    border-radius: 6px;
    padding: 20px 75px 10px;
    margin-bottom: 25px
}

.pay-panel .pay-container .pay-wrap .goods-list[data-v-e96b41f2] {
    height: 70px;
    margin-bottom: 20px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item[data-v-e96b41f2] {
    display: inline-block;
    text-align: center;
    width: 148px;
    height: 70px;
    border: solid 2px #cdcdcd;
    border-radius: 2px;
    cursor: pointer;
    position: relative
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item[data-v-e96b41f2]:not(:last-child) {
    margin-right: 40px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .price[data-v-e96b41f2] {
    margin-top: 10px;
    color: #666
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .price .big[data-v-e96b41f2] {
    font-size: 18px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .desc[data-v-e96b41f2] {
    font-size: 12px;
    color: #666;
    margin-top: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .desc .old[data-v-e96b41f2] {
    text-decoration: line-through;
    margin-right: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .actvity-desc[data-v-e96b41f2] {
    font-size: 13px;
    color: #999;
    margin-top: 2px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .actvity-desc .old[data-v-e96b41f2] {
    text-decoration: line-through;
    margin-right: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .ic-recomend[data-v-e96b41f2] {
    position: absolute;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/ic_recomend-4a403486.png);
    background-size: 50px 18px;
    width: 50px;
    height: 18px;
    top: -10px;
    left: -2px
}

.pay-panel .pay-container .pay-wrap .pay-btn[data-v-e96b41f2] {
    text-align: center
}

.pay-panel .pay-container .pay-wrap .pay-btn .btn-open-pay[data-v-e96b41f2] {
    display: block;
    width: 242px;
    border-radius: 2px;
    font-size: 18px;
    color: #fff;
    line-height: 44px;
    margin: auto
}

.pay-panel .pay-container .pay-wrap .pay-btn .desc[data-v-e96b41f2] {
    color: #999999;
    margin-top: 13px;
    margin-bottom: 5px
}

.pay-panel .pay-container .pay-wrap .pay-info .color-hl[data-v-e96b41f2] {
    color: #F9552A
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-e96b41f2] {
    height: 28px;
    margin-bottom: 5px;
    font-size: 16px
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-e96b41f2]:before {
    display: table;
    content: ' '
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-e96b41f2]:after {
    clear: both;
    display: table;
    content: ' '
}

.pay-panel .pay-container .pay-wrap .pay-info .rline .c[data-v-e96b41f2] {
    float: left
}

.pay-panel .pay-container .pay-wrap .pay-info .rline .v[data-v-e96b41f2] {
    float: right
}

.pay-panel .pay-intro img[data-v-e96b41f2] {
    width: 680px;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

.pay-panel .pay-off .pay-select[data-v-e96b41f2] {
    float: left;
    width: 185px;
    margin-right: 18px
}

.pay-panel .pay-off .pay-select .pay-type[data-v-e96b41f2] {
    width: 185px;
    height: 60px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pay_btn_imgs-977feac3.png);
    background-size: 370px 240px;
    cursor: pointer;
    text-indent: -9999px;
    margin-bottom: 10px
}

.pay-panel .pay-off .pay-select .pay-type.disabled[data-v-e96b41f2] {
    cursor: not-allowed;
    opacity: .5
}

.pay-panel .pay-off .pay-select .pay-type.wx[data-v-e96b41f2] {
    background-position: 0px 0px
}

.pay-panel .pay-off .pay-select .pay-type.wx.active[data-v-e96b41f2] {
    background-position: -185px 0px
}

.pay-panel .pay-off .pay-select .pay-type.ali[data-v-e96b41f2] {
    background-position: 0px -60px
}

.pay-panel .pay-off .pay-select .pay-type.ali.active[data-v-e96b41f2] {
    background-position: -185px -60px
}

.pay-panel .pay-off .pay-select .pay-type.pub[data-v-e96b41f2] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pay_btn_imgs3-23b81d91.png);
    background-size: 370px 180px;
    background-position: 0px -120px
}

.pay-panel .pay-off .pay-select .pay-type.pub.active[data-v-e96b41f2] {
    background-position: -185px -120px
}

.pay-panel .pay-off .pay-select .pay-desc[data-v-e96b41f2] {
    margin-top: 25px;
    color: #999;
    line-height: 1.3;
    margin-bottom: 10px
}

.pay-panel .pay-off .pay-qrcode[data-v-e96b41f2] {
    float: left;
    width: 475px;
    background: #f3f9fe
}

.pay-panel .pay-off .pay-qrcode .pay-box[data-v-e96b41f2] {
    width: 323px;
    height: 223px;
    margin-left: 120px;
    margin-top: 30px;
    margin-bottom: 30px;
    background-size: 323px 223px;
    background-repeat: no-repeat;
    position: relative;
    text-align: left;
    padding-top: 10px;
    padding-left: 10px
}

.pay-panel .pay-off .pay-qrcode .pay-box.wx[data-v-e96b41f2] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_payqrcodek2-60d77466.png)
}

.pay-panel .pay-off .pay-qrcode .pay-box.wx .wx_pay_img[data-v-e96b41f2] {
    position: relative;
    top: 12px;
    left: 10px;
    width: 160px;
    height: 160px
}

.pay-panel .pay-off .pay-qrcode .pay-box.ali[data-v-e96b41f2] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_payqrcodek3-81425c0c.png)
}

.pay-panel .pay-off .pay-qrcode .pay-box-pub[data-v-e96b41f2] {
    padding: 10px 15px 10px 15px
}

.pay-panel .pay-off .pay-qrcode.s3[data-v-e96b41f2] {
    height: 322px
}

.pay-panel .pay-off .pay-qrcode.s3 .pay-box[data-v-e96b41f2] {
    margin-top: 50px
}

.pay-panel.vip .color-hl[data-v-e96b41f2] {
    color: #F9552A
}

.pay-panel.vip .btn-open-pay[data-v-e96b41f2] {
    background: #F9552A
}

.pay-panel.vip .goods-item.active[data-v-e96b41f2] {
    border-color: #F9552A !important
}

.pay-panel.svip .color-hl[data-v-e96b41f2] {
    color: #d2a874
}

.pay-panel.svip .btn-open-pay[data-v-e96b41f2] {
    background: #d2a874
}

.pay-panel.svip .goods-item.active[data-v-e96b41f2] {
    border-color: #d2a874 !important
}

.pay-panel.svip.no-introimg[data-v-e96b41f2] {
    padding-bottom: 0;
    min-height: 340px
}

.pay-panel.qiye .color-hl[data-v-e96b41f2] {
    color: #128bed
}

.pay-panel.qiye .btn-open-pay[data-v-e96b41f2] {
    background: #128bed
}

.pay-panel.qiye .goods-item.active[data-v-e96b41f2] {
    border-color: #128bed !important
}

.pay-panel[data-v-0cd3e5ca] {
    color: #333;
    min-height: 420px;
    font-size: 14px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_modal_bg2@2x-d55f337d.png) center top;
    background-size: contain;
    background-repeat: no-repeat;
    padding-bottom: 50px
}

.pay-panel .pay-top[data-v-0cd3e5ca] {
    padding-top: 5px;
    font-weight: normal;
    text-align: center
}

.pay-panel .pay-top .title[data-v-0cd3e5ca] {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #fff
}

.pay-panel .pay-top .sub-title[data-v-0cd3e5ca] {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff
}

.pay-panel .pay-top .rights[data-v-0cd3e5ca] {
    font-size: 14px;
    color: #f9ad14;
    margin-left: 10px
}

.pay-panel .pay-top .type-tab[data-v-0cd3e5ca] {
    text-align: center
}

.pay-panel .pay-top .type-tab .tab-item[data-v-0cd3e5ca] {
    font-size: 16px;
    display: inline-block;
    line-height: 40px;
    margin-left: 15px;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.6)
}

.pay-panel .pay-top .type-tab .tab-item.active[data-v-0cd3e5ca] {
    color: #fff;
    border-bottom: solid 2px #fff
}

.pay-panel .pay-container[data-v-0cd3e5ca] {
    margin-top: 15px;
    padding: 0 50px
}

.pay-panel .pay-container .pay-wrap[data-v-0cd3e5ca] {
    background: #fff;
    border: solid 1px #eee;
    border-radius: 6px;
    padding: 20px 75px 10px;
    margin-bottom: 25px
}

.pay-panel .pay-container .pay-wrap .goods-list[data-v-0cd3e5ca] {
    height: 70px;
    margin-bottom: 20px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item[data-v-0cd3e5ca] {
    display: inline-block;
    text-align: center;
    width: 148px;
    height: 70px;
    border: solid 2px #cdcdcd;
    border-radius: 2px;
    cursor: pointer;
    position: relative
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item[data-v-0cd3e5ca]:not(:last-child) {
    margin-right: 40px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .price[data-v-0cd3e5ca] {
    margin-top: 10px;
    color: #666
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .price .big[data-v-0cd3e5ca] {
    font-size: 18px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .desc[data-v-0cd3e5ca] {
    font-size: 12px;
    color: #666;
    margin-top: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .desc .old[data-v-0cd3e5ca] {
    text-decoration: line-through;
    margin-right: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .actvity-desc[data-v-0cd3e5ca] {
    font-size: 13px;
    color: #999;
    margin-top: 2px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .actvity-desc .old[data-v-0cd3e5ca] {
    text-decoration: line-through;
    margin-right: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .ic-recomend[data-v-0cd3e5ca] {
    position: absolute;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/ic_recomend-4a403486.png);
    background-size: 50px 18px;
    width: 50px;
    height: 18px;
    top: -10px;
    left: -2px
}

.pay-panel .pay-container .pay-wrap .pay-btn[data-v-0cd3e5ca] {
    text-align: center
}

.pay-panel .pay-container .pay-wrap .pay-btn .btn-open-pay[data-v-0cd3e5ca] {
    display: block;
    width: 242px;
    border-radius: 2px;
    font-size: 18px;
    color: #fff;
    line-height: 44px;
    margin: auto
}

.pay-panel .pay-container .pay-wrap .pay-btn .desc[data-v-0cd3e5ca] {
    color: #999999;
    margin-top: 13px;
    margin-bottom: 5px
}

.pay-panel .pay-container .pay-wrap .pay-info .color-hl[data-v-0cd3e5ca] {
    color: #F9552A
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-0cd3e5ca] {
    height: 28px;
    margin-bottom: 5px;
    font-size: 16px
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-0cd3e5ca]:before {
    display: table;
    content: ' '
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-0cd3e5ca]:after {
    clear: both;
    display: table;
    content: ' '
}

.pay-panel .pay-container .pay-wrap .pay-info .rline .c[data-v-0cd3e5ca] {
    float: left
}

.pay-panel .pay-container .pay-wrap .pay-info .rline .v[data-v-0cd3e5ca] {
    float: right
}

.pay-panel .pay-intro img[data-v-0cd3e5ca] {
    width: 680px;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

.pay-panel .pay-off .pay-select[data-v-0cd3e5ca] {
    float: left;
    width: 185px;
    margin-right: 18px
}

.pay-panel .pay-off .pay-select .pay-type[data-v-0cd3e5ca] {
    width: 185px;
    height: 60px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pay_btn_imgs-977feac3.png);
    background-size: 370px 240px;
    cursor: pointer;
    text-indent: -9999px;
    margin-bottom: 10px
}

.pay-panel .pay-off .pay-select .pay-type.disabled[data-v-0cd3e5ca] {
    cursor: not-allowed;
    opacity: .5
}

.pay-panel .pay-off .pay-select .pay-type.wx[data-v-0cd3e5ca] {
    background-position: 0px 0px
}

.pay-panel .pay-off .pay-select .pay-type.wx.active[data-v-0cd3e5ca] {
    background-position: -185px 0px
}

.pay-panel .pay-off .pay-select .pay-type.ali[data-v-0cd3e5ca] {
    background-position: 0px -60px
}

.pay-panel .pay-off .pay-select .pay-type.ali.active[data-v-0cd3e5ca] {
    background-position: -185px -60px
}

.pay-panel .pay-off .pay-select .pay-type.pub[data-v-0cd3e5ca] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pay_btn_imgs3-23b81d91.png);
    background-size: 370px 180px;
    background-position: 0px -120px
}

.pay-panel .pay-off .pay-select .pay-type.pub.active[data-v-0cd3e5ca] {
    background-position: -185px -120px
}

.pay-panel .pay-off .pay-select .pay-desc[data-v-0cd3e5ca] {
    margin-top: 25px;
    color: #999;
    line-height: 1.3;
    margin-bottom: 10px
}

.pay-panel .pay-off .pay-qrcode[data-v-0cd3e5ca] {
    float: left;
    width: 475px;
    background: #f3f9fe
}

.pay-panel .pay-off .pay-qrcode .pay-box[data-v-0cd3e5ca] {
    width: 323px;
    height: 223px;
    margin-left: 120px;
    margin-top: 30px;
    margin-bottom: 30px;
    background-size: 323px 223px;
    background-repeat: no-repeat;
    position: relative;
    text-align: left;
    padding-top: 10px;
    padding-left: 10px
}

.pay-panel .pay-off .pay-qrcode .pay-box.wx[data-v-0cd3e5ca] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_payqrcodek2-60d77466.png)
}

.pay-panel .pay-off .pay-qrcode .pay-box.wx .wx_pay_img[data-v-0cd3e5ca] {
    position: relative;
    top: 12px;
    left: 10px;
    width: 160px;
    height: 160px
}

.pay-panel .pay-off .pay-qrcode .pay-box.ali[data-v-0cd3e5ca] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_payqrcodek3-81425c0c.png)
}

.pay-panel .pay-off .pay-qrcode .pay-box-pub[data-v-0cd3e5ca] {
    padding: 10px 15px 10px 15px
}

.pay-panel .pay-off .pay-qrcode.s3[data-v-0cd3e5ca] {
    height: 322px
}

.pay-panel .pay-off .pay-qrcode.s3 .pay-box[data-v-0cd3e5ca] {
    margin-top: 50px
}

.pay-panel.vip .color-hl[data-v-0cd3e5ca] {
    color: #F9552A
}

.pay-panel.vip .btn-open-pay[data-v-0cd3e5ca] {
    background: #F9552A
}

.pay-panel.vip .goods-item.active[data-v-0cd3e5ca] {
    border-color: #F9552A !important
}

.pay-panel.svip .color-hl[data-v-0cd3e5ca] {
    color: #d2a874
}

.pay-panel.svip .btn-open-pay[data-v-0cd3e5ca] {
    background: #d2a874
}

.pay-panel.svip .goods-item.active[data-v-0cd3e5ca] {
    border-color: #d2a874 !important
}

.pay-panel.svip.no-introimg[data-v-0cd3e5ca] {
    padding-bottom: 0;
    min-height: 340px
}

.pay-panel.qiye .color-hl[data-v-0cd3e5ca] {
    color: #128bed
}

.pay-panel.qiye .btn-open-pay[data-v-0cd3e5ca] {
    background: #128bed
}

.pay-panel.qiye .goods-item.active[data-v-0cd3e5ca] {
    border-color: #128bed !important
}

.pay-panel[data-v-d7636ef2] {
    color: #333;
    min-height: 420px;
    font-size: 14px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_modal_bg2@2x-d55f337d.png) center top;
    background-size: contain;
    background-repeat: no-repeat;
    padding-bottom: 50px
}

.pay-panel .pay-top[data-v-d7636ef2] {
    padding-top: 5px;
    font-weight: normal;
    text-align: center
}

.pay-panel .pay-top .title[data-v-d7636ef2] {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #fff
}

.pay-panel .pay-top .sub-title[data-v-d7636ef2] {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff
}

.pay-panel .pay-top .rights[data-v-d7636ef2] {
    font-size: 14px;
    color: #f9ad14;
    margin-left: 10px
}

.pay-panel .pay-top .type-tab[data-v-d7636ef2] {
    text-align: center
}

.pay-panel .pay-top .type-tab .tab-item[data-v-d7636ef2] {
    font-size: 16px;
    display: inline-block;
    line-height: 40px;
    margin-left: 15px;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.6)
}

.pay-panel .pay-top .type-tab .tab-item.active[data-v-d7636ef2] {
    color: #fff;
    border-bottom: solid 2px #fff
}

.pay-panel .pay-container[data-v-d7636ef2] {
    margin-top: 15px;
    padding: 0 50px
}

.pay-panel .pay-container .pay-wrap[data-v-d7636ef2] {
    background: #fff;
    border: solid 1px #eee;
    border-radius: 6px;
    padding: 20px 75px 10px;
    margin-bottom: 25px
}

.pay-panel .pay-container .pay-wrap .goods-list[data-v-d7636ef2] {
    height: 70px;
    margin-bottom: 20px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item[data-v-d7636ef2] {
    display: inline-block;
    text-align: center;
    width: 148px;
    height: 70px;
    border: solid 2px #cdcdcd;
    border-radius: 2px;
    cursor: pointer;
    position: relative
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item[data-v-d7636ef2]:not(:last-child) {
    margin-right: 40px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .price[data-v-d7636ef2] {
    margin-top: 10px;
    color: #666
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .price .big[data-v-d7636ef2] {
    font-size: 18px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .desc[data-v-d7636ef2] {
    font-size: 12px;
    color: #666;
    margin-top: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .desc .old[data-v-d7636ef2] {
    text-decoration: line-through;
    margin-right: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .actvity-desc[data-v-d7636ef2] {
    font-size: 13px;
    color: #999;
    margin-top: 2px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .actvity-desc .old[data-v-d7636ef2] {
    text-decoration: line-through;
    margin-right: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .ic-recomend[data-v-d7636ef2] {
    position: absolute;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/ic_recomend-4a403486.png);
    background-size: 50px 18px;
    width: 50px;
    height: 18px;
    top: -10px;
    left: -2px
}

.pay-panel .pay-container .pay-wrap .pay-btn[data-v-d7636ef2] {
    text-align: center
}

.pay-panel .pay-container .pay-wrap .pay-btn .btn-open-pay[data-v-d7636ef2] {
    display: block;
    width: 242px;
    border-radius: 2px;
    font-size: 18px;
    color: #fff;
    line-height: 44px;
    margin: auto
}

.pay-panel .pay-container .pay-wrap .pay-btn .desc[data-v-d7636ef2] {
    color: #999999;
    margin-top: 13px;
    margin-bottom: 5px
}

.pay-panel .pay-container .pay-wrap .pay-info .color-hl[data-v-d7636ef2] {
    color: #F9552A
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-d7636ef2] {
    height: 28px;
    margin-bottom: 5px;
    font-size: 16px
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-d7636ef2]:before {
    display: table;
    content: ' '
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-d7636ef2]:after {
    clear: both;
    display: table;
    content: ' '
}

.pay-panel .pay-container .pay-wrap .pay-info .rline .c[data-v-d7636ef2] {
    float: left
}

.pay-panel .pay-container .pay-wrap .pay-info .rline .v[data-v-d7636ef2] {
    float: right
}

.pay-panel .pay-intro img[data-v-d7636ef2] {
    width: 680px;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

.pay-panel .pay-off .pay-select[data-v-d7636ef2] {
    float: left;
    width: 185px;
    margin-right: 18px
}

.pay-panel .pay-off .pay-select .pay-type[data-v-d7636ef2] {
    width: 185px;
    height: 60px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pay_btn_imgs-977feac3.png);
    background-size: 370px 240px;
    cursor: pointer;
    text-indent: -9999px;
    margin-bottom: 10px
}

.pay-panel .pay-off .pay-select .pay-type.disabled[data-v-d7636ef2] {
    cursor: not-allowed;
    opacity: .5
}

.pay-panel .pay-off .pay-select .pay-type.wx[data-v-d7636ef2] {
    background-position: 0px 0px
}

.pay-panel .pay-off .pay-select .pay-type.wx.active[data-v-d7636ef2] {
    background-position: -185px 0px
}

.pay-panel .pay-off .pay-select .pay-type.ali[data-v-d7636ef2] {
    background-position: 0px -60px
}

.pay-panel .pay-off .pay-select .pay-type.ali.active[data-v-d7636ef2] {
    background-position: -185px -60px
}

.pay-panel .pay-off .pay-select .pay-type.pub[data-v-d7636ef2] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pay_btn_imgs3-23b81d91.png);
    background-size: 370px 180px;
    background-position: 0px -120px
}

.pay-panel .pay-off .pay-select .pay-type.pub.active[data-v-d7636ef2] {
    background-position: -185px -120px
}

.pay-panel .pay-off .pay-select .pay-desc[data-v-d7636ef2] {
    margin-top: 25px;
    color: #999;
    line-height: 1.3;
    margin-bottom: 10px
}

.pay-panel .pay-off .pay-qrcode[data-v-d7636ef2] {
    float: left;
    width: 475px;
    background: #f3f9fe
}

.pay-panel .pay-off .pay-qrcode .pay-box[data-v-d7636ef2] {
    width: 323px;
    height: 223px;
    margin-left: 120px;
    margin-top: 30px;
    margin-bottom: 30px;
    background-size: 323px 223px;
    background-repeat: no-repeat;
    position: relative;
    text-align: left;
    padding-top: 10px;
    padding-left: 10px
}

.pay-panel .pay-off .pay-qrcode .pay-box.wx[data-v-d7636ef2] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_payqrcodek2-60d77466.png)
}

.pay-panel .pay-off .pay-qrcode .pay-box.wx .wx_pay_img[data-v-d7636ef2] {
    position: relative;
    top: 12px;
    left: 10px;
    width: 160px;
    height: 160px
}

.pay-panel .pay-off .pay-qrcode .pay-box.ali[data-v-d7636ef2] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_payqrcodek3-81425c0c.png)
}

.pay-panel .pay-off .pay-qrcode .pay-box-pub[data-v-d7636ef2] {
    padding: 10px 15px 10px 15px
}

.pay-panel .pay-off .pay-qrcode.s3[data-v-d7636ef2] {
    height: 322px
}

.pay-panel .pay-off .pay-qrcode.s3 .pay-box[data-v-d7636ef2] {
    margin-top: 50px
}

.pay-panel.vip .color-hl[data-v-d7636ef2] {
    color: #F9552A
}

.pay-panel.vip .btn-open-pay[data-v-d7636ef2] {
    background: #F9552A
}

.pay-panel.vip .goods-item.active[data-v-d7636ef2] {
    border-color: #F9552A !important
}

.pay-panel.svip .color-hl[data-v-d7636ef2] {
    color: #d2a874
}

.pay-panel.svip .btn-open-pay[data-v-d7636ef2] {
    background: #d2a874
}

.pay-panel.svip .goods-item.active[data-v-d7636ef2] {
    border-color: #d2a874 !important
}

.pay-panel.svip.no-introimg[data-v-d7636ef2] {
    padding-bottom: 0;
    min-height: 340px
}

.pay-panel.qiye .color-hl[data-v-d7636ef2] {
    color: #128bed
}

.pay-panel.qiye .btn-open-pay[data-v-d7636ef2] {
    background: #128bed
}

.pay-panel.qiye .goods-item.active[data-v-d7636ef2] {
    border-color: #128bed !important
}

.pay-panel[data-v-280b4f07] {
    color: #333;
    min-height: 420px;
    font-size: 14px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_modal_bg2@2x-d55f337d.png) center top;
    background-size: contain;
    background-repeat: no-repeat;
    padding-bottom: 50px
}

.pay-panel .pay-top[data-v-280b4f07] {
    padding-top: 5px;
    font-weight: normal;
    text-align: center
}

.pay-panel .pay-top .title[data-v-280b4f07] {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #fff
}

.pay-panel .pay-top .sub-title[data-v-280b4f07] {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff
}

.pay-panel .pay-top .rights[data-v-280b4f07] {
    font-size: 14px;
    color: #f9ad14;
    margin-left: 10px
}

.pay-panel .pay-top .type-tab[data-v-280b4f07] {
    text-align: center
}

.pay-panel .pay-top .type-tab .tab-item[data-v-280b4f07] {
    font-size: 16px;
    display: inline-block;
    line-height: 40px;
    margin-left: 15px;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.6)
}

.pay-panel .pay-top .type-tab .tab-item.active[data-v-280b4f07] {
    color: #fff;
    border-bottom: solid 2px #fff
}

.pay-panel .pay-container[data-v-280b4f07] {
    margin-top: 15px;
    padding: 0 50px
}

.pay-panel .pay-container .pay-wrap[data-v-280b4f07] {
    background: #fff;
    border: solid 1px #eee;
    border-radius: 6px;
    padding: 20px 75px 10px;
    margin-bottom: 25px
}

.pay-panel .pay-container .pay-wrap .goods-list[data-v-280b4f07] {
    height: 70px;
    margin-bottom: 20px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item[data-v-280b4f07] {
    display: inline-block;
    text-align: center;
    width: 148px;
    height: 70px;
    border: solid 2px #cdcdcd;
    border-radius: 2px;
    cursor: pointer;
    position: relative
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item[data-v-280b4f07]:not(:last-child) {
    margin-right: 40px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .price[data-v-280b4f07] {
    margin-top: 10px;
    color: #666
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .price .big[data-v-280b4f07] {
    font-size: 18px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .desc[data-v-280b4f07] {
    font-size: 12px;
    color: #666;
    margin-top: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .desc .old[data-v-280b4f07] {
    text-decoration: line-through;
    margin-right: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .actvity-desc[data-v-280b4f07] {
    font-size: 13px;
    color: #999;
    margin-top: 2px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .actvity-desc .old[data-v-280b4f07] {
    text-decoration: line-through;
    margin-right: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .ic-recomend[data-v-280b4f07] {
    position: absolute;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/ic_recomend-4a403486.png);
    background-size: 50px 18px;
    width: 50px;
    height: 18px;
    top: -10px;
    left: -2px
}

.pay-panel .pay-container .pay-wrap .pay-btn[data-v-280b4f07] {
    text-align: center
}

.pay-panel .pay-container .pay-wrap .pay-btn .btn-open-pay[data-v-280b4f07] {
    display: block;
    width: 242px;
    border-radius: 2px;
    font-size: 18px;
    color: #fff;
    line-height: 44px;
    margin: auto
}

.pay-panel .pay-container .pay-wrap .pay-btn .desc[data-v-280b4f07] {
    color: #999999;
    margin-top: 13px;
    margin-bottom: 5px
}

.pay-panel .pay-container .pay-wrap .pay-info .color-hl[data-v-280b4f07] {
    color: #F9552A
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-280b4f07] {
    height: 28px;
    margin-bottom: 5px;
    font-size: 16px
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-280b4f07]:before {
    display: table;
    content: ' '
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-280b4f07]:after {
    clear: both;
    display: table;
    content: ' '
}

.pay-panel .pay-container .pay-wrap .pay-info .rline .c[data-v-280b4f07] {
    float: left
}

.pay-panel .pay-container .pay-wrap .pay-info .rline .v[data-v-280b4f07] {
    float: right
}

.pay-panel .pay-intro img[data-v-280b4f07] {
    width: 680px;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

.pay-panel .pay-off .pay-select[data-v-280b4f07] {
    float: left;
    width: 185px;
    margin-right: 18px
}

.pay-panel .pay-off .pay-select .pay-type[data-v-280b4f07] {
    width: 185px;
    height: 60px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pay_btn_imgs-977feac3.png);
    background-size: 370px 240px;
    cursor: pointer;
    text-indent: -9999px;
    margin-bottom: 10px
}

.pay-panel .pay-off .pay-select .pay-type.disabled[data-v-280b4f07] {
    cursor: not-allowed;
    opacity: .5
}

.pay-panel .pay-off .pay-select .pay-type.wx[data-v-280b4f07] {
    background-position: 0px 0px
}

.pay-panel .pay-off .pay-select .pay-type.wx.active[data-v-280b4f07] {
    background-position: -185px 0px
}

.pay-panel .pay-off .pay-select .pay-type.ali[data-v-280b4f07] {
    background-position: 0px -60px
}

.pay-panel .pay-off .pay-select .pay-type.ali.active[data-v-280b4f07] {
    background-position: -185px -60px
}

.pay-panel .pay-off .pay-select .pay-type.pub[data-v-280b4f07] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pay_btn_imgs3-23b81d91.png);
    background-size: 370px 180px;
    background-position: 0px -120px
}

.pay-panel .pay-off .pay-select .pay-type.pub.active[data-v-280b4f07] {
    background-position: -185px -120px
}

.pay-panel .pay-off .pay-select .pay-desc[data-v-280b4f07] {
    margin-top: 25px;
    color: #999;
    line-height: 1.3;
    margin-bottom: 10px
}

.pay-panel .pay-off .pay-qrcode[data-v-280b4f07] {
    float: left;
    width: 475px;
    background: #f3f9fe
}

.pay-panel .pay-off .pay-qrcode .pay-box[data-v-280b4f07] {
    width: 323px;
    height: 223px;
    margin-left: 120px;
    margin-top: 30px;
    margin-bottom: 30px;
    background-size: 323px 223px;
    background-repeat: no-repeat;
    position: relative;
    text-align: left;
    padding-top: 10px;
    padding-left: 10px
}

.pay-panel .pay-off .pay-qrcode .pay-box.wx[data-v-280b4f07] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_payqrcodek2-60d77466.png)
}

.pay-panel .pay-off .pay-qrcode .pay-box.wx .wx_pay_img[data-v-280b4f07] {
    position: relative;
    top: 12px;
    left: 10px;
    width: 160px;
    height: 160px
}

.pay-panel .pay-off .pay-qrcode .pay-box.ali[data-v-280b4f07] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_payqrcodek3-81425c0c.png)
}

.pay-panel .pay-off .pay-qrcode .pay-box-pub[data-v-280b4f07] {
    padding: 10px 15px 10px 15px
}

.pay-panel .pay-off .pay-qrcode.s3[data-v-280b4f07] {
    height: 322px
}

.pay-panel .pay-off .pay-qrcode.s3 .pay-box[data-v-280b4f07] {
    margin-top: 50px
}

.pay-panel.vip .color-hl[data-v-280b4f07] {
    color: #F9552A
}

.pay-panel.vip .btn-open-pay[data-v-280b4f07] {
    background: #F9552A
}

.pay-panel.vip .goods-item.active[data-v-280b4f07] {
    border-color: #F9552A !important
}

.pay-panel.svip .color-hl[data-v-280b4f07] {
    color: #d2a874
}

.pay-panel.svip .btn-open-pay[data-v-280b4f07] {
    background: #d2a874
}

.pay-panel.svip .goods-item.active[data-v-280b4f07] {
    border-color: #d2a874 !important
}

.pay-panel.svip.no-introimg[data-v-280b4f07] {
    padding-bottom: 0;
    min-height: 340px
}

.pay-panel.qiye .color-hl[data-v-280b4f07] {
    color: #128bed
}

.pay-panel.qiye .btn-open-pay[data-v-280b4f07] {
    background: #128bed
}

.pay-panel.qiye .goods-item.active[data-v-280b4f07] {
    border-color: #128bed !important
}

.univip .type-stab[data-v-280b4f07] {
    text-align: center
}

.univip .type-stab .tab-item[data-v-280b4f07] {
    font-size: 16px;
    display: inline-block;
    line-height: 40px;
    margin-left: 15px;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.6)
}

.univip .type-stab .tab-item.active[data-v-280b4f07] {
    color: #fff;
    border-bottom: solid 2px #fff
}

.pay-panel[data-v-41b57454] {
    color: #333;
    min-height: 420px;
    font-size: 14px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_modal_bg2@2x-d55f337d.png) center top;
    background-size: contain;
    background-repeat: no-repeat;
    padding-bottom: 50px
}

.pay-panel .pay-top[data-v-41b57454] {
    padding-top: 5px;
    font-weight: normal;
    text-align: center
}

.pay-panel .pay-top .title[data-v-41b57454] {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #fff
}

.pay-panel .pay-top .sub-title[data-v-41b57454] {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff
}

.pay-panel .pay-top .rights[data-v-41b57454] {
    font-size: 14px;
    color: #f9ad14;
    margin-left: 10px
}

.pay-panel .pay-top .type-tab[data-v-41b57454] {
    text-align: center
}

.pay-panel .pay-top .type-tab .tab-item[data-v-41b57454] {
    font-size: 16px;
    display: inline-block;
    line-height: 40px;
    margin-left: 15px;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.6)
}

.pay-panel .pay-top .type-tab .tab-item.active[data-v-41b57454] {
    color: #fff;
    border-bottom: solid 2px #fff
}

.pay-panel .pay-container[data-v-41b57454] {
    margin-top: 15px;
    padding: 0 50px
}

.pay-panel .pay-container .pay-wrap[data-v-41b57454] {
    background: #fff;
    border: solid 1px #eee;
    border-radius: 6px;
    padding: 20px 75px 10px;
    margin-bottom: 25px
}

.pay-panel .pay-container .pay-wrap .goods-list[data-v-41b57454] {
    height: 70px;
    margin-bottom: 20px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item[data-v-41b57454] {
    display: inline-block;
    text-align: center;
    width: 148px;
    height: 70px;
    border: solid 2px #cdcdcd;
    border-radius: 2px;
    cursor: pointer;
    position: relative
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item[data-v-41b57454]:not(:last-child) {
    margin-right: 40px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .price[data-v-41b57454] {
    margin-top: 10px;
    color: #666
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .price .big[data-v-41b57454] {
    font-size: 18px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .desc[data-v-41b57454] {
    font-size: 12px;
    color: #666;
    margin-top: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .desc .old[data-v-41b57454] {
    text-decoration: line-through;
    margin-right: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .actvity-desc[data-v-41b57454] {
    font-size: 13px;
    color: #999;
    margin-top: 2px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .actvity-desc .old[data-v-41b57454] {
    text-decoration: line-through;
    margin-right: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .ic-recomend[data-v-41b57454] {
    position: absolute;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/ic_recomend-4a403486.png);
    background-size: 50px 18px;
    width: 50px;
    height: 18px;
    top: -10px;
    left: -2px
}

.pay-panel .pay-container .pay-wrap .pay-btn[data-v-41b57454] {
    text-align: center
}

.pay-panel .pay-container .pay-wrap .pay-btn .btn-open-pay[data-v-41b57454] {
    display: block;
    width: 242px;
    border-radius: 2px;
    font-size: 18px;
    color: #fff;
    line-height: 44px;
    margin: auto
}

.pay-panel .pay-container .pay-wrap .pay-btn .desc[data-v-41b57454] {
    color: #999999;
    margin-top: 13px;
    margin-bottom: 5px
}

.pay-panel .pay-container .pay-wrap .pay-info .color-hl[data-v-41b57454] {
    color: #F9552A
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-41b57454] {
    height: 28px;
    margin-bottom: 5px;
    font-size: 16px
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-41b57454]:before {
    display: table;
    content: ' '
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-41b57454]:after {
    clear: both;
    display: table;
    content: ' '
}

.pay-panel .pay-container .pay-wrap .pay-info .rline .c[data-v-41b57454] {
    float: left
}

.pay-panel .pay-container .pay-wrap .pay-info .rline .v[data-v-41b57454] {
    float: right
}

.pay-panel .pay-intro img[data-v-41b57454] {
    width: 680px;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

.pay-panel .pay-off .pay-select[data-v-41b57454] {
    float: left;
    width: 185px;
    margin-right: 18px
}

.pay-panel .pay-off .pay-select .pay-type[data-v-41b57454] {
    width: 185px;
    height: 60px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pay_btn_imgs-977feac3.png);
    background-size: 370px 240px;
    cursor: pointer;
    text-indent: -9999px;
    margin-bottom: 10px
}

.pay-panel .pay-off .pay-select .pay-type.disabled[data-v-41b57454] {
    cursor: not-allowed;
    opacity: .5
}

.pay-panel .pay-off .pay-select .pay-type.wx[data-v-41b57454] {
    background-position: 0px 0px
}

.pay-panel .pay-off .pay-select .pay-type.wx.active[data-v-41b57454] {
    background-position: -185px 0px
}

.pay-panel .pay-off .pay-select .pay-type.ali[data-v-41b57454] {
    background-position: 0px -60px
}

.pay-panel .pay-off .pay-select .pay-type.ali.active[data-v-41b57454] {
    background-position: -185px -60px
}

.pay-panel .pay-off .pay-select .pay-type.pub[data-v-41b57454] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pay_btn_imgs3-23b81d91.png);
    background-size: 370px 180px;
    background-position: 0px -120px
}

.pay-panel .pay-off .pay-select .pay-type.pub.active[data-v-41b57454] {
    background-position: -185px -120px
}

.pay-panel .pay-off .pay-select .pay-desc[data-v-41b57454] {
    margin-top: 25px;
    color: #999;
    line-height: 1.3;
    margin-bottom: 10px
}

.pay-panel .pay-off .pay-qrcode[data-v-41b57454] {
    float: left;
    width: 475px;
    background: #f3f9fe
}

.pay-panel .pay-off .pay-qrcode .pay-box[data-v-41b57454] {
    width: 323px;
    height: 223px;
    margin-left: 120px;
    margin-top: 30px;
    margin-bottom: 30px;
    background-size: 323px 223px;
    background-repeat: no-repeat;
    position: relative;
    text-align: left;
    padding-top: 10px;
    padding-left: 10px
}

.pay-panel .pay-off .pay-qrcode .pay-box.wx[data-v-41b57454] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_payqrcodek2-60d77466.png)
}

.pay-panel .pay-off .pay-qrcode .pay-box.wx .wx_pay_img[data-v-41b57454] {
    position: relative;
    top: 12px;
    left: 10px;
    width: 160px;
    height: 160px
}

.pay-panel .pay-off .pay-qrcode .pay-box.ali[data-v-41b57454] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_payqrcodek3-81425c0c.png)
}

.pay-panel .pay-off .pay-qrcode .pay-box-pub[data-v-41b57454] {
    padding: 10px 15px 10px 15px
}

.pay-panel .pay-off .pay-qrcode.s3[data-v-41b57454] {
    height: 322px
}

.pay-panel .pay-off .pay-qrcode.s3 .pay-box[data-v-41b57454] {
    margin-top: 50px
}

.pay-panel.vip .color-hl[data-v-41b57454] {
    color: #F9552A
}

.pay-panel.vip .btn-open-pay[data-v-41b57454] {
    background: #F9552A
}

.pay-panel.vip .goods-item.active[data-v-41b57454] {
    border-color: #F9552A !important
}

.pay-panel.svip .color-hl[data-v-41b57454] {
    color: #d2a874
}

.pay-panel.svip .btn-open-pay[data-v-41b57454] {
    background: #d2a874
}

.pay-panel.svip .goods-item.active[data-v-41b57454] {
    border-color: #d2a874 !important
}

.pay-panel.svip.no-introimg[data-v-41b57454] {
    padding-bottom: 0;
    min-height: 340px
}

.pay-panel.qiye .color-hl[data-v-41b57454] {
    color: #128bed
}

.pay-panel.qiye .btn-open-pay[data-v-41b57454] {
    background: #128bed
}

.pay-panel.qiye .goods-item.active[data-v-41b57454] {
    border-color: #128bed !important
}

.pay-panel.datavip .pay-wrap[data-v-41b57454] {
    padding-left: 48px;
    padding-right: 48px
}

.datavip-goods-list[data-v-41b57454] {
    margin-bottom: 20px
}

.datavip-goods-item[data-v-41b57454] {
    position: relative;
    text-align: left;
    padding: 6px 15px;
    width: 285px;
    height: 80px;
    float: left;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/datavip_k-2f1dd002.png);
    background-size: 285px 80px;
    padding-top: 10px
}

.datavip-goods-item.active[data-v-41b57454] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/datavip_k_h-8eb9a78b.png)
}

.datavip-goods-item.rec[data-v-41b57454] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/datavip_k1-37910f67.png);
    background-size: 580px 106px;
    width: 580px;
    height: 106px;
    padding-top: 33px
}

.datavip-goods-item.rec.active[data-v-41b57454] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/datavip_k1_h-68d0326a.png)
}

.datavip-goods-item.rec.twday[data-v-41b57454] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/datavip_k2-c456c080.png);
    background-size: 580px 134px;
    height: 134px
}

.datavip-goods-item.rec.twday.active[data-v-41b57454] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/datavip_k2_h-27496726.png)
}

.datavip-goods-item .twday-check[data-v-41b57454] {
    margin-top: 7px
}

.datavip-goods-item .twday-check label[data-v-41b57454] {
    font-weight: normal;
    margin-bottom: 3px
}

.datavip-goods-item .twday-check label input[data-v-41b57454] {
    margin-right: 4px;
    position: relative;
    top: 1px
}

.datavip-goods-item .title[data-v-41b57454] {
    font-size: 18px;
    font-weight: 600;
    color: #128bed
}

.datavip-goods-item .desc[data-v-41b57454] {
    color: #999;
    font-size: 14px;
    margin-top: 5px
}

.datavip-goods-item .price[data-v-41b57454] {
    font-size: 14px;
    position: absolute;
    top: 10px;
    right: 15px
}

.datavip-goods-item .price .big[data-v-41b57454] {
    font-size: 18px;
    font-family: PingFangSC-Medium, PingFang SC;
    color: #F9552A
}

.datavip-goods-item.rec .price[data-v-41b57454] {
    top: 30px
}

.datavip-goods-item .text-gray[data-v-41b57454] {
    color: #999 !important
}

.export-btn[data-v-41b57454] {
    text-align: center
}

.export-btn .btn[data-v-41b57454] {
    width: 240px;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 20px
}

.ta-tip[data-v-41b57454] {
    background: #F6F6F6;
    color: #999;
    font-size: 12px;
    text-align: center;
    position: absolute;
    line-height: 20px;
    bottom: 0px;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px
}

.tip-text[data-v-41b57454] {
    font-size: 12px;
    width: 300px
}

.pay-panel .pay-off .pay-qrcode.s3[data-v-41b57454] {
    height: 310px;
    margin-bottom: 20px
}

.pay-panel[data-v-d35d7a76] {
    color: #333;
    min-height: 420px;
    font-size: 14px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_modal_bg2@2x-d55f337d.png) center top;
    background-size: contain;
    background-repeat: no-repeat;
    padding-bottom: 50px
}

.pay-panel .pay-top[data-v-d35d7a76] {
    padding-top: 5px;
    font-weight: normal;
    text-align: center
}

.pay-panel .pay-top .title[data-v-d35d7a76] {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #fff
}

.pay-panel .pay-top .sub-title[data-v-d35d7a76] {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff
}

.pay-panel .pay-top .rights[data-v-d35d7a76] {
    font-size: 14px;
    color: #f9ad14;
    margin-left: 10px
}

.pay-panel .pay-top .type-tab[data-v-d35d7a76] {
    text-align: center
}

.pay-panel .pay-top .type-tab .tab-item[data-v-d35d7a76] {
    font-size: 16px;
    display: inline-block;
    line-height: 40px;
    margin-left: 15px;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.6)
}

.pay-panel .pay-top .type-tab .tab-item.active[data-v-d35d7a76] {
    color: #fff;
    border-bottom: solid 2px #fff
}

.pay-panel .pay-container[data-v-d35d7a76] {
    margin-top: 15px;
    padding: 0 50px
}

.pay-panel .pay-container .pay-wrap[data-v-d35d7a76] {
    background: #fff;
    border: solid 1px #eee;
    border-radius: 6px;
    padding: 20px 75px 10px;
    margin-bottom: 25px
}

.pay-panel .pay-container .pay-wrap .goods-list[data-v-d35d7a76] {
    height: 70px;
    margin-bottom: 20px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item[data-v-d35d7a76] {
    display: inline-block;
    text-align: center;
    width: 148px;
    height: 70px;
    border: solid 2px #cdcdcd;
    border-radius: 2px;
    cursor: pointer;
    position: relative
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item[data-v-d35d7a76]:not(:last-child) {
    margin-right: 40px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .price[data-v-d35d7a76] {
    margin-top: 10px;
    color: #666
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .price .big[data-v-d35d7a76] {
    font-size: 18px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .desc[data-v-d35d7a76] {
    font-size: 12px;
    color: #666;
    margin-top: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .desc .old[data-v-d35d7a76] {
    text-decoration: line-through;
    margin-right: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .actvity-desc[data-v-d35d7a76] {
    font-size: 13px;
    color: #999;
    margin-top: 2px
}

.pay-panel .pay-container .pay-wrap .goods-list .goods-item .actvity-desc .old[data-v-d35d7a76] {
    text-decoration: line-through;
    margin-right: 3px
}

.pay-panel .pay-container .pay-wrap .goods-list .ic-recomend[data-v-d35d7a76] {
    position: absolute;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/ic_recomend-4a403486.png);
    background-size: 50px 18px;
    width: 50px;
    height: 18px;
    top: -10px;
    left: -2px
}

.pay-panel .pay-container .pay-wrap .pay-btn[data-v-d35d7a76] {
    text-align: center
}

.pay-panel .pay-container .pay-wrap .pay-btn .btn-open-pay[data-v-d35d7a76] {
    display: block;
    width: 242px;
    border-radius: 2px;
    font-size: 18px;
    color: #fff;
    line-height: 44px;
    margin: auto
}

.pay-panel .pay-container .pay-wrap .pay-btn .desc[data-v-d35d7a76] {
    color: #999999;
    margin-top: 13px;
    margin-bottom: 5px
}

.pay-panel .pay-container .pay-wrap .pay-info .color-hl[data-v-d35d7a76] {
    color: #F9552A
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-d35d7a76] {
    height: 28px;
    margin-bottom: 5px;
    font-size: 16px
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-d35d7a76]:before {
    display: table;
    content: ' '
}

.pay-panel .pay-container .pay-wrap .pay-info .rline[data-v-d35d7a76]:after {
    clear: both;
    display: table;
    content: ' '
}

.pay-panel .pay-container .pay-wrap .pay-info .rline .c[data-v-d35d7a76] {
    float: left
}

.pay-panel .pay-container .pay-wrap .pay-info .rline .v[data-v-d35d7a76] {
    float: right
}

.pay-panel .pay-intro img[data-v-d35d7a76] {
    width: 680px;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

.pay-panel .pay-off .pay-select[data-v-d35d7a76] {
    float: left;
    width: 185px;
    margin-right: 18px
}

.pay-panel .pay-off .pay-select .pay-type[data-v-d35d7a76] {
    width: 185px;
    height: 60px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pay_btn_imgs-977feac3.png);
    background-size: 370px 240px;
    cursor: pointer;
    text-indent: -9999px;
    margin-bottom: 10px
}

.pay-panel .pay-off .pay-select .pay-type.disabled[data-v-d35d7a76] {
    cursor: not-allowed;
    opacity: .5
}

.pay-panel .pay-off .pay-select .pay-type.wx[data-v-d35d7a76] {
    background-position: 0px 0px
}

.pay-panel .pay-off .pay-select .pay-type.wx.active[data-v-d35d7a76] {
    background-position: -185px 0px
}

.pay-panel .pay-off .pay-select .pay-type.ali[data-v-d35d7a76] {
    background-position: 0px -60px
}

.pay-panel .pay-off .pay-select .pay-type.ali.active[data-v-d35d7a76] {
    background-position: -185px -60px
}

.pay-panel .pay-off .pay-select .pay-type.pub[data-v-d35d7a76] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/pay_btn_imgs3-23b81d91.png);
    background-size: 370px 180px;
    background-position: 0px -120px
}

.pay-panel .pay-off .pay-select .pay-type.pub.active[data-v-d35d7a76] {
    background-position: -185px -120px
}

.pay-panel .pay-off .pay-select .pay-desc[data-v-d35d7a76] {
    margin-top: 25px;
    color: #999;
    line-height: 1.3;
    margin-bottom: 10px
}

.pay-panel .pay-off .pay-qrcode[data-v-d35d7a76] {
    float: left;
    width: 475px;
    background: #f3f9fe
}

.pay-panel .pay-off .pay-qrcode .pay-box[data-v-d35d7a76] {
    width: 323px;
    height: 223px;
    margin-left: 120px;
    margin-top: 30px;
    margin-bottom: 30px;
    background-size: 323px 223px;
    background-repeat: no-repeat;
    position: relative;
    text-align: left;
    padding-top: 10px;
    padding-left: 10px
}

.pay-panel .pay-off .pay-qrcode .pay-box.wx[data-v-d35d7a76] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_payqrcodek2-60d77466.png)
}

.pay-panel .pay-off .pay-qrcode .pay-box.wx .wx_pay_img[data-v-d35d7a76] {
    position: relative;
    top: 12px;
    left: 10px;
    width: 160px;
    height: 160px
}

.pay-panel .pay-off .pay-qrcode .pay-box.ali[data-v-d35d7a76] {
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/vip_payqrcodek3-81425c0c.png)
}

.pay-panel .pay-off .pay-qrcode .pay-box-pub[data-v-d35d7a76] {
    padding: 10px 15px 10px 15px
}

.pay-panel .pay-off .pay-qrcode.s3[data-v-d35d7a76] {
    height: 322px
}

.pay-panel .pay-off .pay-qrcode.s3 .pay-box[data-v-d35d7a76] {
    margin-top: 50px
}

.pay-panel.vip .color-hl[data-v-d35d7a76] {
    color: #F9552A
}

.pay-panel.vip .btn-open-pay[data-v-d35d7a76] {
    background: #F9552A
}

.pay-panel.vip .goods-item.active[data-v-d35d7a76] {
    border-color: #F9552A !important
}

.pay-panel.svip .color-hl[data-v-d35d7a76] {
    color: #d2a874
}

.pay-panel.svip .btn-open-pay[data-v-d35d7a76] {
    background: #d2a874
}

.pay-panel.svip .goods-item.active[data-v-d35d7a76] {
    border-color: #d2a874 !important
}

.pay-panel.svip.no-introimg[data-v-d35d7a76] {
    padding-bottom: 0;
    min-height: 340px
}

.pay-panel.qiye .color-hl[data-v-d35d7a76] {
    color: #128bed
}

.pay-panel.qiye .btn-open-pay[data-v-d35d7a76] {
    background: #128bed
}

.pay-panel.qiye .goods-item.active[data-v-d35d7a76] {
    border-color: #128bed !important
}

.pay-panel.balance .pay-wrap[data-v-d35d7a76] {
    padding: 25px 0px 25px 0px
}

.pay-panel.balance .pay-choose[data-v-d35d7a76] {
    width: 580px;
    margin: auto
}

.pay-panel.balance .pay-choose .item[data-v-d35d7a76] {
    display: inline-block;
    width: 125px;
    padding: 5px;
    text-align: center;
    border: solid 1px #D6D6D6;
    margin: 10px;
    cursor: pointer;
    line-height: 28px
}

.pay-panel.balance .pay-choose .item.active[data-v-d35d7a76] {
    border-color: #128bed
}

.pay-panel.balance .pay-choose .iteminput[data-v-d35d7a76] {
    position: relative;
    margin-left: 7px
}

.pay-panel.balance .pay-choose .iteminput input[data-v-d35d7a76] {
    width: 270px;
    line-height: 40px;
    height: 40px;
    outline: none;
    border: solid 1px #D6D6D6;
    padding-left: 15px;
    padding-right: 50px
}

.pay-panel.balance .pay-choose .iteminput[data-v-d35d7a76]:after {
    content: "元";
    right: 15px;
    position: absolute;
    color: #999;
    top: -3px
}

.pay-panel.balance .pay-choose .iteminput.active input[data-v-d35d7a76] {
    border-color: #128bed
}

.app-hfilter[data-v-b6aea2dc] {
    line-height: 32px
}

.app-hfilter .item[data-v-b6aea2dc] {
    color: #999
}

.app-hfilter .item.active[data-v-b6aea2dc] {
    color: #128bed
}

.app-hfilter .item[data-v-b6aea2dc]:not(:first-child):before {
    content: " ";
    position: relative;
    top: -0.06em;
    display: inline-block;
    width: 1px;
    height: 0.9em;
    margin: 0 11px;
    vertical-align: middle;
    color: rgba(0, 0, 0, 0.65);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5;
    list-style: none;
    -webkit-font-feature-settings: 'tnum';
    font-feature-settings: 'tnum';
    background: #e8e8e8
}

.app-pfilter .pills-header[data-v-0da54f60] {
    color: #333
}

.app-pfilter .pills-item[data-v-0da54f60] {
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 4px;
    color: #666
}

.app-pfilter .pills-item.active[data-v-0da54f60], .app-pfilter .pills-item[data-v-0da54f60]:not([data-value=x]):hover {
    background: #128bed;
    color: #fff;
    border-radius: 4px
}

.app-cascader[data-v-c93c27fa] {
    display: inline-block;
    position: relative
}

.app-cascader .no-top-padding[data-v-c93c27fa] {
    padding-top: 0px
}

.app-cascader .cascader-text[data-v-c93c27fa] {
    color: #333
}

.app-cascader .cascader-text.selected-text[data-v-c93c27fa] {
    color: #128bed
}

.app-cascader .clearfix[data-v-c93c27fa] {
    height: 270px;
    margin-right: -1px;
    overflow: hidden
}

.app-cascader .clearfix > .pull-left[data-v-c93c27fa] {
    width: 200px;
    position: relative;
    border-top-left-radius: 4px;
    overflow: hidden
}

.app-cascader .clearfix > .pull-left .search-area[data-v-c93c27fa] {
    width: 200px;
    height: 31px;
    position: relative;
    z-index: 100;
    background-color: #fff;
    border: 1px solid #d6d6d6;
    border-left: none;
    border-top: none
}

.app-cascader .clearfix > .pull-left .search-area .form-control[data-v-c93c27fa] {
    border: none;
    position: absolute;
    height: 100%;
    width: 100%;
    padding-right: 26px
}

.app-cascader .clearfix > .pull-left .search-area .select-icon[data-v-c93c27fa] {
    position: absolute;
    cursor: pointer;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #c2c2c2;
    font-size: 14px
}

.app-cascader .clearfix > .pull-left:not(:last-child) .drop-col[data-v-c93c27fa] {
    border-right: solid 1px #eee
}

.app-cascader ul.drop-col[data-v-c93c27fa] {
    margin-bottom: 0px;
    padding-left: 0px;
    position: relative;
    overflow: hidden;
    height: 285px
}

.app-cascader ul.drop-col li > a[data-v-c93c27fa] {
    display: block;
    padding-left: 15px;
    padding-right: 5px;
    padding-top: 7px;
    padding-bottom: 5px;
    color: #333;
    line-height: 18px
}

.app-cascader ul.drop-col li > a[data-v-c93c27fa]:hover, .app-cascader ul.drop-col li > a.hover[data-v-c93c27fa] {
    background-color: #f3f9fd;
    color: #128bed
}

.app-cascader ul.drop-col li > a .text[data-v-c93c27fa] {
    width: 160px;
    display: inline-block;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-right: 5px;
    margin-bottom: 0px;
    white-space: nowrap
}

.app-cascader ul.drop-col li > a label.text[data-v-c93c27fa] {
    font-weight: normal
}

.app-cascader ul.drop-col li > a label.text > input[data-v-c93c27fa] {
    margin-right: 5px;
    font-size: 24px;
    margin-top: 0px;
    position: relative;
    display: inline-block;
    margin-top: -2px;
    vertical-align: middle
}

.app-cascader ul.drop-col li > a i[data-v-c93c27fa] {
    position: relative;
    top: -4px
}

.app-cascader.drop-hover .dropdown-menu[data-v-c93c27fa] {
    display: block;
    visibility: hidden;
    -webkit-transition: all 0s linear 0.2s;
    -o-transition: all 0s linear 0.2s;
    transition: all 0s linear 0.2s
}

.app-cascader.drop-hover:hover .dropdown-menu[data-v-c93c27fa] {
    visibility: visible
}

.app-dselect[data-v-03cb9676] {
    display: inline-block;
    position: relative
}

.app-dselect .dropdown-menu[data-v-03cb9676] {
    width: 140px
}

.app-dselect .dselect-text[data-v-03cb9676] {
    color: #333
}

.app-dselect .dselect-text.active[data-v-03cb9676] {
    color: #128bed
}

.app-dselect ul.drop-col[data-v-03cb9676] {
    margin-bottom: 0px;
    padding-left: 0px;
    position: relative;
    overflow: auto;
    max-height: 205px
}

.app-dselect ul.drop-col > li > a[data-v-03cb9676], .app-dselect .drop-x > a[data-v-03cb9676] {
    display: block;
    padding-left: 15px;
    padding-right: 5px;
    padding-top: 7px;
    padding-bottom: 5px;
    color: #333;
    line-height: 18px
}

.app-dselect ul.drop-col > li > a[data-v-03cb9676]:hover, .app-dselect ul.drop-col > li > a.hover[data-v-03cb9676], .app-dselect .drop-x > a[data-v-03cb9676]:hover, .app-dselect .drop-x > a.hover[data-v-03cb9676] {
    background-color: #F3F9FD;
    color: #128bed
}

.app-dselect ul.drop-col > li > a .text[data-v-03cb9676], .app-dselect .drop-x > a .text[data-v-03cb9676] {
    display: inline-block;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-right: 5px;
    margin-bottom: 0px;
    white-space: nowrap
}

.app-dselect ul.drop-col > li > a label.text[data-v-03cb9676], .app-dselect .drop-x > a label.text[data-v-03cb9676] {
    font-weight: normal
}

.app-dselect ul.drop-col > li > a label.text > input[data-v-03cb9676], .app-dselect .drop-x > a label.text > input[data-v-03cb9676] {
    float: left;
    margin-right: 6px;
    margin-top: 3px
}

.app-dselect ul.drop-col > li > a i[data-v-03cb9676], .app-dselect .drop-x > a i[data-v-03cb9676] {
    float: right;
    margin-top: 2px
}

.app-dselect ul.drop-col > li > a .drop-right[data-v-03cb9676], .app-dselect .drop-x > a .drop-right[data-v-03cb9676] {
    position: absolute;
    left: 158px;
    z-index: 1000;
    bottom: -1px
}

.app-dselect :not(.drop-x) .text[data-v-03cb9676] {
    width: 100%
}

.app-dselect.drop-hover .dropdown-menu[data-v-03cb9676] {
    display: block;
    visibility: hidden;
    -webkit-transition: all 0s linear 0.3s;
    -o-transition: all 0s linear 0.3s;
    transition: all 0s linear 0.3s
}

.app-dselect.drop-hover:hover .dropdown-menu[data-v-03cb9676] {
    visibility: visible
}

.app-pselect[data-v-3e1c650e] {
    display: inline-block;
    position: relative
}

.app-pselect .pills-after[data-v-3e1c650e] {
    margin-bottom: -3px
}

.app-pselect .xspan[data-v-3e1c650e] {
    cursor: pointer;
    color: #333
}

.app-pinline[data-v-32b9073a] {
    display: inline-block;
    position: relative
}

.app-pinline.hfoot[data-v-32b9073a] {
    padding-right: 130px
}

.app-pinline.hfoot .pills-foot[data-v-32b9073a] {
    margin-right: -130px
}

.app-cascader-inline[data-v-8ad03c8e] {
    display: inline-block;
    position: relative
}

.app-cascader-inline.hfoot[data-v-8ad03c8e] {
    padding-right: 130px
}

.app-cascader-inline.hfoot .pills-foot[data-v-8ad03c8e] {
    margin-right: -130px
}

.app-cascader-inline[data-v-cc10b57e] {
    display: inline-block;
    position: relative
}

.app-cascader-inline.hfoot[data-v-cc10b57e] {
    padding-right: 130px
}

.app-cascader-inline.hfoot .pills-foot[data-v-cc10b57e] {
    margin-right: -130px
}

.phone-prefix-dropdown[data-v-67c14176] {
    width: 200px
}

.phone-prefix-dropdown ul[data-v-67c14176] {
    padding-left: 0px
}

.phone-prefix-dropdown .phone-prefix-index[data-v-67c14176] {
    border-bottom: 1px solid #eee;
    padding: 5px 10px;
    word-break: break-all
}

.phone-prefix-dropdown .phone-prefix-index li[data-v-67c14176] {
    display: inline;
    padding: 0px 5px
}

.phone-prefix-dropdown .phone-prefix-index li span[data-v-67c14176] {
    cursor: pointer
}

.phone-prefix-dropdown .phone-prefix-index li span.active[data-v-67c14176] {
    color: #128bed
}

.phone-prefix-dropdown .phone-prefix-list[data-v-67c14176] {
    max-height: 250px;
    overflow-y: auto
}

.phone-prefix-dropdown .phone-prefix-list li[data-v-67c14176] {
    padding: 2px 10px;
    cursor: pointer
}

.phone-prefix-dropdown .phone-prefix-list li.active[data-v-67c14176] {
    color: #128bed
}

.phone-prefix-dropdown .phone-prefix-list li[data-v-67c14176]:hover {
    background-color: #F5F9FF
}

.phone-status[data-v-bf51459c] {
    cursor: pointer;
    display: inline-block;
    width: 16px;
    position: relative
}

.phone-status-icon[data-v-bf51459c] {
    width: 22px;
    height: 22px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/phone_status_icon-435f5dd0.png);
    background-size: 88px 44px;
    position: absolute;
    left: -2px;
    top: -16px
}

.phone-status-icon.normal[data-v-bf51459c] {
    background-position-x: -22px
}

.phone-status-icon.danger[data-v-bf51459c] {
    background-position-x: -44px
}

.phone-status-icon.unknown[data-v-bf51459c] {
    background-position-x: -66px
}

.phoneview-action[data-v-92e3049c] {
    position: absolute;
    top: -8px;
    right: -13px
}

.phoneview-wrap[data-v-92e3049c] {
    background: #fff;
    width: 230px;
    height: 215px;
    padding: 0px 0px;
    padding-top: 5px;
    text-align: center;
    color: #333
}

.phoneview-wrap .cname[data-v-92e3049c] {
    white-space: nowrap;
    word-break: keep-all;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    padding: 0px 15px;
    font-size: 14px
}

.phoneview-wrap .qrcode-area[data-v-92e3049c] {
    margin-top: 10px
}

.phoneview-wrap .qrcode-area .qrcode[data-v-92e3049c] {
    width: 134px;
    height: 134px;
    padding: 5px;
    border: solid 1px #eee;
    display: inline-block
}

.phoneview-wrap .qrcode-area .phone-ic[data-v-92e3049c] {
    width: 66px;
    max-height: 130px;
    margin-left: 5px;
    margin-top: 2px;
    vertical-align: top
}

.phoneview-wrap .text[data-v-92e3049c] {
    font-size: 13px;
    margin-top: 10px
}

.app-number-range[data-v-608a2d27] {
    display: inline-block;
    position: relative
}

.app-number-range .range-wrap[data-v-608a2d27] {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    height: 136px;
    border-radius: 4px
}

.app-number-range .dropdown-menu[data-v-608a2d27], .app-number-range .range-wrap[data-v-608a2d27] {
    padding: 10px;
    color: #333;
    width: 170px;
    font-size: 13px
}

.app-number-range .dropdown-menu .clearfix[data-v-608a2d27], .app-number-range .range-wrap .clearfix[data-v-608a2d27] {
    position: relative
}

.app-number-range .dropdown-menu > div[data-v-608a2d27], .app-number-range .range-wrap > div[data-v-608a2d27] {
    margin-bottom: 10px
}

.app-number-range .dropdown-menu > div > .unit[data-v-608a2d27], .app-number-range .range-wrap > div > .unit[data-v-608a2d27] {
    position: absolute;
    color: #999;
    right: 7px;
    top: 8px
}

.app-number-range .dropdown-menu > div > span[data-v-608a2d27], .app-number-range .range-wrap > div > span[data-v-608a2d27] {
    margin-right: 8px;
    color: #666;
    position: relative;
    top: 2px
}

.app-number-range .dropdown-menu input[data-v-608a2d27], .app-number-range .range-wrap input[data-v-608a2d27] {
    width: 120px;
    display: inline-block;
    font-size: 12px;
    height: 32px;
    padding-left: 8px;
    padding-right: 25px
}

.app-number-range .dropdown-menu .commit[data-v-608a2d27], .app-number-range .range-wrap .commit[data-v-608a2d27] {
    font-size: 14px;
    color: #128bed;
    float: right;
    margin-bottom: 5px;
    margin-top: 5px
}

.app-number-range .dropdown-menu .commit[data-v-608a2d27]:hover, .app-number-range .range-wrap .commit[data-v-608a2d27]:hover {
    color: #128bed
}

.app-login-insert .insert-wrap[data-v-aad737ba] {
    position: relative;
    padding-top: 1px;
    width: 100%;
    height: 400px;
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/searchlogin_mengban-85fd2681.png) no-repeat;
    background-size: 1220px 400px;
    text-align: center;
    padding-top: 130px
}

.app-login-insert .insert-wrap .company-vip-title[data-v-aad737ba] {
    font-size: 16px;
    margin-bottom: 25px
}

.app-login-insert .insert-wrap .btn[data-v-aad737ba] {
    width: 82px;
    margin-left: 10px;
    margin-right: 10px
}

.gw-status[data-v-e1e92da6] {
    cursor: pointer !important;
    display: inline-block;
    width: 16px;
    position: relative
}

.gw-status-icon[data-v-e1e92da6] {
    width: 22px;
    height: 22px;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/gw_status_icon-7387d1a9.png);
    background-size: 44px 44px;
    position: absolute;
    left: -2px;
    margin-right: 2px;
    top: -16px
}

.gw-status-icon.normal[data-v-e1e92da6] {
    background-position-x: 0px
}

.gw-status-icon.unknown[data-v-e1e92da6] {
    background-position-x: -22px
}

.app-loading[data-v-7a46408c] {
    position: relative
}

.pills.hmore[data-v-c43d18f4] {
    height: 33px
}

.app-upload .file-input[data-v-7c1616f0] {
    position: absolute;
    height: 0px;
    width: 0px;
    visibility: hidden
}

.app-upload .upload-btn .btn[data-v-7c1616f0] {
    width: 78px;
    border: solid 1px #128bed;
    color: #128bed !important;
    font-size: 12px;
    padding: 6px
}

.app-upload .upload-btn .txt[data-v-7c1616f0] {
    color: #666;
    margin-left: 7px
}

.app-upload .img-preview[data-v-7c1616f0] {
    width: 100px;
    height: 100px;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    display: table-cell
}

.app-upload .img-preview img[data-v-7c1616f0] {
    width: 100px;
    height: auto;
    max-height: 100px;
    -o-object-fit: contain;
    object-fit: contain
}

.app-upload .img-preview .cover[data-v-7c1616f0] {
    height: 100px;
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 6px;
    color: #fff;
    background: #000;
    opacity: 0;
    font-size: 25px;
    padding: 15px;
    text-align: center;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    line-height: 1.4
}

.app-upload .img-preview:hover .cover[data-v-7c1616f0] {
    opacity: .5
}

.app-upload-multi[data-v-ce2587d4] {
    margin-bottom: 10px
}

.app-upload-multi .file-input[data-v-ce2587d4] {
    position: absolute;
    height: 0px;
    width: 0px;
    visibility: hidden
}

.app-upload-multi .upload-btn[data-v-ce2587d4] {
    display: inline-block;
    background-image: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/upload-a19f5469.png);
    background-size: 50px 50px;
    background-position: center 20px;
    background-repeat: no-repeat;
    border: dashed 2px #d6d6d6;
    width: 120px;
    height: 120px;
    text-align: center;
    padding-top: 70px;
    cursor: pointer;
    vertical-align: middle;
    margin-bottom: 10px
}

.app-upload-multi .upload-btn .txt[data-v-ce2587d4] {
    color: #128bed
}

.app-upload-multi .upload-btn[data-v-ce2587d4]:hover {
    border-color: #128bed
}

.app-upload-multi .img-preview[data-v-ce2587d4] {
    display: inline-block;
    width: 120px;
    height: 120px;
    vertical-align: middle;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    border: solid 2px #d6d6d6;
    margin-right: 10px;
    margin-bottom: 10px
}

.app-upload-multi .img-preview[data-v-ce2587d4]:last-child {
    margin-right: 0px
}

.app-upload-multi .img-preview img[data-v-ce2587d4] {
    width: 120px;
    height: 120px;
    max-height: 120px;
    -o-object-fit: contain;
    object-fit: contain
}

.app-upload-multi .img-preview .bicon-delete2[data-v-ce2587d4] {
    position: absolute;
    top: -1px;
    right: -1px;
    margin-top: 0px;
    margin-left: 0px;
    background-color: rgba(0, 0, 0, 0.2)
}

.app-upload-multi .img-preview .cover[data-v-ce2587d4] {
    height: 120px;
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 2px;
    color: #fff;
    background: #000;
    opacity: 0;
    font-size: 32px;
    padding: 15px;
    text-align: center;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    line-height: 1.4
}

.app-upload-multi .img-preview:hover .cover[data-v-ce2587d4] {
    opacity: 0.5
}

.phone-code_wrapper + input {
    padding-left: 85px
}

.phone-code_wrapper {
    cursor: pointer;
    position: absolute;
    font-size: 12px;
    z-index: 5
}

.phone-code_wrapper .phone_prefix {
    height: 40px;
    line-height: 40px;
    padding-left: 8px;
    padding-right: 30px
}

.phone-code_wrapper .caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    color: #128bed
}

.phone-code_wrapper .dropdown-menu {
    position: absolute;
    top: 100%;
    font-size: 13px;
    border-radius: 2px;
    display: block;
    z-index: 10;
    background: #fff;
    max-height: 245px;
    overflow-y: auto
}

.phone-code_wrapper .dropdown-menu ul {
    white-space: normal;
    word-break: break-all;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 12px;
    padding: 5px 0 5px 5px
}

.phone-code_wrapper .dropdown-menu .phone-prefix_tab {
    border-bottom: 1px solid #eee
}

.phone-code_wrapper .dropdown-menu .phone-prefix_tab li {
    display: inline;
    padding: 0px 5px
}

.phone-code_wrapper .dropdown-menu .phone-prefix_tab li span {
    cursor: pointer
}

.phone-code_wrapper .dropdown-menu .phone-prefix_tab li span.active {
    color: #128bed
}

.phone-code_wrapper .dropdown-menu .phone-list_tab li {
    padding: 2px 10px
}

.phone-code_wrapper .dropdown-menu .phone-list_tab li.active {
    color: #128bed
}

.phone-code_wrapper .phoneline {
    content: " ";
    position: absolute;
    right: 0px;
    width: 1px;
    left: 76px;
    height: 30px;
    top: 6px;
    background: #d8d8d8
}

.app-copy[data-v-848308dc] {
    cursor: pointer;
    position: relative
}

.app-copy .copy_input[data-v-848308dc] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -10;
    width: 0px;
    height: 0px
}

.app-copy .base_copy[data-v-848308dc] {
    color: #128bed;
    font-size: 14px;
    display: inline-block;
    line-height: 22px
}

.app-copy .base_copy .icon[data-v-848308dc] {
    background: url(//qcc-static.qichacha.com/qcc/pc-web/prod-2.10.17/copy-5132f02d.png);
    height: 22px;
    width: 22px;
    margin-bottom: -6px;
    margin-right: -5px;
    display: inline-block;
    background-size: 100% 100%
}

.preview-image .img[data-v-146ecffa] {
    position: relative;
    display: inline-block;
    width: 98px;
    height: 98px;
    border: solid 1px #eee;
    margin-right: 10px;
    margin-bottom: 10px
}

.preview-image .img img[data-v-146ecffa] {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.preview-image .img .bicon[data-v-146ecffa] {
    position: absolute;
    right: 0px;
    top: 0px;
    margin: 0px
}

.showBorder[data-v-32cbead6] {
    color: #128bed
}

.showBorder .dot[data-v-32cbead6] {
    border: 4px solid #e9f3ff;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    background: #128bed !important
}

.tcaption .tab-item[data-v-66a2e4fe] {
    margin-right: 15px
}

.tcaption .tab-item .item[data-v-66a2e4fe] {
    margin-right: 0px
}

.tcaption .tab-item[data-v-66a2e4fe]:last-child {
    margin-right: 0px
}

.app-ntable td {
    text-align: center
}

.app-ntable td.left {
    text-align: left
}

.app-ntable td.right {
    text-align: right
}

.app-ntable td .filter-blur {
    -webkit-filter: blur(5px);
    filter: blur(5px)
}

.app-ntable .ptable th, .app-ntable .ptable td {
    padding-left: 12px;
    text-align: left
}

.columns-set[data-v-65dd2dee] {
    line-height: 40px
}

.columns-config[data-v-65dd2dee] {
    margin: -8px -10px;
    width: 220px;
    height: 345px;
    overflow-y: auto
}

.columns-config .cell-wrap[data-v-65dd2dee] {
    height: 40px
}

.columns-config .cell-item[data-v-65dd2dee] {
    padding: 8px 5px 8px 15px;
    line-height: 22px
}

.columns-config .cell-item .bicon-drag[data-v-65dd2dee] {
    margin-right: 8px;
    cursor: move
}

.columns-config .cell-item .bicon-drag.disable-drag[data-v-65dd2dee] {
    opacity: .3;
    cursor: not-allowed;
    background-position: 0px -22px
}

.columns-config .cell-item .name[data-v-65dd2dee] {
    display: inline-block;
    width: 130px
}

.columns-config .cell-item .checkbox-right[data-v-65dd2dee] {
    display: inline-block
}

.columns-config .cell-item[data-v-65dd2dee]:hover {
    background: #F2F9FC
}

.columns-config .cell-item.dragging[data-v-65dd2dee] {
    position: absolute;
    z-index: 9999;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    background: #fff;
    width: 210px
}

.columns-config .cell-item.after-sort[data-v-65dd2dee]:not(.dragging) {
    -webkit-box-shadow: 0px 0px 4px rgba(30, 147, 224, 0.2);
    box-shadow: 0px 0px 4px rgba(30, 147, 224, 0.2)
}

.columns-config .static-area.auto-pos[data-v-65dd2dee] {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}


.risk-overview[data-v-0dadc66d] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.risk-overview .risk-body[data-v-0dadc66d] {
    width: 100%;
    min-height: 312px;
    position: relative;
    border: 1px solid #FFDADF
}

.risk-overview .risk-body .risk-panel[data-v-0dadc66d] {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: rgba(253, 237, 237, 0.2)
}

.risk-overview .risk-body .risk-panel .risk-tr[data-v-0dadc66d] {
    height: 52px
}

.risk-overview .risk-body .risk-panel .risk-tr td[data-v-0dadc66d]:nth-child(1) {
    padding-left: 15px
}

.risk-overview .risk-body .risk-panel .risk-self-filter[data-v-0dadc66d] {
    background-color: rgba(253, 72, 94, 0.04)
}

.risk-overview .risk-body .risk-panel .cursor-hand[data-v-0dadc66d] {
    cursor: pointer
}

.risk-overview .risk-body .risk-panel .risk-go[data-v-0dadc66d] {
    color: #FD485E
}

.risk-overview .risk-body .risk-panel .m_question[data-v-0dadc66d] {
    margin: 6px 12px 0 0
}

.risk-overview .risk-body .risk-panel .risk-header-icon[data-v-0dadc66d] {
    font-size: 18px;
    vertical-align: sub
}

.risk-overview .risk-body .risk-panel .risk-icon-status[data-v-0dadc66d] {
    color: #ff6060
}

.risk-overview .risk-body .risk-panel .risk-tag[data-v-0dadc66d] {
    display: inline-block;
    background: #FDEDED;
    border-radius: 2px;
    color: #FD485E;
    width: 62px;
    font-size: 12px;
    text-align: center;
    margin-left: 10px
}

.risk-overview .risk-body .risk-panel .risk-tag.none-risk-tag[data-v-0dadc66d] {
    color: #999;
    background: #f0f0f0;
    border-color: #eee
}

.risk-overview .risk-body .risk-info[data-v-0dadc66d] {
    width: 100%;
    height: 100%;
    margin: 0
}

.risk-overview .risk-body .risk-info .risk-item[data-v-0dadc66d] {
    display: block;
    width: 100%;
    height: 44px;
    list-style: none;
    margin: 5px 0
}

.risk-overview .risk-body .risk-info .risk-item li[data-v-0dadc66d] {
    display: inline;
    width: 90px;
    height: 43px;
    line-height: 43px;
    float: left
}

.risk-overview .risk-body .risk-info .risk-item .risk-num[data-v-0dadc66d] {
    text-align: center
}

.risk-overview .risk-body .risk-info .risk-item .risk-num span[data-v-0dadc66d] {
    display: inline-block;
    height: 22px;
    line-height: 16px;
    width: 80%;
    margin-top: 11px;
    background: #FDEDED;
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 12px;
    color: #FD485E
}

.risk-overview .risk-body .risk-info .risk-item .risk-num span.risk-empty[data-v-0dadc66d] {
    color: #999;
    background: #f0f0f0;
    border-color: #eee
}

.risk-overview .risk-body .risk-info .risk-item .risk-detail[data-v-0dadc66d] {
    line-height: 22px;
    min-width: 700px
}

.risk-overview .risk-body .risk-info .risk-item .risk-detail .rd-text[data-v-0dadc66d] {
    font-size: 14px;
    color: #333
}

.risk-overview .risk-body .risk-info .risk-item .risk-detail .rd-text .rdt-go[data-v-0dadc66d] {
    cursor: pointer;
    color: #FD485E
}

.risk-overview .risk-body .risk-info .risk-item .risk-detail .rd-text .new-text-line[data-v-0dadc66d] {
    display: inline-block;
    width: 85%;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap
}

.risk-overview .risk-body .risk-info .risk-item .risk-detail .rd-text.single-line[data-v-0dadc66d] {
    line-height: 44px
}

.risk-overview .risk-body .btn-danger[data-v-0dadc66d] {
    font-size: 12px;
    width: 82px;
    margin-right: 8px
}

.risk-overview .risk-body .overview-look[data-v-0dadc66d] {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: inherit;
    text-align: center
}

.risk-overview .risk-body .overview-look a[data-v-0dadc66d] {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden
}

.risk-overview .risk-body .overview-look .hover-local[data-v-0dadc66d] {
    position: relative;
    top: 44.2%;
    left: 3px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 999
}

.app-glossary-info {
    position: relative;
    margin-left: 5px;
    top: 1px;
    font-size: 16px
}

.glossary-content {
    min-width: 120px;
    max-width: 400px;
    max-height: 300px;
    overflow-y: auto;
    margin: -10px;
    padding: 10px
}

.glossary-content .line .title {
    font-size: 14px;
    color: #222;
    font-weight: bold
}

.glossary-content .line:not(:last-child) {
    margin-bottom: 10px
}


@-webkit-keyframes rotate-clockwise {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotate-clockwise {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes rotate-counterclockwise {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg)
    }
}

@keyframes rotate-counterclockwise {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg)
    }
}

.ui-loading-gif {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px
}

.ui-loading-gifSm {
    width: 50px;
    height: 50px
}

.ui-loading-gifLg {
    width: 200px;
    height: 200px
}

.ui-loading-gif img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-animation: 1s linear infinite;
    animation: 1s linear infinite
}

.ui-loading-gif img:nth-child(2) {
    -webkit-animation-name: rotate-clockwise;
    animation-name: rotate-clockwise
}

.ui-loading-gif img:nth-child(3) {
    -webkit-animation-name: rotate-counterclockwise;
    animation-name: rotate-counterclockwise
}

:global(.ant-spin-nested-loading) > div > :global(.ant-spin) .root {
    margin: -40px
}

:global(.ant-spin-nested-loading) > div > :global(.ant-spin-sm) .root {
    margin: -25px
}

:global(.ant-spin-nested-loading) > div > :global(.ant-spin-lg) .root {
    margin: -100px
}

:global(.ant-spin-sm) .root {
    width: 50px;
    height: 50px
}

:global(.ant-spin-lg) .root {
    width: 200px;
    height: 200px
}

