﻿.CodeMirror {
    font-family: monospace;
    height: 300px;
    color: #000;
}

.CodeMirror-lines {
    padding: 4px 0;
}

.CodeMirror pre {
    padding: 0 4px;
}

.CodeMirror-gutter-filler, .CodeMirror-scrollbar-filler {
    background-color: #fff;
}

.CodeMirror-gutters {
    border-right: 1px solid #ddd;
    background-color: #f7f7f7;
    white-space: nowrap;
}

.CodeMirror-linenumber {
    padding: 0 3px 0 5px;
    min-width: 20px;
    text-align: right;
    color: #999;
    white-space: nowrap;
}

.CodeMirror-guttermarker {
    color: #000;
}

.CodeMirror-guttermarker-subtle {
    color: #999;
}

.CodeMirror-cursor {
    border-left: 1px solid #000;
    border-right: none;
    width: 0;
}

.CodeMirror div.CodeMirror-secondarycursor {
    border-left: 1px solid silver;
}

.cm-fat-cursor .CodeMirror-cursor {
    width: auto;
    border: 0!important;
    background: #7e7;
}

.cm-fat-cursor div.CodeMirror-cursors {
    z-index: 1;
}

.cm-animate-fat-cursor {
    width: auto;
    border: 0;
    -webkit-animation: blink 1.06s steps(1) infinite;
    animation: blink 1.06s steps(1) infinite;
    background-color: #7e7;
}

@-webkit-keyframes blink {
    50% {
        background-color: transparent;
    }
}

@keyframes blink {
    50% {
        background-color: transparent;
    }
}

.cm-tab {
    display: inline-block;
    text-decoration: inherit;
}

.CodeMirror-rulers {
    position: absolute;
    left: 0;
    right: 0;
    top: -50px;
    bottom: -20px;
    overflow: hidden;
}

.CodeMirror-ruler {
    border-left: 1px solid #ccc;
    top: 0;
    bottom: 0;
    position: absolute;
}

.cm-s-default .cm-header {
    color: #00f;
}

.cm-s-default .cm-quote {
    color: #090;
}

.cm-negative {
    color: #d44;
}

.cm-positive {
    color: #292;
}

.cm-header, .cm-strong {
    font-weight: 700;
}

.cm-em {
    font-style: italic;
}

.cm-link {
    text-decoration: underline;
}

.cm-strikethrough {
    text-decoration: line-through;
}

.cm-s-default .cm-keyword {
    color: #708;
}

.cm-s-default .cm-atom {
    color: #219;
}

.cm-s-default .cm-number {
    color: #164;
}

.cm-s-default .cm-def {
    color: #00f;
}

.cm-s-default .cm-variable-2 {
    color: #05a;
}

.cm-s-default .cm-variable-3 {
    color: #085;
}

.cm-s-default .cm-comment {
    color: #a50;
}

.cm-s-default .cm-string {
    color: #a11;
}

.cm-s-default .cm-string-2 {
    color: #f50;
}

.cm-s-default .cm-meta, .cm-s-default .cm-qualifier {
    color: #555;
}

.cm-s-default .cm-builtin {
    color: #30a;
}

.cm-s-default .cm-bracket {
    color: #997;
}

.cm-s-default .cm-tag {
    color: #170;
}

.cm-s-default .cm-attribute {
    color: #00c;
}

.cm-s-default .cm-hr {
    color: #999;
}

.cm-s-default .cm-link {
    color: #00c;
}

.cm-invalidchar, .cm-s-default .cm-error {
    color: red;
}

.CodeMirror-composing {
    border-bottom: 2px solid;
}

div.CodeMirror span.CodeMirror-matchingbracket {
    color: #0f0;
}

div.CodeMirror span.CodeMirror-nonmatchingbracket {
    color: #f22;
}

.CodeMirror-matchingtag {
    background: rgba(255,150,0,.3);
}

.CodeMirror-activeline-background {
    background: #e8f2ff;
}

.CodeMirror {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.CodeMirror-scroll {
    overflow: scroll!important;
    margin-bottom: -30px;
    margin-right: -30px;
    padding-bottom: 30px;
    height: 100%;
    outline: 0;
    position: relative;
}

.CodeMirror-sizer {
    position: relative;
    border-right: 30px solid transparent;
}

.CodeMirror-gutter-filler, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-vscrollbar {
    position: absolute;
    z-index: 6;
    display: none;
}

.CodeMirror-vscrollbar {
    right: 0;
    top: 0;
    overflow-x: hidden;
    overflow-y: scroll;
}

.CodeMirror-hscrollbar {
    bottom: 0;
    left: 0;
    overflow-y: hidden;
    overflow-x: scroll;
}

.CodeMirror-scrollbar-filler {
    right: 0;
    bottom: 0;
}

.CodeMirror-gutter-filler {
    left: 0;
    bottom: 0;
}

.CodeMirror-gutters {
    position: absolute;
    left: 0;
    top: 0;
    min-height: 100%;
    z-index: 3;
}

.CodeMirror-gutter {
    white-space: normal;
    height: 100%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: -30px;
}

.CodeMirror-gutter-wrapper {
    position: absolute;
    z-index: 4;
    background: 0 0!important;
    border: none!important;
}

.CodeMirror-gutter-background {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 4;
}

.CodeMirror-gutter-elt {
    position: absolute;
    cursor: default;
    z-index: 4;
}

.CodeMirror-gutter-wrapper ::selection {
    background-color: transparent;
}

.CodeMirror-gutter-wrapper ::-moz-selection {
    background-color: transparent;
}

.CodeMirror-lines {
    cursor: text;
    min-height: 1px;
}

.CodeMirror pre {
    border-radius: 0;
    border-width: 0;
    background: 0 0;
    font-family: inherit;
    font-size: inherit;
    margin: 0;
    white-space: pre;
    word-wrap: normal;
    line-height: inherit;
    color: inherit;
    z-index: 2;
    position: relative;
    overflow: visible;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-variant-ligatures: contextual;
    font-variant-ligatures: contextual;
}

.CodeMirror-wrap pre {
    word-wrap: break-word;
    white-space: pre-wrap;
    word-break: normal;
}

.CodeMirror-linebackground {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
}

.CodeMirror-linewidget {
    position: relative;
    z-index: 2;
    overflow: auto;
}

.CodeMirror-rtl pre {
    direction: rtl;
}

.CodeMirror-code {
    outline: 0;
}

.CodeMirror-gutter, .CodeMirror-gutters, .CodeMirror-linenumber, .CodeMirror-scroll, .CodeMirror-sizer {
    box-sizing: content-box;
}

.CodeMirror-measure {
    position: absolute;
    width: 100%;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.CodeMirror-cursor {
    position: absolute;
    pointer-events: none;
}

.CodeMirror-measure pre {
    position: static;
}

div.CodeMirror-cursors {
    visibility: hidden;
    position: relative;
    z-index: 3;
}

.CodeMirror-focused div.CodeMirror-cursors, div.CodeMirror-dragcursors {
    visibility: visible;
}

.CodeMirror-selected {
    background: #d9d9d9;
}

.CodeMirror-focused .CodeMirror-selected, .CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection {
    background: #d7d4f0;
}

.CodeMirror-crosshair {
    cursor: crosshair;
}

.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection {
    background: #d7d4f0;
}

.cm-searching {
    background: #ffa;
    background: rgba(255,255,0,.4);
}

.cm-force-border {
    padding-right: .1px;
}

@media print {
    .CodeMirror div.CodeMirror-cursors {
        visibility: hidden;
    }
}

.cm-tab-wrap-hack:after {
    content: '';
}

span.CodeMirror-selectedtext {
    background: 0 0;
}

/*body, html {
    min-height: 100%;
}*/

a, a:link {
    text-decoration: none;
}

.header, .header-box, .rel {
    position: relative;
}

.href-btn, .href-btn-share, .search-text {
    box-sizing: border-box;
    line-height: 14px;
}

.animated, .shake {
    -webkit-animation-fill-mode: both;
}

/*html {
    color: #666;
    background: #FFF;
}*/

blockquote, body, code, dd, div, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, input, legend, li, ol, p, pre, td, textarea, th, ul {
    margin: 0;
    padding: 0;
}

/*body {
    font-size: 12px;
    line-height: 1em;
    font-family: 'Open Sans',Arial,Helvetica,sans-senif,'Microsoft Yahei',SimSun,\u5b8b\u4f53;
    word-break: break-word;
    word-wrap: normal;
}*/

a:link {
    -webkit-tap-highlight-color: transparent;
}

fieldset, img {
    border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
    font-style: normal;
    font-weight: 400;
}

ol, ul {
    list-style: none;
}

caption, th {
    text-align: left;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: 400;
}

/*button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    outline: 0;
}*/

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.yahei {
    font-family: "microsoft yahei";
}

.delete-line-box li, .waybill-img01:before {
    font-family: iconfont!important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: .2px;
}

.hide {
    display: none!important;
}

.left {
    float: left;
}

.right {
    float: right;
}

.text-overflow {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.width-auto {
    width: auto!important;
}

.web-width {
    width: 1190px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
}

.header-box {
    min-width: 1190px;
    height: 76px;
    margin-bottom: 54px;
    background: #fff;
    z-index: 10;
}

.header {
    height: 36px;
    padding: 20px 0;
}

.web-logo {
    text-indent: -100000em;
    height: 35px;
    width: 80px;
    float: left;
    background: url(//img.alicdn.com/tps/TB12jScNpXXXXbRXFXXXXXXXXXX-78-33.png) center center no-repeat;
}

.title-splite-line {
    height: 35px;
    width: 1px;
    background: #e8e8e8;
    margin: 0 18px;
}

.cn-title, .en-title {
    display: block;
    height: 16px;
    font-weight: 500;
}

.web-title {
    font-size: 14px;
    color: #fff;
    line-height: 16px;
    float: left;
    margin-top: 2px;
}

.cn-title {
    color: #231e1f;
}

.en-title {
    color: #a0a0a0;
    line-height: 18px;
}

.list-body {
    background: #f5f5f5;
}

    .list-body .web-logo {
        background-image: url(//img.alicdn.com/tps/TB1JwnwJVXXXXaKXFXXXXXXXXXX-76-32.png);
    }

    .list-body .cn-title, .list-body .en-title {
        color: #fff;
    }

.search-form {
    position: absolute;
    top: 22px;
    left: 336px;
    height: 36px;
    width: 46%;
}

.search-text {
    width: 82%;
    border: 0;
    background: rgba(0,0,0,.3);
    border-radius: 3px;
    height: 36px;
    padding: 11px 0 11px 35px;
    color: #b6b6b6;
    font-size: 14px;
}

.search-href, .search-submit {
    border: 0;
    background: 0 0;
    cursor: pointer;
}

input::-webkit-input-placeholder {
    color: #b6b6b6;
    opacity: .42;
}

input::-moz-input-placeholder {
    color: #b6b6b6;
    opacity: .42;
}

input::-ms-input-placeholder {
    color: #b6b6b6;
    opacity: .42;
}

.search-submit {
    position: absolute;
    left: 10px;
    top: 12px;
    width: 16px;
    height: 16px;
    color: #b6b6b6;
    opacity: .42;
}

.search-href {
    margin: 10px 0 10px 10px;
    color: #e7e6f7;
    line-height: 14px;
}

    .search-href:hover {
        text-decoration: underline;
    }

.header-right-box {
    position: absolute;
    top: 22px;
    right: 0;
}

.href-btn, .href-btn-share {
    font-size: 12px;
    padding: 7px 9px;
    border-radius: 14px;
    color: #666;
    border: 1px solid #d1d1d1;
    min-height: 14px;
    margin: 0 0 0 15px;
    display: inline-block;
    cursor: pointer;
    width: 64px;
    text-align: center;
}

.header-detail .href-btn {
    margin-left: 10px;
}

.href-btn:hover {
    border-color: #292929;
    background: #292929;
    color: #fff;
}

.list-body .href-btn, .list-body .href-btn-share {
    color: #fff;
}

    .list-body .href-btn-share:hover {
        border-color: #d1d1d1;
        color: #fff;
        background: 0 0;
    }

    .list-body .href-btn-share.hover, .list-body .href-btn:hover {
        border-color: #d1d1d1;
        background: #d1d1d1;
        color: #292929;
    }

.list-body-wrap {
    background: #fff;
    min-height: 630px;
}



.last-input-btn {
    display: none;
    position: absolute;
    top: 230px;
    right: 15px;
    height: 30px;
    padding: 0 10px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    background: #F8AC59;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    cursor: pointer;
}


.btn-search-box {
    text-align: center;
    margin: 50px auto 0;
}

.btn-search {
    height: 50px;
    width: 200px;
    padding: 15px 0;
    border: 0;
    box-sizing: border-box;
    background: #DD312A;
    border-radius: 25px;
    font-size: 20px;
    color: #fff;
    line-height: 20px;
    outline: 0;
    cursor: pointer;
}

.index-footer-right dl {
    float: left;
    width: 33.333%;
    text-align: center;
}

.index-footer-icon-box {
    height: 60px;
    width: 60px;
    margin: 0 auto;
    border: 2px solid rgba(128,128,128,.2);
    border-radius: 30px;
}

    .index-footer-icon-box .iconfont {
        font-size: 34px;
        color: grey;
        line-height: 34px;
        position: absolute;
        top: 12px;
        left: 11px;
    }

.index-footer-txt {
    font-size: 14px;
    height: 16px;
    margin: 14px 0;
    color: #666;
    line-height: 16px;
}




.index-body .editor-box .CodeMirror {
    border: 0;
    position: relative;
}

.waybill-detail, .waybill-list {
    min-height: 625px;
    border-right: 1px solid #f1f1f1;
}

.waybill-detail, .waybill-info {
    border-left: 1px solid #f1f1f1;
    box-sizing: border-box;
    float: left;
}

.index-body .editor-box .CodeMirror:after {
    position: absolute;
    bottom: -26px;
    left: 0;
    width: 100%;
    height: 1px;
    background: silver;
    content: " ";
    z-index: 10;
}

.editor-border-box {
    background: #fff;
    padding-bottom: 26px;
    border-radius: 1px;
    -moz-box-box-shadow: 0 0 0 3px rgba(41,41,41,.1);
    box-shadow: 0 0 0 3px rgba(41,41,41,.1);
    border: 1px solid #c1bfbf;
}

.index-body .editor-error-box {
    background: #fff4cf;
    width: 99.5%;
    top: 182px;
    color: #666;
    left: 2px;
}

.cn-common-footer, .cn-common-footer .ccf-info {
    z-index: 200;
    background: #fff;
    position: relative;
}

.cn-common-footer {
    padding: 40px 0 50px;
    margin-top: 20px;
}

    .cn-common-footer a {
        color: #999;
        text-decoration: none;
    }

        .cn-common-footer a:hover {
            text-decoration: none;
            color: #EC4F2F;
        }

.txt-href:hover, a.href-title:hover {
    text-decoration: underline;
}

.cn-common-footer .ccf-inner-content {
    font-size: 12px;
}

    .cn-common-footer .ccf-inner-content .ccf-links {
        margin: 0;
        padding: 0 0 10px;
        text-align: center;
    }

        .cn-common-footer .ccf-inner-content .ccf-links > li {
            margin: 0 22px 12px 0;
            padding: 0;
            display: inline-block;
            zoom: 1;
        }

            .cn-common-footer .ccf-inner-content .ccf-links > li:first-child {
                margin-left: 22px;
            }

    .cn-common-footer .ccf-inner-content .ccf-subdomains {
        padding-bottom: 5px;
    }

.cn-common-footer .ccf-info {
    font-size: 12px;
    padding-top: 20px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.waybill-path p, dt.waybill-num, p.waybill-num {
    font-size: 14px;
}

.cn-common-footer .ccf-info > span {
    padding: 0 4px;
}

    .cn-common-footer .ccf-info > span:first-child {
        padding: 0;
        margin-right: -5px;
    }

.list-body .header-box {
    background: #323232;
    background: -webkit-linear-gradient(left,#323232,#292929);
    background: linear-gradient(to right,#323232,#292929);
}

.editor-box .CodeMirror {
    height: 182px;
    border-radius: 3px;
}

.waybill-list {
    position: relative;
    float: left;
    width: 300px;
    box-sizing: border-box;
}

.waybill-detail {
    width: 740px;
    margin: 0 -1px;
    padding: 20px 20px 65px 15px;
    position: relative;
}

.waybill-info {
    width: 150px;
    padding: 0 15px;
    min-height: 500px;
    position: relative;
}

.waybill-list-info {
    min-height: 12px;
    padding: 10px 18px;
    position: relative;
}

.num-color01 {
    color: #ee5a3c;
    margin: 0 5px;
}

.waybill-list-filter-btn {
    position: absolute;
    z-index: 60;
    right: 10px;
    top: 4px;
    cursor: pointer;
    height: 28px;
    box-sizing: border-box;
    min-width: 65px;
    padding: 6px;
    line-height: 1em;
    border-bottom: 0 none;
}

    .waybill-list-filter-btn:hover {
        color: #333;
    }

    .waybill-list-filter-btn.active {
        color: #333;
        height: 32px;
        padding: 10px;
        background: #fff;
        box-shadow: 0 -9px 8px 5px rgba(0,0,0,.15);
    }

.waybill-list-box {
    min-height: 550px;
    overflow-y: auto;
    border-top: 1px solid #eee;
    position: relative;
    z-index: 10;
}

.waybill-list-item {
    padding: 10px 20px;
    line-height: 1.5em;
    position: relative;
    border-bottom: 1px solid #f3f3f3;
    cursor: pointer;
    color: #b4b4b4;
}

    .waybill-list-item.waybill-list-active {
        background-color: #e1efff;
    }

    .list-body-wrap:before, .waybill-list-item:after, .waybill-list:after {
        content: " ";
        background: url(https://img.alicdn.com/tps/TB1NGggJVXXXXXVXFXXXXXXXXXX-12-1.png) repeat-y;
        position: absolute;
        top: 0;
        right: 0;
        width: 12px;
        height: 100%;
        z-index: 1;
    }

.list-body-wrap {
    position: relative;
}

    .list-body-wrap:before {
        background-image: url(//img.alicdn.com/tps/TB1nD2lKXXXXXbUXVXXXXXXXXXX-12-1.png);
        right: -12px;
    }

.waybill-num {
    font-weight: 700;
    color: #333;
    height: auto;
}

p.waybill-num {
    color: #DD312A;
    margin-top: 8px;
}

.waybill-list-item .waybill-status {
    font-size: 12px;
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 10px;
    background: #4fc3f7;
    top: 10px;
    right: 18px;
    text-align: center;
    color: #fff;
    vertical-align: middle;
    line-height: 18px;
}

.waybill-list-item dd {
    min-height: 1.5em;
    color: #999;
}

.waybill-list-active dd {
    color: #4a4b4e;
}

.waybill-list-item.waybill-none {
    background: #f9f9f9;
}

.waybill-none .waybill-num {
    color: #999;
}

.waybill-info-item {
    padding: 20px 0;
    box-sizing: border-box;
    border-bottom: 1px dashed #eaeeae;
}

.waybill-info-title {
    color: #afafaf;
    height: 12px;
    margin-bottom: 12px;
}

.waybill-info-txt {
    color: #333;
    font-size: 16px;
    height: 24px;
    line-height: 24px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

    .waybill-info-txt em {
        font-weight: 500;
        vertical-align: bottom;
        font-size: 12px;
        margin: 0 0 0 8px;
        -moz-transform: scale(.93,.93);
        zoom: .93;
        -webkit-transform: scale(.93,.93);
        -o-transform: scale(.93,.93);
        position: absolute;
        bottom: -1px;
    }

.waybill-img-box {
    height: 130px;
    margin-bottom: 30px;
    position: relative;
}

.waybill-img01, .waybill-img02 {
    height: 130px;
    position: absolute;
    top: 0;
    left: 0;
}

.waybill-img01 {
    width: 100%;
    background: url(//img.alicdn.com/tps/TB1p7hiKXXXXXXbaXXXXXXXXXXX-700-130.png) no-repeat;
}

.waybill-img02 {
    width: 0;
    background: url(//gw.alicdn.com/tps/TB1w7BzOXXXXXadXFXXXXXXXXXX-700-131.png) no-repeat;
}

.waybill-detail-title-box {
    height: 55px;
    position: relative;
    border-bottom: 1px dashed #d5d5d5;
}

.waybill-detail-title {
    font-size: 18px;
    line-height: 1em;
    height: 1em;
    margin-bottom: 5px;
    font-weight: 700;
    color: #333;
}

.waybill-detail-status {
    color: #4fc2f7;
    margin-left: 8px;
}

.waybill-property {
    height: 16px;
    line-height: 16px;
    font-size: 14px;
    padding: 7px 10px 7px 20px;
    background: #0b83e8;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
}

    .waybill-property:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        content: " ";
        border-top: 15px solid transparent;
        border-left: 12px solid #fff;
        border-bottom: 15px solid transparent;
        border-right: 0 none;
    }

.waybill-detail-box {
    padding: 20px 0 0;
    min-height: 300px;
}

.waybill-country-box {
    width: 184px;
    float: left;
}

.filter-btn, .waybill-detail-btn {
    float: right;
    box-sizing: border-box;
    cursor: pointer;
}

.waybill-country-box dl {
    box-sizing: border-box;
    border: 1px solid #eee;
    padding: 9px 8px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.waybill-country-box .waybill-fail {
    border-left: 5px solid #ccc;
}

.waybill-country-box .waybill-destina {
    border-left: 5px solid #DD312A;
}

.waybill-country-box .waybill-origin {
    border-left: 5px solid #454444;
}

.waybill-country-box dt {
    text-align: right;
    height: 14px;
    line-height: 1em;
    margin-bottom: 10px;
}

.waybill-country-box dd {
    height: 12px;
    line-height: 1em;
    margin-bottom: 8px;
}

.waybill-country-box .dd-country {
    height: 14px;
    font-size: 14px;
}

.waybill-country-box .waybill-num {
    font-weight: 500;
    padding-top: 2px;
    margin-bottom: 0;
}

.waybill-path {
    margin-left: 220px;
}

    .waybill-path > li {
        position: relative;
        padding-bottom: 30px;
        padding-left: 25px;
        border-left: 1px solid #e6e6e6;
    }

        .waybill-path > li:first-child p {
            color: #333;
        }

        .waybill-path .li-last-child, .waybill-path > li:last-child {
            border: 1px solid #fff;
        }

    .waybill-path p {
        color: #999;
        line-height: 1.5em;
    }

    .waybill-path .myicon {
        position: absolute;
        top: -1px;
        left: -1px;
    }

.myicon-circle, .myicon-circle01 {
    position: absolute;
    width: 1px;
    background: #ccc;
    height: 10px;
}

    .myicon-circle:after, .myicon-circle:before {
        position: absolute;
        content: " ";
        width: 0;
        height: 0;
        top: 5px;
        background: #eee;
    }

    .myicon-circle:before {
        border: 5px solid #ccc;
        border-right: 0 solid transparent;
        left: -5px;
        border-bottom-left-radius: 5px;
        border-top-left-radius: 5px;
    }

    .myicon-circle:after {
        border: 5px solid #ccc;
        border-left: 0 solid transparent;
        left: 0;
        border-bottom-right-radius: 5px;
        border-top-right-radius: 5px;
    }

.myicon-circle01 {
    height: 18px;
}

    .myicon-circle01:after, .myicon-circle01:before {
        content: " ";
        width: 0;
        height: 0;
        background: #eee;
        position: absolute;
        top: 0;
    }

    .myicon-circle01:before {
        border: 9px solid #ccc;
        border-right: 0 solid transparent;
        left: -9px;
        border-bottom-left-radius: 9px;
        border-top-left-radius: 9px;
    }

    .myicon-circle01:after {
        border: 9px solid #ccc;
        border-left: 0 solid transparent;
        left: 1px;
        border-bottom-right-radius: 9px;
        border-top-right-radius: 9px;
    }

.icon-ORDER_NOT_EXISTS:before, .icon-SHIPPING_OVER_TIME:before, .waybill-status-error:before {
    content: "\e606";
}

.waybill-path .my-circle01 {
    height: 19px;
    width: 19px;
    background: #ccc;
    border-radius: 10px;
    left: -10px;
}

.waybill-path .waybill-status {
    position: absolute;
    width: 19px;
    height: 19px;
    border-radius: 10px;
    background: #4fc3f7;
    top: 0;
    left: -10px;
}

.waybill-detail-footer {
    padding: 10px 20px;
    opacity: .9;
    text-align: right;
    height: 45px;
    position: fixed;
    bottom: 0;
    z-index: 210;
    left: 0;
    width: 740px;
    box-sizing: border-box;
    border-top: 1px solid #f1f1f1;
    background-color: #F9F9FD;
}

.waybill-detail-btn {
    margin-right: 20px;
    padding: 5px 10px;
    height: 26px;
    line-height: 14px;
    border: 1px solid #d5d5d5;
    border-radius: 12px;
    background: #fff;
}

.waybill-status.waybill-status-error {
    background: #ffa726;
}

.icon-shaixuan {
    font-size: 12px;
    margin-right: 2px;
    color: #DD312A;
}

.waybill-filter-box {
    position: absolute;
    top: 34px;
    width: 300px;
    z-index: 50;
    background: #fff;
    left: 0;
    box-shadow: 0 0 8px 0 rgba(0,0,0,.15);
    box-sizing: border-box;
}

.waybill-filter-list {
    padding: 0 18px;
}

    .waybill-filter-list li {
        padding: 20px 0 10px;
        border-bottom: 1px dashed #f3f3f3;
    }

    .waybill-filter-btn, .waybill-filter-list button {
        display: inline-block;
        padding: 0 10px;
        height: 24px;
        background: #fff;
        border-radius: 20px;
        margin: 0 10px 10px 0;
        cursor: pointer;
        font-size: 12px;
        line-height: 24px;
        border: 1px solid #DD312A;
        color: #DD312A;
    }

        .waybill-filter-btn, .waybill-filter-list button.active {
            color: #fff;
            background: #DD312A;
        }

            .waybill-filter-btn span {
                display: inline-block;
                line-height: 22px;
            }

.filter-btn-box {
    height: 24px;
    padding: 8px 18px;
    background: #eee;
    margin-top: -1px;
}

.filter-clear {
    color: #111;
    font-size: 12px;
    line-height: 24px;
    cursor: pointer;
}

.filter-btn {
    height: 24px;
    color: #fff;
    border: 0;
    background: #DD312A;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1em;
    border-radius: 3px;
}

.waybill-filter-result {
    background: #eee;
    padding: 10px 0 0;
}

    .waybill-filter-result li {
        margin: 0 0 10px 10px;
        padding-right: 20px;
        position: relative;
        color: #ececf8;
    }

    .waybill-filter-result .icon-guanbi-cha {
        font-size: 12px;
        position: absolute;
        right: 5px;
    }

.waybill-info-notice {
    height: 253px;
    margin: 0 -15px;
    background: url() left top no-repeat;
    color: #333;
    border-bottom: 0 none;
}

    .waybill-info-notice .waybill-info-title {
        padding: 0 15px;
        margin-bottom: 0;
        height: 1em;
        line-height: 1em;
        overflow: hidden;
    }

    .waybill-info-notice .waybill-info-time {
        color: inherit;
        font-size: 14px;
        margin-bottom: 1em;
        height: 1.2em;
        line-height: 1.2em;
        text-align: center;
    }

.icon-SIGNIN:before, .icon-SIGNIN_EXC:before {
    content: "\e60d";
}

.waybill-list-item .icon-ORDER_NOT_EXISTS, .waybill-list-item .icon-SHIPPING_OVER_TIME, .waybill-status.icon-net-error {
    background: #ffa726;
}

.myicon.waybill-status.iconfont.icon-WAIT4PICKUP, .waybill-list-item .icon-WAIT4PICKUP {
    background-color: #FFCD00;
}

.myicon.waybill-status.iconfont.icon-PICKEDUP, .waybill-list-item .icon-PICKEDUP {
    background-color: #A39AFC;
}

.myicon.waybill-status.iconfont.icon-DEPART_FROM_ORIGINAL_COUNTRY, .waybill-list-item .icon-DEPART_FROM_ORIGINAL_COUNTRY {
    background-color: #6890FF;
}

.myicon.waybill-status.iconfont.icon-ARRIVED_AT_DEST_COUNTRY, .waybill-list-item .icon-ARRIVED_AT_DEST_COUNTRY {
    background-color: #4FC2F7;
}

.myicon.waybill-status.iconfont.icon-WAIT4SIGNIN, .waybill-list-item .icon-WAIT4SIGNIN {
    background-color: #FE8080;
}

.myicon.waybill-status.iconfont.icon-SHIPPING, .waybill-list-item .icon-SHIPPING {
    background-color: #5CCFA4;
}

.myicon.waybill-status.iconfont.icon-SIGNIN, .waybill-list-item .icon-SIGNIN {
    background-color: #9CCB64;
}

.search-input-error .search-text {
    border: 1px solid #ff2727;
}

.search-input-error .search-form-error {
    display: block;
}

.search-form-error {
    position: absolute;
    top: 8px;
    display: none;
    right: 155px;
    padding: 4px 10px;
    background: #ff2727;
    color: #fff;
    font-size: 12px;
    line-height: 1em;
    height: 1em;
}

.popup-editor-wrap {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0,0,0,.6);
    margin-bottom: 157px;
}

.popup-editor-box {
    height: 335px;
    position: relative;
    background: #323232;
    background: -webkit-linear-gradient(left,#323232,#292929);
    background: linear-gradient(to right,#323232,#292929);
}

.popup-header-left, .popup-header-right {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
}

.popup-header-left {
    left: 0;
    background: url(//img.alicdn.com/tps/TB1z0wHJVXXXXbOXVXXXXXXXXXX-144-295.png) repeat-x;
    background-size: 100% 100%;
}

.popup-header-right {
    right: 0;
    background: url(//img.alicdn.com/tps/TB1lqo0JVXXXXbdXpXXXXXXXXXX-145-295.png) repeat-x;
    background-size: 100% 100%;
}

.popup-header {
    background: #323232;
    background: -webkit-linear-gradient(left,#323232,#292929);
    background: linear-gradient(to right,#323232,#292929);
    position: relative;
    background-size: 100% 100%;
    z-index: 1500;
    padding: 22px 0 0;
    box-sizing: border-box;
    height: 100%;
}

.CodeMirror {
    border: 1px solid silver;
}

.CodeMirror-empty.CodeMirror-focused {
    outline: 0;
}

.CodeMirror pre.CodeMirror-placeholder {
    /*color: #999;
    line-height: 36px;
    padding: 0 0 0 10px;
    height:21px;*/
    color: #999;
    line-height: 46px;
    padding: 0 0 0 10px;
    height: 18px;
}

.editor-box {
    box-sizing: border-box;
    height: 225px;
    width: 100%;
    margin: 0 auto;
}

.popup-editor-box .editor-box {
    height: 255px;
    width: 600px;
    position: relative;
    margin: 0 0 0 340px;
}

.popup-editor-box .btn-search-box {
    margin-top: 40px;
}

.popup-editor-box .search-href {
    position: absolute;
    top: 24px;
    left: 850px;
}

.editor-box textarea {
    height: 180px;
    width: 500px;
    opacity: 0;
}

.editor-box .CodeMirror-gutters, .editor-box .CodeMirror-linenumber {
    background: 0 0;
    border: 0;
    padding: 12px 0;
    /*padding: 12px 10px 12px 4px ;*/
}

.editor-box .CodeMirror-gutters {
    padding: 0;
}

.editor-box .CodeMirror-line {
    height: 36px;
    line-height: 21px;
    font-size: 14px;
}

.CodeMirror-code div:nth-child(even), .CodeMirror-code div:nth-child(even) .CodeMirror-linenumber {
    background: #f5f5f5;
}

.delete-line-box {
    position: absolute;
    overflow: hidden;
    height: 180px;
    right: 22px;
    top: -6px;
    z-index: 100;
    padding: 0 0 0 1px;
}

    .delete-line-box li {
        height: 16px;
        padding: 25px 0 8px;
        cursor: pointer;
        font-size: 16px;
        color: #ccc;
    }

        .delete-line-box li:hover, .txt-href {
            color: #666;
        }

        .delete-line-box li:before {
            content: "\e600";
        }

.editor-box .CodeMirror-cursor {
    height: 16px!important;
    margin-top: 8px;
}

.CodeMirror-gutter {
    margin-bottom: -60px;
}

.editor-error-box {
    position: absolute;
    width: 100%;
    height: 26px;
    top: 182px;
    font-size: 12px;
    font-weight: 500;
    box-sizing: border-box;
    line-height: 24px;
    padding: 0 10px;
    left: 0;
    color: #666;
    border: 1px solid #fff;
    background-color: #fff;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.txt-href {
    cursor: pointer;
}

.animated {
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    animation-fill-mode: both;
}

@-webkit-keyframes shake {
    0%,100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translate3d(-15px,0,0);
        transform: translate3d(-15px,0,0);
    }

    20%,40%,60%,80% {
        -webkit-transform: translate3d(15px,0,0);
        transform: translate3d(15px,0,0);
    }
}

@keyframes shake {
    0%,100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translate3d(-15px,0,0);
        transform: translate3d(-15px,0,0);
    }

    20%,40%,60%,80% {
        -webkit-transform: translate3d(15px,0,0);
        transform: translate3d(15px,0,0);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    animation-fill-mode: both;
}

@-webkit-keyframes dot-scale {
    0% {
        -webkit-transform: scale(.8,.8);
        transform: scale(.8,.8);
    }

    50% {
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }

    100% {
        -webkit-transform: scale(1.2,1.2);
        transform: scale(1.2,1.2);
    }
}

@keyframes dot-scale {
    0% {
        -webkit-transform: scale(.8,.8);
        transform: scale(.8,.8);
    }

    50% {
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }

    100% {
        -webkit-transform: scale(1.2,1.2);
        transform: scale(1.2,1.2);
    }
}

.dot-scale:before {
    -webkit-animation-name: dot-scale;
    animation-name: dot-scale;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-delay: 0s;
    animation-delay: .5s;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.waybill-no-color-01, .waybill-no-color-02, .waybill-no-color-03, .waybill-no-color-04 {
    text-align: center;
    position: absolute;
    top: 10px;
    left: 12px;
    z-index: 10;
    color: #fff;
    font-weight: 100;
    font-size: 12px;
    background: #d3d3d3;
    padding: 4px 5px;
    height: 12px;
    line-height: 12px;
    border-radius: 3px;
}

.waybill-no-color-02 {
    left: 208px;
    min-width: 60px;
}

.waybill-no-color-03 {
    left: 423px;
    min-width: 60px;
}

.waybill-no-color-04 {
    left: 626px;
    min-width: 50px;
    top: 6px;
}

.waybill-img-box b:after {
    position: absolute;
    top: 20px;
    left: 40%;
    width: 0;
    height: 0;
    content: " ";
    border-top: 4px solid #d3d3d3;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 0 none;
}

b.waybill-no-color-01:after {
    left: 14px;
}

b.waybill-no-color-02:after {
    left: 31px;
}

b.waybill-no-color-03:after {
    left: 30px;
}

b.waybill-no-color-04:after {
    left: 40px;
}

b.waybill-color-01:after {
    border-top-color: #4b4ebe;
}

b.waybill-color-02:after {
    left: 32px;
    border-top-color: #4b4ebe;
}

b.waybill-color-03:after {
    left: 35px;
    border-top-color: #4b4ebe;
}

b.waybill-color-04:after {
    left: 33px;
    border-top-color: #4b4ebe;
}

b.waybill-color-05:after {
    left: 31px;
    border-top-color: #4b4ebe;
}

b.waybill-color-06:after {
    left: 19px;
    border-top-color: #4b4ebe;
}

[data-page=one] b.waybill-no-color-01:after {
    left: 15px;
}

[data-page=one] b.waybill-no-color-02:after {
    left: 32px;
}

[data-page=one] b.waybill-no-color-03:after {
    left: 33px;
}

[data-page=one] b.waybill-no-color-04:after {
    left: 32px;
}

[data-page=one] b.waybill-color-01:after {
    left: 15px;
    border-top-color: #4b4ebe;
}

[data-page=one] b.waybill-color-02:after {
    left: 32px;
    border-top-color: #4b4ebe;
}

[data-page=one] b.waybill-color-03:after, [data-page=one] b.waybill-color-04:after {
    left: 34px;
    border-top-color: #4b4ebe;
}

[data-page=one] b.waybill-color-05:after {
    left: 33px;
    border-top-color: #4b4ebe;
}

.waybill-color-01, .waybill-color-02, .waybill-color-03, .waybill-color-04, .waybill-color-05, .waybill-color-06 {
    text-align: center;
    font-size: 12px;
    font-weight: 100;
    position: absolute;
    top: 78px;
    left: 10px;
    z-index: 20;
    color: #fff;
    background: #454444;
    padding: 4px 5px;
    height: 12px;
    line-height: 12px;
    border-radius: 3px;
    display: none\9;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.waybill-color-02 {
    left: 208px;
    top: 25px;
    min-width: 35px;
}

.waybill-color-03 {
    left: 419px;
    top: 28px;
    min-width: 70px;
}

.waybill-color-04 {
    left: 636px;
    top: 75px;
    min-width: 50px;
}

.waybill-color-05 {
    left: 562px;
    top: 50px;
    min-width: 50px;
}

.waybill-color-06 {
    left: 116px;
    top: 42px;
}

[img-animate=init] .waybill-img02 {
    width: 0;
}

[img-animate=init] .waybill-color-01, [img-animate=init] .waybill-color-02, [img-animate=init] .waybill-color-03, [img-animate=init] .waybill-color-04, [img-animate=init] .waybill-color-05, [img-animate=init] .waybill-color-06 {
    z-index: -1;
    display: none\9;
}

.img02-border-right {
    background: url(https://img.alicdn.com/tps/TB1NGggJVXXXXXVXFXXXXXXXXXX-12-1.png) repeat-y;
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 100%;
}

[img-animate=PICKEDUP] .waybill-no-color-01 {
    -webkit-transition: all .3s ease-in 0s;
    transition: all .3s ease-in 0s;
    -webkit-transform: translate(8px,95px) scale(0);
    transform: translate(8px,95px) scale(0);
    display: none\9;
}

[img-animate=PICKEDUP] .waybill-color-01 {
    -webkit-transition: all .3s ease-in 0s;
    transition: all .3s ease-in 0s;
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 20;
    display: block\9;
}

.waybill-img02:after, .waybill-img02:before {
    display: none;
    content: " ";
    background: #DD312A;
    border-radius: 10px;
    position: absolute;
}

.waybill-img02:before {
    height: 18px;
    width: 18px;
    opacity: .3;
    box-sizing: border-box;
    -webkit-transform: scale(.8,.8);
    transform: scale(.8,.8);
    z-index: 19;
}

.waybill-img02:after {
    height: 8px;
    width: 8px;
    z-index: 20;
}

[img-animate=PICKEDUP] .waybill-color-02, [img-animate=PICKEDUP] .waybill-color-03, [img-animate=PICKEDUP] .waybill-color-04, [img-animate=PICKEDUP] .waybill-color-05, [img-animate=PICKEDUP] .waybill-color-06 {
    z-index: -1;
    display: none\9;
}

[waybill-status=PICKEDUP] .waybill-img02:before {
    display: block;
    top: 101px;
    left: 20px;
}

[waybill-status=PICKEDUP] .waybill-img02:after {
    display: block;
    top: 106px;
    left: 25px;
}

[waybill-status=SHIPPING] .waybill-img02:before {
    display: block;
    top: 65px;
    left: 130px;
}

[waybill-status=SHIPPING] .waybill-img02:after {
    display: block;
    top: 70px;
    left: 135px;
}

[waybill-status=DEPART_FROM_ORIGINAL_COUNTRY] .waybill-img02:before {
    display: block;
    top: 51px;
    left: 234px;
}

[waybill-status=DEPART_FROM_ORIGINAL_COUNTRY] .waybill-img02:after {
    display: block;
    top: 56px;
    left: 239px;
}

[waybill-status=ARRIVED_AT_DEST_COUNTRY] .waybill-img02:before {
    display: block;
    top: 53px;
    left: 445px;
}

[waybill-status=ARRIVED_AT_DEST_COUNTRY] .waybill-img02:after {
    display: block;
    top: 58px;
    left: 450px;
}

[waybill-status=WAIT4SIGNIN] .waybill-img02:before {
    display: block;
    top: 78px;
    left: 588px;
}

[waybill-status=WAIT4SIGNIN] .waybill-img02:after {
    display: block;
    top: 83px;
    left: 593px;
}

[waybill-status=SIGNIN] .waybill-img02:before {
    display: block;
    top: 101px;
    left: 661px;
}

[waybill-status=SIGNIN] .waybill-img02:after {
    display: block;
    top: 106px;
    left: 666px;
}

[img-animate=SHIPPING] .waybill-no-color-01, [img-animate=DEPART_FROM_ORIGINAL_COUNTRY_EXC] .waybill-no-color-01 {
    -webkit-transition: all .3s ease-in 0s;
    transition: all .3s ease-in 0s;
    -webkit-transform: translate(8px,85px) scale(0);
    transform: translate(8px,125px) scale(0);
    display: none\9;
}

[img-animate=SHIPPING] .waybill-color-01, [img-animate=DEPART_FROM_ORIGINAL_COUNTRY_EXC] .waybill-color-01 {
    -webkit-transition: all .3s ease-in 0s;
    transition: all .3s ease-in 0s;
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 20;
    display: block\9;
}

.waybill-img01:before {
    display: none;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    color: #fff;
    font-size: 14px;
    position: absolute;
    content: "\e606";
    width: 18px;
    height: 18px;
    z-index: 100;
    background: #ffa726;
    line-height: 19px;
    border-radius: 10px;
}

[img-animate=DEPART_FROM_ORIGINAL_COUNTRY_EXC] .waybill-img01:before {
    display: block;
    top: 65px;
    left: 131px;
}

[img-animate=ARRIVED_AT_DEST_COUNTRY_EXC] .waybill-img01:before {
    display: block;
    top: 45px;
    left: 342px;
}

[img-animate=SIGNIN_EXC] .waybill-img01:before {
    display: block;
    top: 72px;
    left: 588px;
}

[img-animate=DEPART_FROM_ORIGINAL_COUNTRY_EXC] .waybill-img01:after, [img-animate=ARRIVED_AT_DEST_COUNTRY_EXC] .waybill-img01:after, [img-animate=SIGNIN_EXC] .waybill-img01:after {
    content: " ";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: #f6cb8a;
}

[img-animate=DEPART_FROM_ORIGINAL_COUNTRY_EXC] .waybill-img01:after {
    z-index: 10;
    left: 140px;
}

[img-animate=ARRIVED_AT_DEST_COUNTRY_EXC] .waybill-img01:after {
    z-index: 10;
    left: 351px;
}

[img-animate=SIGNIN_EXC] .waybill-img01:after {
    z-index: 10;
    left: 597px;
}

[img-animate=DEPART_FROM_ORIGINAL_COUNTRY] .waybill-no-color-01, [img-animate=ARRIVED_AT_DEST_COUNTRY] .waybill-no-color-01, [img-animate=WAIT4SIGNIN] .waybill-no-color-01, [img-animate=SIGNIN] .waybill-no-color-01, [img-animate=ARRIVED_AT_DEST_COUNTRY_EXC] .waybill-no-color-01, [img-animate=SIGNIN_EXC] .waybill-no-color-01 {
    -webkit-transform: translate(8px,85px) scale(0);
    transform: translate(8px,85px) scale(0);
    display: none\9;
}

[img-animate=DEPART_FROM_ORIGINAL_COUNTRY] .waybill-color-01, [img-animate=ARRIVED_AT_DEST_COUNTRY] .waybill-color-01, [img-animate=WAIT4SIGNIN] .waybill-color-01, [img-animate=SIGNIN] .waybill-color-01, [img-animate=ARRIVED_AT_DEST_COUNTRY_EXC] .waybill-color-01, [img-animate=SIGNIN_EXC] .waybill-color-01 {
    -webkit-transition: all .3s ease-in 0s;
    transition: all .3s ease-in 0s;
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 20;
    display: block\9;
}

[img-animate=SHIPPING] .waybill-no-color-06 {
    -webkit-transform: translate(8px,105px) scale(0);
    transform: translate(8px,105px) scale(0);
    display: none\9;
}

[img-animate=SHIPPING] .waybill-color-06 {
    -webkit-transition: all .3s ease-in 0s;
    transition: all .3s ease-in 0s;
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 20;
    display: block\9;
}

[img-animate=DEPART_FROM_ORIGINAL_COUNTRY] .waybill-no-color-02, [img-animate=ARRIVED_AT_DEST_COUNTRY] .waybill-no-color-02, [img-animate=WAIT4SIGNIN] .waybill-no-color-02, [img-animate=SIGNIN] .waybill-no-color-02, [img-animate=ARRIVED_AT_DEST_COUNTRY_EXC] .waybill-no-color-02, [img-animate=SIGNIN_EXC] .waybill-no-color-02 {
    -webkit-transition: all .3s ease-in 0s;
    transition: all .3s ease-in 0s;
    -webkit-transform: translate(8px,20px) scale(0);
    transform: translate(8px,20px) scale(0);
    display: none\9;
}

[img-animate=DEPART_FROM_ORIGINAL_COUNTRY] .waybill-color-02, [img-animate=ARRIVED_AT_DEST_COUNTRY] .waybill-color-02, [img-animate=WAIT4SIGNIN] .waybill-color-02, [img-animate=SIGNIN] .waybill-color-02, [img-animate=ARRIVED_AT_DEST_COUNTRY_EXC] .waybill-color-02, [img-animate=SIGNIN_EXC] .waybill-color-02 {
    -webkit-transition: all .3s ease-in 0s;
    transition: all .3s ease-in 0s;
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 20;
    display: block\9;
}

[img-animate=DEPART_FROM_ORIGINAL_COUNTRY] .waybill-color-03, [img-animate=DEPART_FROM_ORIGINAL_COUNTRY] .waybill-color-04, [img-animate=WAIT4SIGNIN] .waybill-color-04 {
    z-index: -1;
    display: none\9;
}

[img-animate=ARRIVED_AT_DEST_COUNTRY] .waybill-no-color-03, [img-animate=WAIT4SIGNIN] .waybill-no-color-03, [img-animate=SIGNIN] .waybill-no-color-03, [img-animate=SIGNIN_EXC] .waybill-no-color-03 {
    -webkit-transition: all .3s ease-in 0s;
    transition: all .3s ease-in 0s;
    -webkit-transform: translate(8px,25px) scale(0);
    transform: translate(8px,25px) scale(0);
    display: none\9;
}

[img-animate=ARRIVED_AT_DEST_COUNTRY] .waybill-color-03, [img-animate=WAIT4SIGNIN] .waybill-color-03, [img-animate=SIGNIN] .waybill-color-03, [img-animate=SIGNIN_EXC] .waybill-color-03 {
    -webkit-transition: all .3s ease-in 0s;
    transition: all .3s ease-in 0s;
    -webkit-transform: scale(1);
    transform: scale(1);
    display: block\9;
}

[img-animate=ARRIVED_AT_DEST_COUNTRY] .waybill-color-04, [img-animate=WAIT4SIGNIN] .waybill-color-04, [img-animate=SIGNIN_EXC] .waybill-color-04 {
    z-index: -1;
    display: none\9;
}

[img-animate=WAIT4SIGNIN] .waybill-no-color-03, [img-animate=SIGNIN] .waybill-no-color-03, [img-animate=SIGNIN_EXC] .waybill-no-color-03 {
    -webkit-transition: all .3s ease-in 0s;
    transition: all .3s ease-in 0s;
    -webkit-transform: translate(8px,25px) scale(0);
    transform: translate(8px,25px) scale(0);
    display: none\9;
}

[img-animate=WAIT4SIGNIN] .waybill-color-03, [img-animate=SIGNIN] .waybill-color-03, [img-animate=SIGNIN_EXC] .waybill-color-03 {
    -webkit-transition: all .3s ease-in 0s;
    transition: all .3s ease-in 0s;
    -webkit-transform: scale(1);
    transform: scale(1);
    display: block\9;
}

[img-animate=SIGNIN] .waybill-no-color-04 {
    -webkit-transition: all .3s ease-in 0s;
    transition: all .3s ease-in 0s;
    -webkit-transform: translate(8px,95px) scale(0);
    transform: translate(8px,95px) scale(0);
    display: none\9;
}

[img-animate=WAIT4SIGNIN] .waybill-color-05, [img-animate=SIGNIN] .waybill-color-04 {
    -webkit-transition: all .3s ease-in 0s;
    transition: all .3s ease-in 0s;
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 20;
    display: block\9;
}

#google_translate_element {
    border: 0;
    position: relative;
    min-width: 85px;
    padding: 0;
    box-sizing: content-box;
}

.waybill-detail-btn .goog-te-gadget {
    position: relative;
    top: -1px;
    left: 0;
    min-width: 80px;
    border: 1px solid #e3e3e3;
    line-height: 22px;
    text-align: center;
    border-radius: 20px;
    height: 24px;
    overflow: hidden;
}

#google_translate_element .goog-te-gadget-simple {
    font-size: 12px;
    color: #666;
    border: 0;
}

.goog-te-menu-value span {
    border: 0!important;
    color: #666!important;
}

.img-info-type {
    height: 115px;
}

.wayybill-info-detail {
    color: inherit;
    font-size: 12px;
    line-height: 1.5em;
    padding: 0 12px;
    height: 90px;
    overflow: hidden;
}

.waybill-info-notice .waybill-info-txt {
    color: #fff;
    font-weight: 500;
    text-align: center;
    font-size: 14px;
}

.editor-red-line span {
    color: #ff2727;
}

.help-body {
    padding-bottom: 20px;
    min-height: 550px;
}

.help-list {
    display: table-cell;
    width: 290px;
    position: relative;
    background: url(//img.alicdn.com/tps/TB1ejq5KXXXXXX9XFXXXXXXXXXX-150-170.png) left bottom no-repeat #fff;
}

    .help-list:after {
        content: " ";
        background: url(https://img.alicdn.com/tps/TB1NGggJVXXXXXVXFXXXXXXXXXX-12-1.png) repeat-y;
        position: absolute;
        top: 0;
        right: 0;
        width: 12px;
        height: 100%;
    }

.icon-ARRIVED_AT_DEST_COUNTRY_EXC:before, .icon-DEPART_FROM_ORIGINAL_COUNTRY_EXC:before, .icon-RETURN:before, .icon-SIGNIN_EXC:before, .icon-error:before, .icon-no-info:before {
    content: "\e606";
}

.help-list li {
    height: 57px;
    border-bottom: 1px solid #f3f3f3;
    color: #666;
    font-size: 18px;
    line-height: 20px;
    box-sizing: border-box;
    padding: 18px 0 18px 20px;
    cursor: pointer;
}

.help-info h3, .help-info-box h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.help-list li.active {
    border-left: 5px solid #DD312A;
    color: #DD312A;
    padding-left: 15px;
}

.help-list li a {
    color: #666;
}

.help-info {
    display: table-cell;
    width: 900px;
    background: #fff;
    padding-left: 30px;
}

    .help-info h3 {
        display: inline-block;
        height: 18px;
        background: #DD312A;
        color: #fff;
        border-radius: 3px;
        line-height: 18px;
        padding: 7px 15px;
    }

.help-info-box {
    padding-bottom: 50px;
}

.help-info-box01 {
    padding-bottom: 30px;
}

    .help-info-box01 ul {
        padding-left: 30px;
    }

.help-info-box h4 {
    color: #333;
    font-weight: 700;
}

.help-info-box .info-sub-title {
    color: #666;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 20px;
    padding-left: 20px;
}

.help-info-box .info-tip {
    color: #9f9f9f;
    font-size: 12px;
    line-height: 2em;
    margin-top: 10px;
    padding-left: 20px;
}

.help-info-list {
    list-style: disc inside;
    padding-left: 20px;
    font-size: 14px;
}

    .help-info-list li {
        line-height: 30px;
        color: #3b3b3b;
    }

.header-right-help {
    position: absolute;
    right: 0;
    top: 5px;
}

    .header-right-help .href-title {
        height: 75px;
        display: inline-block;
        line-height: 75px;
        color: #fff;
        padding: 0 20px;
        font-size: 14px;
    }

        .header-right-help .href-title.active {
            background: #f5f5f5;
            color: #333;
        }

.waybill-status.icon-SIGNIN {
    background: #9ccb64;
}

.editor-box-error {
    border: 1px solid #ff2727;
}

.iconfont.waybill-status.iconfont.icon-RETURN, .myicon.waybill-status.iconfont.icon-ARRIVED_AT_DEST_COUNTRY_EXC, .myicon.waybill-status.iconfont.icon-DEPART_FROM_ORIGINAL_COUNTRY_EXC, .myicon.waybill-status.iconfont.icon-RETURN, .myicon.waybill-status.iconfont.icon-SIGNIN_EXC, .myicon.waybill-status.iconfont.icon-no-info, .waybill-status.icon-ARRIVED_AT_DEST_COUNTRY_EXC, .waybill-status.icon-DEPART_FROM_ORIGINAL_COUNTRY_EXC, .waybill-status.icon-SIGNIN_EXC, .waybill-status.icon-no-info {
    background: #ffa726;
    color: #fff;
    font-size: 14px;
    vertical-align: middle;
    line-height: 19px;
}

.myicon.waybill-status.icon-ARRIVED_AT_DEST_COUNTRY_EXC:before, .myicon.waybill-status.icon-DEPART_FROM_ORIGINAL_COUNTRY_EXC:before, .myicon.waybill-status.icon-RETURN:before, .myicon.waybill-status.icon-SIGNIN_EXC:before {
    top: 1px;
}

[data-page=one] .waybill-list {
    display: none;
}

[data-page=one] .waybill-detail {
    width: 1040px;
}

[data-page=one] .waybill-img01 {
    background-image: url(//img.alicdn.com/tps/TB1cUJrKXXXXXcsXFXXXXXXXXXX-1000-130.png);
}

[data-page=one] .waybill-img02 {
    background-image: url(//gw.alicdn.com/tps/TB1IzNkOXXXXXXsapXXXXXXXXXX-1000-130.png);
}

[data-page=one] .waybill-color-02, [data-page=one] .waybill-no-color-02 {
    left: 309px;
}

[data-page=one] .waybill-color-03, [data-page=one] .waybill-no-color-03 {
    left: 620px;
}

[data-page=one] .waybill-color-04, [data-page=one] .waybill-no-color-04 {
    left: 935px;
}

[data-page=one] [img-animate=DEPART_FROM_ORIGINAL_COUNTRY_EXC] .waybill-img01:before {
    left: 190px;
}

[data-page=one] [img-animate=ARRIVED_AT_DEST_COUNTRY_EXC] .waybill-img01:before {
    left: 492px;
}

[data-page=one] [img-animate=SIGNIN_EXC] .waybill-img01:before {
    left: 844px;
}

[data-page=one] [waybill-status=PICKEDUP] .waybill-img02:before {
    display: block;
    top: 101px;
    left: 22px;
}

[data-page=one] [waybill-status=PICKEDUP] .waybill-img02:after {
    display: block;
    top: 106px;
    left: 27px;
}

[data-page=one] [waybill-status=SHIPPING] .waybill-img02:before {
    display: block;
    top: 65px;
    left: 191px;
}

[data-page=one] [waybill-status=SHIPPING] .waybill-img02:after {
    display: block;
    top: 70px;
    left: 196px;
}

[data-page=one] [waybill-status=DEPART_FROM_ORIGINAL_COUNTRY] .waybill-img02:before {
    display: block;
    top: 50px;
    left: 335px;
}

[data-page=one] [waybill-status=DEPART_FROM_ORIGINAL_COUNTRY] .waybill-img02:after {
    display: block;
    top: 55px;
    left: 340px;
}

[data-page=one] [waybill-status=ARRIVED_AT_DEST_COUNTRY] .waybill-img02:before {
    display: block;
    top: 52px;
    left: 648px;
}

[data-page=one] [waybill-status=ARRIVED_AT_DEST_COUNTRY] .waybill-img02:after {
    display: block;
    top: 57px;
    left: 653px;
}

[data-page=one] [waybill-status=WAIT4SIGNIN] .waybill-img02:before {
    display: block;
    top: 75px;
    left: 842px;
}

[data-page=one] [waybill-status=WAIT4SIGNIN] .waybill-img02:after {
    display: block;
    top: 80px;
    left: 847px;
}

[data-page=one] [waybill-status=SHIPPING] .waybill-color-06 {
    display: block;
    top: 40px;
    left: 165px;
}

[data-page=one] [waybill-status=WAIT4SIGNIN] .waybill-color-05 {
    display: block;
    top: 50px;
    left: 818px;
}

[data-page=one] [waybill-status=SIGNIN] .waybill-img02:before {
    display: block;
    top: 101px;
    left: 962px;
}

[data-page=one] [waybill-status=SIGNIN] .waybill-img02:after {
    display: block;
    top: 106px;
    left: 967px;
}

[data-page=one] [img-animate=DEPART_FROM_ORIGINAL_COUNTRY_EXC] .waybill-img01:after {
    left: 200px;
}

[data-page=one] [img-animate=ARRIVED_AT_DEST_COUNTRY_EXC] .waybill-img01:after {
    left: 501px;
}

[data-page=one] [img-animate=SIGNIN_EXC] .waybill-img01:after {
    left: 852px;
}

.myicon.iconfont {
    color: #fff;
    font-size: 12px;
}

    .myicon.iconfont:before {
        position: absolute;
        top: 4px;
        left: 50%;
        -webkit-transform: translate(-50%,0);
        transform: translate(-50%,0);
    }

.iconfont.waybill-status-last {
    position: absolute;
    width: 19px;
    height: 19px;
    border-radius: 10px;
    background: #ccc;
    top: 0;
    left: -10px;
}

.myicon.waybill-status.iconfont {
    background: #4fc3f7;
}

.myicon.waybill-status.icon-error {
    background: #ffa726;
}

.waybill-detail-error-box {
    min-height: 560px;
    margin-left: 216px;
    background: #f5f5f5;
    padding: 20px 30px;
    display: none;
    margin-bottom: 20px;
}

.waybill-detail-error-title {
    font-size: 16px;
    color: #333;
    height: 16px;
    line-height: 16px;
    font-weight: 700;
}

.waybill-detail-error-info-list {
    list-style: decimal inside;
    margin: 15px 0;
    line-height: 24px;
    color: #404040;
    font-size: 14px;
}

.error-btn-box .href-btn {
    width: auto;
    background: #f8f8f8;
    font-weight: 500;
    color: #DD312A;
    border-color: #DD312A;
    cursor: pointer;
    margin-left: 0;
}

    .error-btn-box .href-btn:hover {
        border-color: #DD312A;
        background: #DD312A;
        color: #fff;
    }

[result-status=ORDER_NOT_EXISTS] [type=ORDER_NOT_EXISTS], [result-status=net-error] [type=net-error], [result-status=origin-select] [type=origin-select] {
    display: block;
}

button[data-disabled="1"] {
    color: #777;
    cursor: text;
    border: 0;
    background: #eaeaea;
}

.waybill-status-pass.myicon-circle:after, .waybill-status-pass.myicon-circle:before, .waybill-status.myicon-circle:after, .waybill-status.myicon-circle:before {
    display: none;
}

.waybill-path .waybill-status-pass {
    position: absolute;
    width: 19px;
    height: 19px;
    border-radius: 10px;
    background: #ccc;
    top: 0;
    left: -10px;
}

.CodeMirror pre {
    font-family: 'Courier New',sans-serif;
}

.waybill-detail-btn .iconfont {
    margin-right: 5px;
}

.waybill-detail-btn-copy-tips {
    padding: 0 20px;
    height: 36px;
    line-height: 36px;
    background: #203050;
    border-radius: 2px;
    color: #fff;
    border: 0;
    cursor: default;
}

input.search-text:focus {
    background: #fff;
    color: #545454;
}

.waybill-list-item .waybill-status.icon-ORDER_NOT_EXISTS {
    background: #e2e2e2;
}

.icon-ORDER_NOT_EXISTS:before {
    content: "\e607";
}

.waybill-country-box a {
    color: #218eea;
}

.item-ARRIVED_AT_DEST_COUNTRY_EXC, .item-DEPART_FROM_ORIGINAL_COUNTRY_EXC, .item-ORDER_NOT_EXISTS, .item-RETURN, .item-SIGNIN_EXC {
    background: #f9f9f9;
    color: #a5a5a5;
}

    .item-ARRIVED_AT_DEST_COUNTRY_EXC .waybill-num, .item-DEPART_FROM_ORIGINAL_COUNTRY_EXC .waybill-num, .item-ORDER_NOT_EXISTS .waybill-num, .item-RETURN .waybill-num, .item-SIGNIN_EXC .waybill-num {
        color: #999;
    }

.list-body .header-box {
    margin-bottom: 0;
}

.overflow-num {
    color: #ff2727;
}

::-webkit-scrollbar-track-piece {
    background-color: #fff;
    -webkit-border-radius: 0;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-thumb {
    background-color: #999;
    -webkit-border-radius: 8px;
    outline: #fff solid 2px;
    outline-offset: -2px;
    border: 2px solid #fff;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: #9f9f9f;
        -webkit-border-radius: 8px;
    }

.icon-WAIT4PICKUP:before {
    content: "\e602";
}

.icon-PICKEDUP:before {
    content: "\e60e";
}

.share-wrapper:after, .share-wrapper:before {
    content: '';
    position: absolute;
}

.error-page-box {
    padding: 100px 420px 0;
}

.error-page-box-img {
    height: 80px;
    background: url(//img.alicdn.com/tps/TB1g75LKVXXXXaUXXXXXXXXXXXX-52-80.png) top center no-repeat;
}

.error-page-box-title {
    height: 28px;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #DD312A;
    margin: 15px 0;
}

.error-page-reason {
    font-size: 12px;
    line-height: 2em;
    color: #333;
}

    .error-page-reason li {
        min-height: 2em;
    }

.error-page-btn-box {
    padding-top: 15px;
}

    .error-page-btn-box .href-btn {
        background-color: #DD312A;
    }

.waybill-detail-time {
    float: left;
    height: 30px;
}

    .waybill-detail-time i, .waybill-detail-time span {
        display: inline-block;
        height: inherit;
        line-height: 30px;
        vertical-align: middle;
        margin-right: 10px;
    }

    .waybill-detail-time span {
        margin-top: -2px;
    }

    .waybill-detail-time .href-btn {
        width: auto;
        background: #fff;
        color: #DD312A;
        border-color: #DD312A;
        display: inline-block;
        float: none;
    }

        .waybill-detail-time .href-btn:hover {
            background-color: #DD312A;
            color: #fff;
        }

.waybill-path-select {
    background: #F5F5F5;
    min-height: 115px;
    padding: 20px 10px;
    box-sizing: border-box;
}

.waybill-path-select-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    min-height: 20px;
    line-height: 25px;
    margin-bottom: 25px;
}

.waybill-country-select-box select {
    width: 235px;
    display: inline-block;
    height: 32px;
    font-size: 14px;
    box-sizing: border-box;
    border-radius: 4px;
    margin-right: 20px;
    position: relative;
    background: #fff;
    padding-left: 5px;
    border: 1px solid #eee;
}

.waybill-country-select-box button {
    width: 117px;
    display: inline-block;
    height: 32px;
    box-sizing: border-box;
    border: 0;
    border-radius: 50px;
    color: #fff;
    background: #d3d3d3;
    cursor: pointer;
}

    .waybill-country-select-box button.active {
        background: #DD312A;
    }

.popup-country {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #666;
    background-color: rgba(0,0,0,.6);
}

.popuo-country-box {
    position: absolute;
    width: 322px;
    top: 20px;
    left: 50%;
    margin-left: -210px;
    background: #fff;
}

.popuo-country-header {
    height: 22px;
    padding: 12px 20px;
    background: #f5f5f5;
}

.popup-country-title {
    float: left;
    color: #172329;
    font-size: 18px;
    height: 22px;
    line-height: 22px;
}

.popuo-country-header .iconfont {
    float: right;
    margin-top: 5px;
    cursor: pointer;
}

.popup-country-body {
    padding: 20px 0 10px;
}

    .popup-country-body select {
        margin: 0 20px;
        height: 30px;
        display: block;
        border: 1px solid #eee;
        border-radius: 4px;
        box-sizing: border-box;
        padding-left: 5px;
        width: 280px;
        background: #fff;
    }

    .origin-cp, .popup-country-body .country-cp-list li {
        box-sizing: border-box;
        margin: 0 8px 15px;
        cursor: pointer;
    }

    .popup-country-body .country-cp-list {
        padding: 18px 20px 15px;
        height: 350px;
        overflow: auto;
    }

        .popup-country-body .country-cp-list li {
            min-height: 40px;
            border: 1px solid #eee;
            color: #666;
            line-height: 38px;
            border-radius: 3px;
            padding: 0 15px;
        }

            .popup-country-body .country-cp-list li.active {
                border-color: #DD312A;
            }

.country-btn-box, .popup-country-btn-box {
    padding: 15px 0;
    text-align: center;
    height: 28px;
}

.country-btn-box {
    text-align: left;
}

    .country-btn-box button, .popup-country-btn-box button {
        padding: 0 25px;
        text-align: center;
        height: 28px;
        line-height: 28px;
        color: #fff;
        font-size: 12px;
        border: 0;
        background: #d3d3d3;
        border-radius: 30px;
    }

        .country-btn-box button.active, .popup-country-btn-box button.active {
            background: #DD312A;
            cursor: pointer;
        }

.origin-cp {
    display: inline-block;
    width: 182px;
    height: 54px;
    border: 1px solid #eee;
    color: #666;
    border-radius: 3px;
    background: #fff;
    overflow: hidden;
    padding: 5px;
}

    .origin-cp.active, .origin-cp:hover {
        border-color: #DD312A;
    }

    .origin-cp dd, .origin-cp dt {
        overflow: hidden;
        word-break: break-all;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-size: 12px;
        line-height: 1.5em;
        height: 1.5em;
        color: #666;
    }

    .origin-cp dd {
        font-size: 14px;
        color: #333;
    }

[error-status] .waybill-detail-error-box {
    display: none;
}

[error-status=originStatus] [type=origin-select] {
    display: block;
}

.c-loading-icon {
    margin-left: 10px;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    background: url(https://img.alicdn.com/tps/TB1vf1YKVXXXXb1XVXXXXXXXXXX-14-14.gif) no-repeat;
}

span.c-loading-icon {
    display: none;
}

[data-loading=true] .c-loading-icon {
    display: inline-block;
}

.waybill-detail-time .c-loading-icon {
    height: 14px;
}

#MicrosoftTranslatorWidget.waybill-detail-btn {
    height: 26px!important;
    padding: 0;
    min-width: 80px;
    text-align: center;
    line-height: 26px;
}

#MicrosoftTranslatorWidget #WidgetLauncher {
    width: 70px!important;
    margin: 4px!important;
    height: 18px!important;
}

#MicrosoftTranslatorWidget #TranslateSpan {
    font-size: 12px!important;
}

#MicrosoftTranslatorWidget div {
    border-radius: 4px;
}

#MicrosoftTranslatorWidget #LauncherTranslatePhrase:hover {
    background-color: transparent!important;
    border: 0;
}

.exceed-mask {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 9999;
}

    .exceed-mask.hide {
        display: none;
    }

    .exceed-mask .exceed-modal {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        width: 300px;
        height: 180px;
        background-color: #fff;
        border-radius: 5px;
    }

.exceed-modal .modal-header {
    width: calc(100% - 0px);
    height: 36px;
    background-color: #4476A7;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 36px;
    color: #fff;
}

    .exceed-modal .modal-header span {
        float: right;
        font-size: 18px;
        font-weight: 100;
        cursor: pointer;
    }

.exceed-modal .modal-body {
    width: calc(100% - 0px);
    padding: 0 20px;
    font-size: 12px;
}

    .exceed-modal .modal-body div {
        margin-top: 30px;
        line-height: 20px;
    }

    .exceed-modal .modal-body .btn-group {
        text-align: center;
        margin-left: 50px;
    }

.cancel-btn {
    display: inline-block;
    width: 56px;
    height: 28px;
    line-height: 30px;
    margin: 0 5px;
    text-align: center;
    background-color: #C9C5C5;
    color: #FFF;
    cursor: pointer;
}

.ok-btn {
    display: inline-block;
    width: 56px;
    height: 28px;
    line-height: 30px;
    margin: 0 5px;
    text-align: center;
    background-color: #BBB5B5;
    color: #292929;
    cursor: pointer;
}

dt.iconfont.waybill-status:before {
    position: absolute;
    top: 1px;
    left: 50%;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
}

.inner-icon, .share, .waybill-filter-list button[data-disabled='0'] {
    position: relative;
}

.inner-icon {
    display: inline-block;
    top: -1px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 12px;
    background-color: rgba(221,49,42,.15);
    border-radius: 50%;
    margin-left: -7px;
    margin-right: 3px;
}

.active .inner-icon {
    color: #DD312A;
    background: #fff;
}

.inner-icon.icon-show-1 {
    display: none;
}

.inner-amount {
    display: inline-block;
    margin-left: 5px;
}

button[data-disabled='0'] .inner-text {
    position: relative;
    margin-left: 20px;
    top: -1px;
}

.error-page-box .href-btn {
    width: auto;
}

.swiper-container {
    height: 90px;
}

.swiper-wrapper {
    text-align: center;
}

    .swiper-wrapper img {
        max-width: 100%;
        max-height: 100%;
    }

.share.hover .share-wrapper {
    display: block;
}

.share:hover {
    border-color: #d1d1d1;
    background: #fff;
    color: #666;
}

.share.hover {
    border-color: #292929;
    background: #292929;
    color: #fff;
}

.share-wrapper {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    min-width: 115px;
    padding: 5px;
    background-color: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    box-shadow: 0 0 5px 0 #f1f1f1;
    -webkit-transform: translate(-24%);
    transform: translate(-24%);
    margin-left: -32px\9\0;
}

    .share-wrapper:before {
        top: -16px;
        left: 53px;
        border: 8px solid transparent;
        border-bottom-color: #fff;
    }

    .share-wrapper:after {
        top: -20px;
        left: 0;
        width: 100%;
        height: 20px;
        background: 0 0;
    }

    .share-wrapper .share-en a {
        display: inline-block;
        color: #c7c7c7;
        text-decoration: none;
        cursor: pointer;
        line-height: 1;
        margin: 0 2px;
    }

.share-en .iconfont {
    font-size: 20px;
}

    .share-en .iconfont:hover {
        color: #87cefa;
    }

.bdsharebuttonbox a {
    cursor: pointer;
}

.bdsharebuttonbox .iconfont {
    font-size: 20px;
    color: #c7c7c7;
    margin: 0 2px;
}

    .bdsharebuttonbox .iconfont:hover {
        color: #87cefa;
    }

@media screen and (max-width:768px) {
    .langs, .mobile-header, .waybill-country-box {
        box-sizing: border-box;
    }

    .overflow {
        overflow: hidden;
    }

    html {
        background: #f2f2f2;
    }

    .pc-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .web-width {
        width: auto;
    }

    .CodeMirror pre.CodeMirror-placeholder, .editor-box .CodeMirror-line {
        font-size: 16px;
    }

    .exceed-mask .exceed-modal {
        width: 90%;
    }

    .header-right-box {
        top: 25px;
    }

    .href-btn {
        width: auto;
        margin-left: 5px;
        -webkit-tap-highlight-color: transparent;
    }

        .href-btn.href-btn-m {
            width: 30px;
            height: 30px;
            line-height: 30px;
            padding: 0;
            border-radius: 50%;
            margin-left: 10px;
        }

    .share .icon-fenxiang {
        font-size: 20px;
        margin-top: -2px;
    }

    .detail-share {
        width: 27px;
        height: 27px;
        line-height: 25px;
        margin-top: 2px;
        border: 1px solid rgba(0,0,0,.15);
        border-radius: 50%;
    }

        .detail-share .icon-fenxiang {
            color: rgba(0,0,0,.35);
        }

        .detail-share.hover .icon-fenxiang {
            color: #fff;
        }

    .share-wrapper {
        top: 38px;
        -webkit-transform: translate(-71%);
        transform: translate(-71%);
    }

        .share-wrapper .bdsharebuttonbox, .share-wrapper .custom_images {
            line-height: 1;
        }

        .share-wrapper:before {
            left: auto;
            right: 15px;
        }

    .btn-search {
        height: auto;
        padding: 12px 0;
    }

    .title-splite-line {
        margin: 0 5px;
    }

    .header-box {
        min-width: 0;
        padding: 0 10px;
        margin-bottom: 20px;
    }

    .index-logo-box {
        width: 188px;
        height: 41px;
        padding-bottom: 6.7%;
        margin: 7.6% auto 0;
        background-size: contain;
    }

    .editor-box .CodeMirror-gutters, .index-footer {
        padding: 0;
    }

    .index-body {
        min-width: 0;
        height: auto;
    }

        .index-body .editor-box, .index-footer-left, .popup-editor-box .editor-box {
            width: auto;
            margin-left: 5%;
            margin-right: 5%;
        }

        .index-body .editor-box, .popup-editor-box .editor-box {
            direction: ltr;
            text-align: left;
        }

        .index-body .editor-error-box {
            width: 100%;
            left: 0;
        }

    .index-footer-box {
        height: auto;
        overflow: hidden;
    }

    .index-footer-right {
        width: 100%;
        padding-right: 0;
        background: #fff;
    }

    .editor-border-box {
        box-shadow: 0 0 0 5px rgba(41,41,41,.1);
    }

    .list-body {
        background: #f2f2f2;
        top: 0!important;
    }

    .waybill-detail, .waybill-filter-box, .waybill-list {
        width: 100%;
    }

    .waybill-list {
        display: none;
        min-height: 0;
    }

    .mobile-header {
        position: fixed;
        width: 100%;
        text-align: center;
        padding: 15px;
        background: #fff;
        border-bottom: 1px solid #f2f2f2;
        z-index: 999;
    }

    .mobile-logo {
        display: inline-block;
        width: 134px;
        height: 30px;
    }

    .waybill-country-box .dd-country, .waybill-detail-title {
        height: auto;
    }

    .mobile-logo img {
        max-width: 100%;
        vertical-align: middle;
    }

    .mobile-back, .mobile-search {
        position: absolute;
        top: 25px;
    }

    .mobile-back {
        left: 15px;
    }

    .mobile-search {
        right: 55px;
    }

        .mobile-back .icon-jiantou, .mobile-search .icon-search {
            color: rgba(0,0,0,.15);
            vertical-align: middle;
        }

    .target-lang, .waybill-detail .waybill-num {
        color: #DD312A;
    }

    .mobile-back .icon-jiantou {
        font-size: 20px;
    }

    .mobile-search .icon-search {
        font-size: 29px;
    }

    .list-body-wrap {
        min-height: 0;
        background: 0 0;
        padding-top: 60px;
    }

    .waybill-list-box {
        min-height: 0;
    }

    .waybill-list-info {
        font-size: 14px;
    }

    .waybill-list-item {
        font-size: 14px;
        background: #fff;
        margin-bottom: 10px;
    }

        .list-body-wrap:before, .waybill-list-item:after, .waybill-list:after {
            background: 0 0;
            right: 0;
        }

    [data-page=one] .waybill-detail {
        width: 100%;
    }

    .waybill-detail {
        display: none;
        padding: 0;
        margin: 0;
        min-height: 0;
    }

    .waybill-detail-title-box {
        height: auto;
        background: #fff;
        padding: 15px;
    }

    .waybill-property {
        top: 23px;
        right: 15px;
    }

    .waybill-detail .waybill-property {
        background-color: #454444;
    }

    .waybill-detail-box {
        padding: 0;
    }

    .waybill-country-box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        float: none;
        width: 100%;
        background: #fff;
        padding: 23px 15px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

        .waybill-country-box dl {
            width: 47%;
            margin-bottom: 0;
        }

    .waybill-destina, .waybill-fail-dest {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        border-left-color: #454444!important;
    }

    .waybill-fail-origin, .waybill-origin {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        border-left-color: #E62E05!important;
    }

    [result-status=ORDER_NOT_EXISTS] .waybill-path, [result-status=net-error] .waybill-path, [result-status=origin-select] .waybill-path {
        padding: 0;
    }

    .waybill-path {
        padding: 20px 15px;
        margin-top: 10px;
        margin-left: 0;
        background: #fff;
    }

    [error-status=status-cpList] .waybill-path {
        padding: 10% 10% 15%;
        background: #fff;
    }

        [error-status=status-cpList] .waybill-path li {
            padding: 0 20px 10px;
            border: 0;
        }

    [error-status=status-cpList] .waybill-path-select {
        padding: 0;
        background: #fff;
    }

    [error-status=status-cpList] .waybill-country-select-box button {
        margin-top: 20px;
    }

    .popup-country .popuo-country-box {
        width: 90%;
        top: 20px;
        margin-left: 0;
        -webkit-transform: translate(-50%,0);
        transform: translate(-50%,0);
    }

        .popup-country .popuo-country-box .country-cp-list {
            height: 250px;
            overflow-y: auto;
        }

    .popup-country-body select {
        width: 80%;
    }

    .waybill-detail-footer {
        display: none;
        width: 100%!important;
        left: 0!important;
    }

    .popup-editor-box {
        background: #fff;
    }

        .popup-editor-box .CodeMirror {
            border: none;
            background: #f5f5f5;
        }

        .popup-editor-box .editor-error-box {
            border: none;
        }

        .popup-editor-box .btn-search {
            height: 44px;
            width: 250px;
            padding: 0;
        }

    .popup-header {
        background: 0 0;
    }

    .waybill-detail-error-box {
        margin-top: 10px;
        margin-left: 0;
        min-height: 0;
        background: #fff;
    }

    .goog-te-menu-frame, .goog-te-menu2 {
        width: 100%!important;
    }

        .goog-te-menu2 table td {
            float: left;
            width: 50%;
        }

    #goog-gt-tt, .goog-te-banner-frame {
        display: none;
    }

    .error-page-box {
        padding: 50px 20px 20px;
    }

    .error-page-box-title {
        height: auto;
    }

    .langs-wrapper {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 1001;
        text-align: left;
        direction: ltr;
    }

    .langs-head {
        position: relative;
        padding: 15px 20px;
        background: #f2f2f2;
        border-bottom: 1px solid #ccc;
    }

    .langs-close {
        position: absolute;
        top: 12px;
        right: 12px;
    }

        .langs-close .icon-icon {
            font-size: 25px;
        }

    .langs {
        padding: 20px;
        overflow-y: auto;
    }

        .langs li {
            background: #f2f2f2;
            padding: 10px 0;
            margin-bottom: 10px;
            text-align: center;
        }

    .mobile-translate {
        line-height: 26px;
        direction: ltr;
        text-align: left;
    }

    .translate-txt {
        float: left;
    }

    .translate-radio {
        position: relative;
        width: 15px;
        display: inline-block;
        height: 15px;
        vertical-align: middle;
        border-radius: 50%;
        border: 1px solid #999;
    }

    .translate-txt.active .translate-radio {
        background: #DD312A;
        border-color: #DD312A;
    }

    .active .translate-radio:before {
        content: '';
        position: absolute;
        width: 4px;
        top: 2px;
        left: 5px;
        height: 8px;
        border: 2px solid #fff;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(50deg);
        transform: rotate(50deg);
    }

    .target-lang-wrapper {
        float: right;
    }

        .target-lang-wrapper .icon-xiangyou {
            position: absolute;
            top: 9px;
            right: 4px;
        }

    .target-lang {
        max-width: 60px;
    }

    #WidgetFloaterPanels, #WidgetFloaterPanels ~ [translate=no] {
        display: none!important;
    }
}

@media screen and (max-height:560px) {
    .index-body .ccf-info {
        margin: 50px auto 20px;
        text-align: center;
    }
}

@media screen and (min-height:561px) {
    .index-body .ccf-info {
        position: absolute;
        bottom: 20px;
        left: 50%;
        -webkit-transform: translate(-50%,0);
        transform: translate(-50%,0);
    }
}

@media screen and (min-width:769px) {
    .pc-only {
        display: block;
    }

    .mobile-only {
        display: none;
    }
}
