﻿
/***<jscompress sourcefile="animate.css" />*/
@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3);
    }

    100%,50% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@keyframes moveInRight {
    0% {
        opacity: 1;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    99% {
        opacity: 0;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-1000px,0,0);
        transform: translate3d(-1000px,0,0);
    }
}

/***<jscompress sourcefile="comm.css" />*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --color: #668899;
}


.c-scrollbar *::-webkit-scrollbar {
    /*滚动条的宽度*/
    width: 7px;
    height: 7px;
}

.c-scrollbar *::-webkit-scrollbar-thumb {
    /*滚动条的设置*/
    background-color: rgba(0,20,90,0.7);
    border-radius: 5px;
    background-clip: padding-box;
    min-height: 28px;
}

    .c-scrollbar *::-webkit-scrollbar-thumb:hover {
        background-color: rgba(0,20,90,0.8);
    }

.c-scrollbar *::-webkit-scrollbar-track:hover {
    background-color: rgba(0,0,0,0.4);
}

.c-scrollbar *::-webkit-scrollbar-track {
    background-color: rgba(0,0,0,0.2);
}




.s-txt {
    user-select: text;
}

body {
    font-size: 12px;
    font-weight: 300;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    user-select:element;
}

body, button {
    font-family: "PingFang SC",'Microsoft YaHei','Source Sans Pro','Helvetica Neue',Helvetica,Arial,sans-serif;
}


a {
    text-decoration: none;
}

input:focus {
    outline-offset: 0px;
}

ul, li {
    list-style: none;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.tl {
    text-align: left;
}

.tr {
    text-align: right;
}

.red {
    color: #F50;
}

.f14 {
    font-size: 14px;
}

.AlertWrapMask {
    background-color: #000;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 1003;
    top: 0px;
    left: 0px;
    filter: alpha(opacity=40);
    opacity: 0.4;
}

.AlertWrap {
    color: #555;
    position: fixed;
    top: 100px;
    left: 100px;
    z-index: 1003;
    background-color: rgba(240,248,255,0.95); /*#E4ECEF;*/
    min-width: 180px;
    padding: 0px;
    box-shadow: 0px 0px 5px 3px #666;
    animation: zoomIn 200ms;
}
/*AlertWrap滚动UL开始*/
.AlertWrap-scroll-ul {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    border: 1px solid #89A;
    background-color: #FFF;
    padding: 8px;
}

    .AlertWrap-scroll-ul > table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0px 0px;
    }

        .AlertWrap-scroll-ul > table > tbody {
            width: 100%;
        }

            .AlertWrap-scroll-ul > table > tbody > tr > td {
                line-height: 25px;
                padding-top: 3px;
                padding-bottom: 3px;
            }

            .AlertWrap-scroll-ul > table > tbody > tr:nth-child(2n+1) {
                background-color: rgba(255,200,100,0.1);
            }

            .AlertWrap-scroll-ul > table > tbody > tr > td:nth-child(2n+1) {
                color: #89A;
                width: 118px;
                text-align: right;
                padding-right: 3px;
            }

                .AlertWrap-scroll-ul > table > tbody > tr > td:nth-child(2n+1):after {
                    content: ":";
                    margin-left: 2px;
                }

            .AlertWrap-scroll-ul > table > tbody > tr > td:nth-child(2n) {
                color: #07F;
                user-select: text;
                width: calc(100% - 118px);
                padding-left: 3px;
            }


/*AlertWrap滚动UL结束*/

.AlertWrap-Mobile {
    box-shadow: none !important;
    text-align: left;
    border-radius: 5px;
}

    .AlertWrap-Mobile > .Al-title {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .AlertWrap-Mobile > .Al-Cont {
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }


.confirm-pc-box {
    display: block;
    padding-bottom: 8px;
    padding-left: 8px;
    border-bottom: solid 1px #accbd9;
}

.confirm-mobile > dt {
    position: absolute;
    bottom: 1px;
    width: 100%;
    height: 42px;
    line-height: 42px;
    background-color: #F9F7F7;
    border-bottom: 1px solid #EEE;
    font-size: 12px;
    text-align: right;
}

    .confirm-mobile > dt > span {
        height: 26px;
        border-radius: 13px;
        line-height: 26px;
        padding: 0px 14px;
        color: #FFF;
        display: inline-block;
        cursor: pointer;
        outline: none;
    }

        .confirm-mobile > dt > span > i {
            margin-right: 5px;
        }

    .confirm-mobile > dt > .btn-ok {
        background-color: #11BB77;
        margin-right: 18px;
    }

    .confirm-mobile > dt > .btn-cancel {
        background-color: #FF7700;
        margin-right: 12px;
    }

    .confirm-mobile > dt > span:hover {
        opacity: 0.85;
    }

.confirm-mobile > dd {
    position: absolute;
    top: 0px;
    height: calc(100% - 42px);
    width: 100%;
}

    .confirm-mobile > dd > .dd-text {
        width: 100%;
        height: 100%;
        resize: none;
        border: none;
        padding: 10px;
        background-color: #FFF;
        box-shadow: #CCC 0px 0px 6px 1px inset;
        color: #555;
        outline: none;
        font-size: 14px;
        line-height: 22px;
    }

.Al-title {
    background: #25A repeat-x 0 0;
    color: #FFF;
    padding: 0px 2px 0px 10px;
    display: block;
    height: 32px;
    line-height: 32px;
    text-align: left;
    user-select: none;
}

    .Al-title a {
        color: #FFF;
    }

        .Al-title a:hover {
            color: #0EF;
        }

.AL-m-title {
    background-color: #F4F4F4;
    color: #999;
}

    .AL-m-title > .Al-title-close {
        color: #AAA;
    }

.Al-title-text > i {
    margin-right: 5px;
}

.Al-title-close {
    display: block;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    float: right;
    color: #FFF;
    outline: none;
}

    .Al-title-close:hover {
        color: #FF9900;
    }

.Al-Cont {
    position: absolute;
    overflow: hidden;
    user-select: text;
    word-break: break-all;
    line-height: 20px;
    width: 100%;
}


    .Al-Cont > textarea {
        resize: none;
        outline: none;
    }

    .Al-Cont > span.ico-yes {
        font-size: 18px;
        height: 25px;
        line-height: 25px;
    }

        .Al-Cont > span.ico-yes:before {
            color: #0B3;
            margin-right: 8px;
        }

.AlertWrap-Btn {
    line-height: 46px;
    height: 46px;
    text-align: right;
}

    .AlertWrap-Btn > button {
        margin-left: 18px;
        letter-spacing: 1px;
    }

    .AlertWrap-Btn .btn {
        padding: 5px 18px;
        color: #FFF;
        margin-left: 18px;
        user-select: none;
        border-radius: 3px;
        cursor: pointer;
    }

        .AlertWrap-Btn .btn:hover {
            box-shadow: 2px 2px 2px 0px #666;
        }
/*
.AlertWrap {
    border-radius:5px !important; background-color:#F3F6F9; user-select:none;
}
.Al-title {
    border-top-left-radius:5px !important;
    border-top-right-radius:5px !important;
}*/
#mask {
    background-color: #000;
    position: fixed !important;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1002;
    top: 0px;
    left: 0px;
    filter: alpha(opacity=40);
    opacity: 0.4;
}

#loading {
    background: url(/images/bloading.gif) no-repeat center center #000;
    display: none;
    position: fixed !important;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 9999;
    top: 0px;
    left: 0px;
    opacity: 0.6;
}

    #loading > div {
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        #loading > div > b {
            display: inline-flex;
            justify-content: center;
            align-items: flex-start;
            height: 118px;
            width: 100%;
            font-size: 18px;
            color: #25A;
        }

#dlg {
    display: none;
}

.inpNull {
    color: #999;
}

.asynImg {
    background-image: url(/images/loading2.gif);
    background-position: center center;
    background-repeat: no-repeat;
}

.li-none {
    border: none !important;
    width: calc(100% - 50px) !important;
    height: calc(100% - 80px) !important;
    padding: 20px !important;
    box-shadow: none !important;
    cursor: default !important;
}

/*capp-ui美化*/
.select {
    display: inline-block;
    height: 25px;
    line-height: 25px;
    position: relative;
    background: white;
    border: 1px solid #d2e2e7;
    border-bottom-color: #c5d4d9;
    border-radius: 2px;
    background-image: linear-gradient(to bottom, #fcfdff, #f2f7f7);
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

    .select:hover {
        border-color: #a2D2D7;
    }

    .select:before, .select:after {
        content: '';
        position: absolute;
        right: 11px;
        width: 0;
        height: 0;
        border-left: 3px outset transparent;
        border-right: 3px outset transparent;
    }

    .select:after {
        top: 11px;
        border-top: 3px solid #7f9298;
    }

    .select:before {
        display: none;
        top: 8px;
        border-bottom: 3px solid #7f9298;
    }

    .select select {
        position: relative;
        z-index: 2;
        box-sizing: border-box;
        padding: 0px 9px;
        color: #80989f;
        background: transparent;
        border: 0;
        -webkit-appearance: none;
        appearance: none;
        outline: none;
        padding-right: 20px;
        font-family: inherit;
        user-select: none;
    }

    .select > .triangle {
        position: relative;
        height: 25px;
        line-height: 25px;
        width: 6px;
        user-select: none;
        margin-left: -6px;
        overflow: hidden;
        pointer-events: none;
    }

        .select > .triangle:before {
            /*用在一个框里两个select中第一个的小箭头*/
            position: absolute;
            height:100%;
            width:0px;
            top:8px;
            justify-content:center;
            align-items:center;
            content: '';
            border-left: 3px outset transparent;
            border-right: 3px outset transparent;
            border-top: 3px solid #7f9298;
        }

select::-ms-expand {
    display: none;
}


.check16 {
    box-sizing: border-box;
    height: 25px;
    line-height: 25px;
    display: inline-block;
}

    .check16 input[type=checkbox] {
        float: left;
        margin-top: 4px;
        margin-right: 5px;
        box-sizing: border-box;
        width: 16px;
        height: 16px;
        padding: 0px;
        outline: none;
        border: none;
        -webkit-appearance: none;
        appearance: none;
        background: #FFF url(/editor/images/check16.png) no-repeat;
    }

        .check16 input[type=checkbox]:hover {
            background-position: -18px 0px;
        }

        .check16 input[type=checkbox]:checked {
            background-position: -36px 0px;
        }

        .check16 input[type=checkbox]:disabled {
            background-position: -54px 0px;
        }

.capp-ui input[type=checkbox], .capp-ui input[type=radio] {
    font-family: YNSDN !important;
    font-size: calc(100%);
    border: none;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    margin: 2px 5px auto 5px;
    color: #0077FF;
}

    .capp-ui input[type=checkbox]:before, .capp-ui input[type=radio]:before {
        display: block;
        box-sizing: inherit;
        border: none;
        content: "\E960";
        border-radius: 50%;
    }

    .capp-ui input[type=checkbox]:checked:before {
        content: "\E929";
    }

    .capp-ui input[type=radio]:checked:before {
        content: "\E9AA";
    }

    .capp-ui input[type=checkbox]:disabled, .capp-ui input[type=radio]:disabled {
        color: #999;
    }

.capp-ui input[type=text], .capp-ui input[type=number], .capp-ui textarea, .capp-ui input[type=search], .capp-ui input[type=email], .capp-ui input[type=password], .capp-ui input[type=datetime-local], .capp-inp {
    display: block;
    padding: 0 0px 0px 5px;
    color: #4d5a5e;
    background: white;
    border: 1px solid #acd;
    border-radius: 2px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05), 0 1px rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
    font-family: inherit;
}

    .capp-ui input[type=text]:hover, .capp-ui textarea:hover, .capp-ui input[type=search]:hover, .capp-inp:hover {
        border-color: #5AF;
    }

    .capp-ui input:disabled, .capp-ui textarea:disabled, .capp-inp:disabled {
        border: none !important;
        background-color: #EEE;
    }

.capp-ui ::-webkit-input-placeholder {
    color: #A0A7AF;
}

.capp-ui :-moz-placeholder {
    color: #A0A7AF;
}

.capp-ui ::-moz-placeholder {
    color: #A0A7AF;
}

.capp-ui :-ms-input-placeholder {
    color: #A0A7AF;
}

/*按钮相关*/
.capp-ui button {
    height: 25px;
    line-height: 25px;
    padding: 0px 10px;
    cursor: pointer;
    color: #729fb2;
    text-shadow: 0 1px rgba(255, 255, 255, 0.5);
    background: #deeef4;
    border: 1px solid #bed6e3;
    border-bottom-color: #accbd9;
    border-radius: 2px;
    background-image: linear-gradient(to bottom, #e6f2f7, #d0e6ee);
    outline: none;
}

    .capp-ui button:hover {
        background-image: linear-gradient(to bottom, #d6f2f7, #c0e6ee);
        color: #527fa2;
    }

    .capp-ui button:disabled {
        background-image: linear-gradient(to bottom, #DDD, #CCC);
        color: #888;
        cursor: default;
        border: 1px solid #aaa;
    }

[class^=btn-], [class*=" btn-"] {
    display: inline-block;
    text-align: center;
    border-radius: 2px;
}

    [class^=btn-]:disabled, [class*=" btn-"]:disabled {
        background-color: #CCC !important;
        background-image: linear-gradient(to bottom, #DDD, #CCC);
        color: #888;
        border: 1px solid #aaa;
        cursor: default;
        text-shadow: none;
    }

.btnBlu {
    background-color: #0B3;
}

.btnOrange {
    background-color: #F90;
}

.btn-default {
    color: #729fb2;
    text-shadow: 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid #bed6e3;
    border-bottom-color: #accbd9;
    background-color: #deeef4;
    background-image: linear-gradient(to bottom, #e6f2f7, #d0e6ee);
}

    .btn-default:hover {
        background-image: linear-gradient(to bottom, #d6f2f7, #c0e6ee);
        color: #527fa2;
    }

.btn-green {
    color: #FFF;
    border: 1px solid #0A3;
    background-color: #0B3;
    background-image: linear-gradient(to bottom, #0A3, #0B3);
}

    .btn-green:hover {
        background-image: linear-gradient(to bottom, #093, #0B3);
        box-shadow: 2px 2px 2px 0px #333;
    }

/*按钮相关结束*/

.browser-tip {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 200px;
    background: rgba(0,0,0,.72);
    font-size: 30px;
    font-family: Microsoft YaHei;
    color: #fff;
    line-height: 200px;
    text-align: center;
    z-index: 9999;
}

    .browser-tip > span {
        font-size: 24px;
        font-family: 新宋体;
    }

    .browser-tip .chrome-logo {
        background: url(/images/chrome.png) no-repeat center center;
        display: inline-block;
        width: 80px;
        height: 80px;
        vertical-align: middle;
        margin-right: 25px;
    }

    .browser-tip a, .browser-tip a:hover, .browser-tip a:focus, .browser-tip a:visited {
        color: #fff;
        text-decoration: underline;
    }

.browser-tip-ie {
    top: 0px;
    left: 0px;
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #FFF;
    z-index: 999999;
    box-sizing: border-box;
    padding: 20px;
    color: #444;
    font-size: 14px;
    line-height: 32px;
}


.btn-rt {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 16px;
    cursor: pointer;
}

    .btn-rt:hover {
        color: #F70;
    }

.ui-flashMsg {
    position: fixed;
    z-index: 999999;
    font-size: 14px;
    min-width: 180px;
    text-align: center;
    max-width: 500px;
    top: 80px;
    left: calc(100% / 2 - 250px);
    padding: 18px 30px;
    background-color: rgba(255,255,255,0.9);
    display: inline-block;
    color: #0B3;
    box-shadow: #000 2px 2px 5px 0px;
    border-radius: 5px;
    line-height: 25px;
}

.hide {
    display: none;
}


.inp-prompt {
    display: inline;
    color: #999;
    position: absolute;
    bottom: 5px;
    right: 5px;
    line-height: normal;
}


.inp-ex {
    border-color: red !important;
    background-color: #FDB !important;
}

/*colpick*/
.colpicker {
    display: inline-block;
    width: 92px;
    height: 25px;
    line-height: 25px;
    background: url(/images/bgnone.gif);
    background-size: 18px;
}

    .colpicker input {
        height: 25px;
        line-height: 25px;
        width: 92px;
        border: 0;
        color: #888;
        border-left: 26px solid #FFF;
        background: url(/images/colbg.gif) no-repeat left center;
        padding-left: 5px;
    }

.color-inp {
    border: 1px solid #d2e2e7;
    height: 25px;
    width: 25px;
    background: url(/images/bgNull.gif) #FFF center center repeat;
    background-size: 8px;
    position: relative;
    cursor: pointer;
}

    .color-inp > span {
        display: block;
        position: relative;
        width: 100%;
        height: 100%;
    }
/*colpick结束*/

.conv2pic-heiper img {
    width: 100%;
    height: 100%;
}


/***<jscompress sourcefile="ico.css" />*/
@font-face {
    font-family: YNSDN;
    src: url("/inc/font/iconfont.woff2?v=0.0.1") format("woff2"), url("/inc/font/iconfont.woff?v=0.0.1") format("woff"), url("/inc/font/iconfont.ttf?v=0.0.1") format("truetype"), url("/inc/font/iconfont.eot?v=0.0.1") format("embedded-opentype"), url("/inc/font/iconfont.svg?v=0.0.1") format("svg");
}

[class^=ico-]:before, [class*=" ico-"]:before {
    font-family: YNSDN !important;
    font-style: normal;
}
.ico-logo:before {
    content: "\E70C";
}
.ico-detection:before {
    content: "\E60D";
}
.ico-circle:before {
    content: "\E95E";
}

.ico-add:before {
    content: "\E8F7";
}

.ico-add2:before {
    content: "\E914";
}

.ico-goback:before {
    content: "\E982"
}

.ico-tools:before {
    content: "\E63C"
}

.ico-bg:before {
    content: "\E91E";
}

.ico-pics:before {
    content: "\E91F";
}

.ico-pic:before {
    content: "\E91E";
}

.ico-txt:before {
    content: "\E924";
}

.ico-img:before {
    content: "\E9A9";
}

.ico-music:before {
    content: "\E91D";
}

.ico-table:before {
    content: "\E98A";
}

.ico-app:before {
    content: "\E903";
}

.ico-play:before {
    content: "\E912";
}

.ico-pause:before {
    content: "\E917";
}

.ico-upload:before {
    content: "\E9AE";
}

.ico-download:before {
    content: "\E97D";
}

.ico-video:before {
    content: "\E923";
}

.ico-err:before {
    content: "\E928";
}

.ico-yes:before {
    content: "\E929";
}

.ico-yes2:before {
    content: "\E92A";
}

.ico-no:before {
    content: "\E960";
}

.ico-exit:before {
    content: "\E98D";
}

.ico-qq:before {
    content: "\E900"
}

.ico-weixin:before {
    content: "\E9B1"
}

.ico-sina:before {
    content: "\E9B2"
}

.ico-qzone:before {
    content: "\E9B8";
}

.ico-wangwang:before {
    content: "\E9B7";
}

.ico-data:before {
    content: "\E98A"
}

.ico-resource:before {
    content: "\E9C8"
}

.ico-map:before {
    content: "\E94C"
}

.ico-vote:before {
    content: "\E971"
}

.ico-daohang:before {
    content: "\E945"
}

.ico-nav:before {
    content: "\E91C";
}

.ico-dir:before {
    content: "\E935";
}

.ico-new:before {
    content: "\E914";
}

.ico-look:before {
    content: "\E9BD";
}

.ico-favorites:before {
    content: "\E968";
}

.ico-close2:before {
    content: "\E928";
}

.ico-love:before {
    content: "\E940";
}

.ico-I:before {
    content: "\E991";
}

.ico-pc:before {
    content: "\E937";
}

.ico-k_line:before {
    content: "\E939";
}

.ico-flush:before {
    content: "\E99C";
}

.ico-people:before {
    content: "\E91B";
}

.ico-save:before {
    content: "\E922";
}

.ico-close:before {
    content: "\E927";
}

.ico-ok:before {
    content: "\E98B";
}

.ico-danger:before {
    content: "\E97F";
}

.ico-time:before {
    content: "\E97B";
}

.ico-del:before {
    content: "\E9A1";
}

.ico-set:before {
    content: "\E9A6";
}

.ico-qrcode:before {
    content: "\E99B";
}
.ico-qrcode2:before {
    content: "\E708";
}

.ico-edit:before {
    content: "\E9B5";
}

.ico-write:before {
    content: "\E9A2";
}

.ico-m:before {
    content: "\E93F";
}

.ico-chart:before {
    content: "\E9C6"
}

.ico-gift:before {
    content: "\E986";
}

.ico-copy:before {
    content: "\E9A0";
}

.ico-paste:before {
    content: "\E971";
}

.ico-msg:before {
    content: "\E995";
}

.ico-vip:before {
    content: "\E936";
}

.ico-uinf:before {
    content: "\E9BE";
}

.ico-bird:before {
    content: "\E96D";
}

.ico-home:before {
    content: "\E99F";
}

.ico-edit2:before {
    content: "\E9A2";
}

.ico-ani:before {
    content: "\E9CD";
}

.ico-cut:before {
    content: "\E905";
}

.ico-topLayer:before {
    content: "\E9AB";
}

.ico-upLayer:before {
    content: "\E926";
}

.ico-downLayer:before {
    content: "\E909";
}

.ico-footLayer:before {
    content: "\E9AD";
}

.ico-templet:before {
    content: "\E996";
}

.ico-set2:before {
    content: "\E9A7";
}

.ico-effects:before {
    content: "\E921";
}

.ico-replace:before {
    content: "\E96C";
}

.ico-expand:before {
    content: "\E919";
}

.ico-tri-down:before {
    content: "\E94E";
}

.ico-tri-right:before {
    content: "\E94F";
}

.ico-triangle-down:before {
    content: "\E608";
}

.ico-triangle-left:before {
    content: "\E609";
}

.ico-triangle-up:before {
    content: "\E60B";
}

.ico-triangle-right:before {
    content: "\E60A";
}

.ico-replace:before {
    content: "\E60C";
}

.ico-phone2:before {
    content: "\E953"
}

.ico-view:before {
    content: "\E988";
}
.ico-safe:before {
    content: "\E901";
}
.ico-b:before {
    content: "\E902";
}

.ico-uLine:before {
    content: "\E9AC";
}

.ico-delLine:before {
    content: "\E9CE";
}

.ico-align-left2:before {
    content: "\E955"
}

.ico-align-center2:before {
    content: "\E956"
}

.ico-align-right2:before {
    content: "\E957";
}

.ico-align-top:before {
    content: "\E958"
}

.ico-align-middle:before {
    content: "\E954"
}

.ico-align-bottom:before {
    content: "\E959"
}

.ico-align-left:before {
    content: "\E90A";
}

.ico-align-center:before {
    content: "\E90D";
}

.ico-align-right:before {
    content: "\E99D";
}

.ico-line-height:before {
    content: "\E946";
}

.ico-letter-spacing:before {
    content: "\E9CC";
}

.ico-link:before {
    content: "\E90B";
}

.ico-link-clear:before {
    content: "\E90C";
}

.ico-erasure:before {
    content: "\E904";
}

.ico-speech:before {
    content: "\E9AF";
}

.ico-lock:before {
    content: "\E949";
}
.ico-unlock:before {
    content: "\E9CF";
}


.ico-mail:before {
    content: "\E97E"
}


.ico-selectQus:before {
    content: "\E91C";
}

.ico-go-up:before {
    content: "\E930";
}

.ico-go-down:before {
    content: "\E92F";
}

.ico-fullscreen:before {
    content: "\E950";
}

.ico-j-left:before {
    content: "\E979";
}

.ico-j-right:before {
    content: "\E977";
}

.ico-rows:before {
    content: "\E706";
}
.ico-cols:before {
    content: "\E707";
}
.ico-writing-mode:before {
    content: "\E918";
}

.ico-zoomsmall:before {
    content: "\E965";
}

.ico-zoomlarge:before {
    content: "\E92D";
}

.ico-zoom-org:before,.ico-serch:before {
    content: "\E9A8";
}

.ico-inp-txt:before {
    content: "\E9B5";
}

.ico-inp-radio:before {
    content: "\E9AA";
}

.ico-inp-check:before {
    content: "\e9c7";
}

.ico-inp-select:before {
    content: "\e9c9";
}

.ico-picture:before {
    content: "\E91E";
}

.ico-star:before {
    content: "\E94A";
}

.ico-boards:before {
    content: "\e9c1";
}

.ico-inp-btn:before {
    content: "\E91A";
}

.ico-snap:before {
    content: "\E9B0";
}

.ico-menu:before {
    content: "\E9C9";
}

.ico-taobao:before, .ico-Taobao:before {
    content: "\E710";
}

.ico-tianmao:before, .ico-Tianmao:before {
    content: "\E711";
}

.ico-alibaba:before,.ico-Alibaba:before {
    content: "\E712";
}

.ico-check:before {
    content: "\E9D1";
}

.ico-check.checked:before {
    content: "\E9D2";
}

.ico-phone:before {
    content: "\E9D0";
}

.ico-gif:before {
    content: "\E713";
}

.ico-png:before {
    content: "\E714";
}

.ico-jpg:before {
    content: "\E715";
}

.ico-bmp:before {
    content: "\E716";
}

.ico-e920:before {
    content: "\E920";
}

.ico-e98e:before {
    content: "\E98E";
}

.ico-help:before {
    content: "\E981";
}

/***<jscompress sourcefile="popup.css" />*/

.popup-wrap {
    position: fixed;
    left: 0px;
    top: 0px;
    height: 100%;
    width: calc(100%);
    display: block;
    background-color: RGBA(0,0,0,0.3);
    z-index: 1003;
    color: #888;
}

.popup-fadeIn {
    animation: fadeIn 200ms;
}

.popup-content {
    position: absolute;
}

.popup-wrap-close {
    position: absolute;
    top: 3px;
    right: 3px;
    display: block;
    width: 18px;
    height: 18px;
    cursor: pointer;
    font-size: 16px;
}

    .popup-wrap-close:hover {
        color: #FF7700;
    }

.popup-rb {
    right: 0px;
    animation: moveInRight 200ms;
    background-image: linear-gradient(to bottom,rgba(255,255,255,1) 0%, rgba(255,255,255,0.98) 5%,rgba(255,255,255,0.8));
    border-left: 1px solid #accbd9;
}


.popup-rb .popup-wrap-close {
    display: flex;
    height: 52px;
    width: 52px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.popup-r1 {
    width: calc(100% - 168px);
    min-width: 1100px;
}

.popupR1 {
    top: 51px;
    width: calc(100% - 168px);
    min-width: 1100px;
    height: calc(100% - 50px);
    background-color: white;
    right: 0px;
    animation: moveInRight 200ms;
}

    .popupR1 .popup-wrap-close {
        display: flex;
        height: 43px;
        width: 43px;
        justify-content: center;
        align-items: center;
        font-size: 18px;
    }

.popupRB {
    min-height: 120px;
    width: 250px;
    bottom: 0px;
    right: 0px;
    background-color: white;
    animation: zoomIn 200ms;
}

.popup-processBar {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .popup-processBar > dl {
        position: relative;
        border-radius: 12px;
        background-color: rgba(255,255,255,0.6);
        width: 420px;
        margin-bottom: calc(10%);
        box-shadow: #555 0px 0px 10px 0px;
        padding: 18px;
        animation: zoomIn 200ms;
    }

        .popup-processBar > dl > dt {
            height: 52px;
            line-height: 52px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .popup-processBar > dl > dd {
            display: flex;
            justify-content: center;
            align-items: center;
            color: #0B3;
            line-height: 36px;
            font-size: 18px;
        }

.ui-processBar {
    position: relative;
    background-color: #876;
    height: 22px;
    border-radius: 11px;
    width: calc(100% - 58px);
    overflow: hidden;
    box-shadow: 0px 0px 10px 2px #888 inset;
    border: solid 1px #888;
}

.ui-processBar-act {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    background-color: #0B3;
    box-shadow: 0px 0px 5px 1px #0A2 inset;
}

.ui-processBar-text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
}


.capp-menu {
    position: absolute;
    display: block;
    width: 120px;
    background-color: rgba(255,255,255,0.9);
    z-index: 1003;
    border: 1px solid #9BC;
}

    .capp-menu > ul {
        display: block;
        width: 100%;
        user-select: none;
    }

        .capp-menu > ul > li {
            display: block;
            height: 25px;
            line-height: 25px;
            color: #567;
            padding-left: 8px;
            cursor: pointer;
        }

            .capp-menu > ul > li.disable {
                color: #B0B7BF;
            }

            .capp-menu > ul > li:hover:not(.disable) {
                background-color: rgba(255,200,0,0.4);
                color: #222;
            }

            .capp-menu > ul > li > i {
                margin-right: 8px;
            }

    .capp-menu .c-m-tb {
        margin-top: 1px;
        border-top: 1px dashed rgba(153,187,204,0.5);
    }


/***<jscompress sourcefile="CResizable.css" />*/
/*设计相关*/
body {
    --resize-bclr: #08AEFF;
    --resize-actclr: #00FF55;
}

.ui-selectable-helper {
    background-color: rgba(80,88,88,0.1);
}

.ui-selecting:not(.ui-resizable-act){
    outline: 1px dashed #08AEFF;
}

.ui-selected:not(.ui-resizable-act) {
    outline: 1px solid #08AEFF;
}

.ui-resizeable-ghost {
    position: absolute;
    background-color: rgba(0,0,0,0.01);
    box-sizing: border-box;
    transform-origin: center center;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    visibility: visible;
    outline: 1px solid #08AEFF;
}

.ui-resizable {
    position: absolute;
    display: block;
    z-index: 90;
    pointer-events: all;
    border: none;
    font-style: normal;
    font-weight: normal;
}

.ui-resizable-t2 {
    height: 20px;
    width: 20px;
    background: url(/inc/css/images/circle.svg) no-repeat center center;
    background-color: transparent;
}

    .ui-resizable-t2:hover {
        background-image: url(/inc/css/images/circleAct.svg);
    }

.ui-resizable-t1 {
    overflow: visible;
    display: flex;
    background-color: transparent;
    justify-content: center;
    align-items: center;
}

    .ui-resizable-t1:before {
        display: inline-flex;
        height: 7px;
        width: 7px;
        outline: 1px solid #08AEFF;
        background-color: #FFF;
        content: "";
        display: inline-flex;
    }

    .ui-resizable-t1:hover:before, .ui-resizable-t1:active:before {
        background-color: #00FF55;
    }

.ui-resizable-n {
    width: 100%;
    height: 7px;
    top: -4px;
    left: 0px;
}


.ui-resizable-e {
    height: 100%;
    width: 7px;
    top: 0px;
    right: -4px;
}



.ui-resizable-w {
    height: 100%;
    width: 7px;
    top: 0px;
    left: -4px;
}


.ui-resizable-s {
    width: 100%;
    height: 7px;
    bottom: -4px;
    left: 0px;
}



.ui-resizable-ne {
    top: -11px;
    right: -11px;
    transform: rotate(180deg);
}

.ui-resizable-nw {
    top: -11px;
    left: -11px;
    transform: rotate(90deg);
}

.ui-resizable-sw {
    left: -11px;
    bottom: -11px;
}


.ui-resizable-se {
    bottom: -11px;
    right: -11px;
    transform: rotate(-90deg);
}



.ui-resizable-rotate {
    position: absolute;
    top: -18px;
    width: 1px;
    height: 18px;
    border-left: 1px dashed #08AEFF;
    left: calc(50% - 0.5px);
    pointer-events: all;
}

    .ui-resizable-rotate:before {
        display: inline-block;
        position: absolute;
        height: 12px;
        line-height: 12px;
        width: 12px;
        top: -10px;
        left: -6px;
        content: " "; /* attr(data-rotate)*/
        background-image: url('/inc/css/images/rotate.png');
        background-size:12px 24px;
        background-repeat: no-repeat;
        background-position: 0px 0px;
        text-align: left;
        padding-left: 28px;
        font-size: 12px;
        color: #08AEFF;
        cursor: pointer;
    }

    .ui-resizable-rotate:after {
        display: inline-block;
        position: absolute;
        pointer-events: none;
        font-size: 12px;
        width:58px;
        content:attr(data-rotate);
        top:0px;
        left:10px;
        color:rgba(0,0,0,0.3);
    }

        .ui-resizable-rotate:hover::before, .ui-resizable-rotate:active::before {
            background-position: 0px -12px;
        }

.ui-resizable-drag {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: transparent;
    border: 1px;
}

    .ui-resizable-drag:before {
        position: absolute;
        height: 22px;
        width: 22px;
        display: flex;
        justify-content: center;
        align-items: center;
        top: -24px;
        left: 8px;
        cursor:move;
        font-family: YNSDN;
        font-size: 14px;
        content: "\E945";
        color: #08AEFF;
        background-color: rgba(0,0,0,0.1);
        border-radius: 3px;
        opacity: 0.5;
        user-select:element;
    }

    .ui-resizable-drag:hover::before {
        opacity: 1;
    }

    .ui-resizable-drag:hover {
        background-color: rgba(0,0,0,0.01);
    }

.ui-resizable-fixed {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: #0FF;
}

.ui-resizable-pos-helper {
    position: absolute;
    width: 1px;
    height: 1px;
    background-color: #0FF;
}


/***<jscompress sourcefile="rangeslider.css" />*/
.rangeslider,
.rangeslider__fill {
  display: block;
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.rangeslider {
  background: #e6e6e6;
  position: relative;
}

.rangeslider--horizontal {
  height:10px;
  line-height:10px;
  width: 100%;
}

.rangeslider--vertical {
  width:10px;
  min-height: 60px;
  max-height: 100%;
}

.rangeslider--disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4;
}

.rangeslider__fill {
  background: #00ff00;
  position: absolute;
}
.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%;
}
.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%;
}
.rangeslider--horizontal {
      cursor:ew-resize;
}
.rangeslider__handle {
  background: white;
  border: 1px solid #ccc;

  display: inline-block;
  width: 15px;
  height: 15px;
  position: absolute;
  background-size: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}
.rangeslider__handle:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;


}
.rangeslider__handle:active, .rangeslider--active .rangeslider__handle {

}
.rangeslider--horizontal .rangeslider__handle {
  top: -3px;
  touch-action: pan-y;
}
.rangeslider--vertical .rangeslider__handle {
  left: -2.5px;
  touch-action: pan-x;
}

input[type="range"]:focus + .rangeslider .rangeslider__handle {
  box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
}


/***<jscompress sourcefile="tooltip.css" />*/
.common-tips-hide {
    display: none;
}

.common-tips-container {
    width: 200px;
    padding: 10px;
    font-size: 12px;
    color: #FFF;
    border: 1px #ecedee solid;
    position: absolute;
    top: 0;
    left: 200px;
    border-radius: 5px;
    z-index: 9999;
    background-color: #25A;
    opacity:0.88;
    word-break:break-all;
}

.common-tips-animation {
    animation: common-tips-show 0.1s ease-in;
    -webkit-animation: common-tips-show 0.1s ease-in; /* Safari 鍜� Chrome */
}

.common-tips-top-right {
    transform-origin: 10% 100%;
}

    .common-tips-top-right:after {
        bottom: -7px;
        left: 16px;
        position: absolute;
        width: 12px;
        height: 12px;
        content: " ";
        transform: rotate(45deg);
        border: 1px solid #ecedee;
        border-top: 0;
        border-left: 0;
        background-color: #25A;
    }


.common-tips-top-left {
    transform-origin: 90% 100%;
}

    .common-tips-top-left:after {
        bottom: -7px;
        right: 16px;
        left: unset;
        position: absolute;
        width: 12px;
        height: 12px;
        content: " ";
        transform: rotate(45deg);
        border: 1px solid #ecedee;
        border-top: 0;
        border-left: 0;
        background-color: #25A;
    }


.common-tips-bottom-right {
    transform-origin: 10% 10%;
}

    .common-tips-bottom-right:after {
        top: -7px;
        left: 16px;
        position: absolute;
        width: 12px;
        height: 12px;
        content: " ";
        transform: rotate(45deg);
        border: 1px solid #ecedee;
        border-bottom: 0;
        border-right: 0;
        background-color: #25A;
    }


.common-tips-bottom-left {
    transform-origin: 90% 10%;
}

    .common-tips-bottom-left:after {
        top: -7px;
        right: 16px;
        left: unset;
        position: absolute;
        width: 12px;
        height: 12px;
        content: " ";
        transform: rotate(45deg);
        border: 1px solid #ecedee;
        border-bottom: 0;
        border-right: 0;
        background-color: #25A;
    }

.common-tips-container-hide {
    animation: common-tips-hide 0.1s ease-out;
    -webkit-animation: common-tips-hide 0.1s ease-out;
}


.common-tips-right-right {
    transform-origin: 0% 10%;
}

    .common-tips-right-right:after {
        left: -7px;
        top: 13px;
        position: absolute;
        width: 12px;
        height: 12px;
        content: " ";
        transform: rotate(45deg);
        border: 1px solid #ecedee;
        border-top: 0;
        border-right: 0;
        background-color: #25A;
    }


.common-tips-left-left {
    transform-origin: 100% 10%;
}

    .common-tips-left-left:after {
        right: -7px;
        top: 13px;
        position: absolute;
        width: 12px;
        height: 12px;
        content: " ";
        transform: rotate(45deg);
        border: 1px solid #ecedee;
        border-bottom: 0;
        border-left: 0;
        background-color: #25A;
        opacity: 1;
    }

@keyframes common-tips-show {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}


@keyframes common-tips-hide {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.6);
    }
}


