@charset "utf-8";
.clearfix {
    *zoom: 1;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

* {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

#imageView img {
    border: none;
    height: auto;
    width: 250px;
    margin-top: 20px;
    margin-left: 20px;
}

input,
select,
textarea {
    outline: none;
    border: none;
    background: none;
}

textarea {
    resize: none;
}

/*重置盒模型 */
.boxContent * {
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
}

/*animation start*/
#animationTipBox {
    width: 180px;
    height: auto;
    background-color: #FFFFFF;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -90px;
    margin-top: -75px;
    z-index: 1001;
    -webkit-animation: alertAnimation 0.3s ease-in-out 0s 1;
    -moz-animation: alertAnimation 0.3s ease-in-out 0s 1;
    animation: alertAnimation 0.3s ease-in-out 0s 1;
}

#animationTipBox * {
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
}

#animationTipBox .icon1 {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border: 4px solid #66CC33;
    margin: 15px auto 5px auto;
}

#animationTipBox .icon_box {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

#animationTipBox .lose .icon1 {
    border-color: #FF9090;
}

#animationTipBox .lose .icon_box {
    -webkit-animation: lose_Animation 0.5s ease 0s 1;
    -moz-animation: lose_Animation 0.5s ease 0s 1;
    animation: lose_Animation 0.5s ease 0s 1;
}

#animationTipBox .dec_txt {
    font-size: 16px;
    text-align: center;
    color: #666666;
    line-height: 26px;
    height: 26px;
    padding: 5px 0 10px 0;
}

.tip .icon1 {
    width: 80px;
    height: 80px;
    background-color: #66CC33;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    color: #FFFFFF;
    font-size: 80px;
    text-align: center;
    line-height: 80px;
}

.success .line_short {
    width: 25px;
    height: 5px;
    position: absolute;
    left: 14px;
    top: 46px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    background-color: #66CC33;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-animation: success_short_Animation 0.65s ease 0s 1;
    -moz-animation: success_short_Animation 0.65s ease 0s 1;
    animation: success_short_Animation 0.65s ease 0s 1;
}

.success .line_long {
    width: 47px;
    height: 5px;
    position: absolute;
    right: 8px;
    top: 38px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    background-color: #66CC33;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-animation: success_long_Animation 0.65s ease 0s 1;
    -moz-animation: success_long_Animation 0.65s ease 0s 1;
    animation: success_long_Animation 0.65s ease 0s 1;
}

.lose .line_left,
.lose .line_right {
    width: 47px;
    height: 5px;
    position: absolute;
    left: 17px;
    top: 37px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    background-color: #FF9090;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
}

.lose .line_right {
    right: 11px;
    top: 37px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
}

/* 总体动画  函数 */
/*all animate*/
@-webkit-keyframes alertAnimation {
    0% {
        -webkit-transform: scale(0.5);
    }
    45% {
        -webkit-transform: scale(1.25);
    }
    80% {
        -webkit-transform: scale(0.95);
    }
    100% {
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes alertAnimation {
    0% {
        -webkit-transform: scale(0.5);
    }
    45% {
        -webkit-transform: scale(1.25);
    }
    80% {
        -webkit-transform: scale(0.95);
    }
    100% {
        -webkit-transform: scale(1);
    }
}

@-webkit-keyframes alertAnimation {
    0% {
        -webkit-transform: scale(0.5);
    }
    45% {
        -webkit-transform: scale(1.25);
    }
    80% {
        -webkit-transform: scale(0.95);
    }
    100% {
        -webkit-transform: scale(1);
    }
}

/*all animate*/
/*success short animate*/
@-webkit-keyframes success_short_Animation {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -4px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@-moz-keyframes success_short_Animation {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -4px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@-webkit-keyframes success_short_Animation {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -4px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

/*success short animate*/
/*success long animate*/
@-webkit-keyframes success_long_Animation {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

@-moz-keyframes success_long_Animation {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

@-webkit-keyframes success_long_Animation {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

/*success long animate*/
/*load_Animation*/
@-webkit-keyframes load_Animation {
    0% {
        -webkit-transform: scale(0.6);
        opacity: 0.2;
    }
    50% {
        -webkit-transform: scale(0.6);
        opacity: 0.5;
    }
    80% {
        -webkit-transform: scale(1.15);
        opacity: 0.8;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

@-moz-keyframes load_Animation {
    0% {
        -webkit-transform: scale(0.6);
        opacity: 0.2;
    }
    50% {
        -webkit-transform: scale(0.6);
        opacity: 0.5;
    }
    80% {
        -webkit-transform: scale(1.15);
        opacity: 0.8;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes load_Animation {
    0% {
        -webkit-transform: scale(0.6);
        opacity: 0.2;
    }
    50% {
        -webkit-transform: scale(0.6);
        opacity: 0.5;
    }
    80% {
        -webkit-transform: scale(1.15);
        opacity: 0.8;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

/*load_Animation*/
/*lose_Animation*/
@-webkit-keyframes lose_Animation {
    0% {
        -webkit-transform: scale(0.6);
        opacity: 0.2;
    }
    50% {
        -webkit-transform: scale(0.6);
        opacity: 0.5;
    }
    80% {
        -webkit-transform: scale(1.15);
        opacity: 0.8;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

@-moz-keyframes lose_Animation {
    0% {
        -webkit-transform: scale(0.6);
        opacity: 0.2;
    }
    50% {
        -webkit-transform: scale(0.6);
        opacity: 0.5;
    }
    80% {
        -webkit-transform: scale(1.15);
        opacity: 0.8;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes lose_Animation {
    0% {
        -webkit-transform: scale(0.6);
        opacity: 0.2;
    }
    50% {
        -webkit-transform: scale(0.6);
        opacity: 0.5;
    }
    80% {
        -webkit-transform: scale(1.15);
        opacity: 0.8;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

/*lose_Animation*/
.load {
    position: relative;
    width: 60px;
    height: 80px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border: 4px solid #FFFFFF;
    margin: 15px auto 5px auto;
    top: 10px;
}

.load .icon_box {
    margin: 10px auto;
    width: 60px;
    height: 60px;
}

.load .cirBox1,
.load .cirBox2,
.load .cirBox3 {
    width: 60px;
    height: 60px;
    position: absolute;
    left: 0;
    top: 0;
}

.load .cirBox1 > div,
.load .cirBox2 > div,
.load .cirBox3 > div {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background-color: #CCCCCC;
    position: absolute;
}

.load .cirBox1 {
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
}

.load .cirBox2 {
    transform: rotate(60deg);
    -webkit-transform: rotate(60deg);
    -moz-transform: rotate(60deg);
}

.load .cirBox3 {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
}

.load .cir1 {
    left: 0;
    top: 0;
}

.load .cir2 {
    right: 0;
    top: 0;
}

.load .cir3 {
    right: 0;
    bottom: 0;
}

.load .cir4 {
    left: 0;
    bottom: 0;
}

.load .cir1,
.load .cir2,
.load .cir3,
.load .cir4 {
    -webkit-animation: cir_Animation 1.2s ease 0s infinite;
    -moz-animation: cir_Animation 1.2s ease 0s infinite;
    animation: cir_Animation 1.2s ease 0s infinite;
}

.cirBox1 .cir2 {
    -webkit-animation-delay: -1.1s;
    -moz-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.cirBox1 .cir3 {
    -webkit-animation-delay: -0.8s;
    -moz-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.cirBox1 .cir4 {
    -webkit-animation-delay: -0.5s;
    -moz-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.cirBox2 .cir2 {
    -webkit-animation-delay: -1s;
    -moz-animation-delay: -1s;
    animation-delay: -1s;
}

.cirBox2 .cir3 {
    -webkit-animation-delay: -0.7s;
    -moz-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.cirBox2 .cir4 {
    -webkit-animation-delay: -0.4s;
    -moz-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.cirBox3 .cir2 {
    -webkit-animation-delay: -0.9s;
    -moz-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.cirBox3 .cir3 {
    -webkit-animation-delay: -0.6s;
    -moz-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.cirBox3 .cir4 {
    -webkit-animation-delay: -0.3s;
    -moz-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

@-webkit-keyframes cir_Animation {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0.4);
    }
    40% {
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes cir_Animation {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0.4);
    }
    40% {
        -webkit-transform: scale(1);
    }
}

@-webkit-keyframes cir_Animation {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0.4);
    }
    40% {
        -webkit-transform: scale(1);
    }
}

.mask1 {
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.6;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
}

.tree-content {
    padding-left: 10px;
}

.tree-node-content {
    padding-left: 0px;
}

.tree-content-sdkName {
    vertical-align: middle;
    display: inline-block;
    height: 298px;
    width: 150px;
    left: 10px;
    border: 1px solid #ccc;
}

.tree-img {
    width: 300px;
    margin-left: 2px;
    height: 298px;
    border: 1px solid #ccc;
    vertical-align: top;
    display: inline-block;
}

body {
    font-family: "Open Sans", sans-serif !important;
    margin: 0;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #333;
}

a:hover,
a:focus {
    text-decoration: none;
}

h3,
h4 {
    margin-top: 1.5em !important;
}

#features {
    width: 800px;
    margin: 30px auto 0 auto;
    text-align: center;
}

#features p {
    line-height: 1.5;
    text-align: left;
    text-indent: 15px;
}

#features .primary {
    text-align: center;
    text-indent: 0;
    font-size: 20px;
}

#features .next-steps {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 50px;
}

#features .next-steps a {
    font-size: 20px;
}

#features .next-steps a:nth-child(1) {
    color: red;
    margin-right: 20px;
}

#features .next-steps a:nth-child(2) {
    color: green;
    margin-right: 20px;
}

#features .next-steps a:nth-child(3) {
    color: blue;
}

#features .canvas-container {
    margin-top: 20px;
}

#to-svg {
    position: absolute;
    top: 1800px;
    left: -100px;
    font-size: 18px;
}

#to-json {
    position: absolute;
    top: 1800px;
    left: -190px;
    font-size: 18px;
}

.tooltip {
    background: #666;
    color: #f0f0f0;
    border-radius: 5px;
    width: 200px;
    position: absolute;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.2s;
    cursor: pointer;
}

.tooltip:hover {
    background: #444;
}

.tooltip b {
    color: #faa;
    font-weight: normal;
}

.tooltip.simple-shapes {
    top: 50px;
    left: -100px;
}

.tooltip.complex-shapes {
    right: -100px;
    top: 50px;
}

.tooltip.images {
    left: -50px;
    top: 300px;
    width: 150px;
}

.tooltip.text {
    left: -100px;
    top: 600px;
}

.tooltip.gradients {
    right: -50px;
    top: 300px;
    width: 150px;
}

.tooltip.filters {
    right: -70px;
    top: 600px;
    width: 170px;
}

.tooltip.animation {
    left: -100px;
    top: 800px;
}

.tooltip.groups {
    right: -100px;
    top: 900px;
}

.tooltip.shadows {
    left: -130px;
    top: 950px;
    width: 230px;
}

.tooltip.flipping {
    right: -130px;
    top: 1150px;
    width: 230px;
}

.tooltip.events {
    left: -100px;
    top: 1300px;
}

.tooltip.clipping {
    right: -50px;
    top: 1450px;
    width: 150px;
}

.tooltip.patterns {
    left: -50px;
    top: 1550px;
    width: 150px;
}

.tooltip.freedrawing {
    right: -100px;
    top: 1750px;
}

.tooltip.serialization {
    left: -100px;
    top: 1730px;
}

#features img {
    box-shadow: rgba(0, 0, 0, 0.3) 0 0 5px;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 400px;
}

#features img:hover {
    box-shadow: rgba(0, 0, 155, 0.3) 0 0 5px;
}

#header {
    background: #333;
    margin: 0;
    padding: 0;
    color: #555;
    overflow: hidden;
    min-width: 900px;
}

#header li {
    display: inline-block;
    float: left;
    margin-bottom: 0;
}

#header li a {
    display: inline-block;
    padding: 10px;
    color: pink;
    text-decoration: none;
}

#header li a:hover,
#header li a:focus {
    text-decoration: underline;
}

#header li.secondary {
    float: right;
}

#header li.github.secondary {
    float: right;
    margin-right: 10px;
}

#header li.secondary a:last-child {
    padding-left: 0;
}

#demos {
    padding-left: 0;
    margin-top: 30px;
}

#demos li {
    list-style: none;
    text-align: center;
    width: 200px;
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 25px !important;
    vertical-align: top;
}

#demos li img {
    box-shadow: rgba(0, 0, 0, 0.2) 0 0 10px;
    margin-bottom: 5px;
    width: 150px;
    display: inline-block;
}

#demos li .caption {
    display: inline-block;
}

#demos li a {
    display: block;
    text-decoration: none;
    font-size: 16px;
}

#demos li a:hover img {
    box-shadow: rgba(0, 0, 255, 0.2) 0 0 10px;
}

#demos li a:hover .caption {
    font-weight: bold;
}

.github iframe {
    margin-top: 8px;
}

.twitter iframe {
    margin-top: 8px;
    margin-right: 10px;
    margin-left: 10px;
}

.github span,
.twitter span {
    color: pink;
}

#bd-wrapper {
    padding: 10px;
    min-width: 1200px;
}

#bd-wrapper > ul > li {
    margin-bottom: 5px;
}

#articles li ul {
    margin-top: 5px;
    margin-bottom: 15px;
    padding-left: 15px;
    list-style-type: disc;
}

#articles li ul li {
    margin-bottom: 5px;
}

pre {
    margin-top: 0;
    font-size: 12px;
    vertical-align: top;
    background: #F4F2E5;
    display: inline-block;
    padding: 15px;
    word-wrap: break-word;
    white-space: pre;
}

.canvas-container {
    /*border: 1px dotted #ccc;*/
    display: inline-block;
    vertical-align: top;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h2 span {
    font-weight: normal;
}

b.bench {
    font-family: monospace;
    font-size: 18px;
    background: #ffc;
    padding: 0 3px;
    border: 1px solid #eee;
    line-height: 1.5;
}

.quick-features {
    font-weight: 300;
    text-align: left;
    display: inline-block;
    vertical-align: top;
    margin-left: 20px;
    background: #ffc;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    padding: 10px 10px 5px 10px;
    font-size: 11px;
    margin-right: -300px;
}

.quick-features h3 {
    margin-top: 0;
    text-align: center;
}

.quick-features ul {
    padding-left: 0;
    margin-bottom: 0;
}

.quick-features li {
    margin-bottom: 5px;
    list-style-position: inside;
    list-style-type: circle;
}

.quick-features em {
    color: #777;
}

.kitchensink {
    display: inline-block;
    vertical-align: top;
    margin-top: 20px;
}

.note {
    font-size: 12px;
    margin-left: 10px;
}

.coming-soon {
    color: #f55;
}

.gsc-control-cse {
    padding: 4px 4px 0 4px !important;
    margin-top: 5px !important;
}

#printio-lab-project {
    position: absolute;
    top: 90px;
    left: 0;
    padding: 5px 10px;
    background: #eee;
    border-radius: 3px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: linear-gradient(rgba(146, 189, 94, 0.5), rgba(136, 176, 88, 0.5));
    transition: all 0.2s;
}

#printio-lab-project:hover {
    padding: 10px 15px;
    top: 85px;
    left: -5px;
}

#changelog {
    position: absolute;
    top: 130px;
    left: 0;
    padding: 5px 10px;
    background: #eee;
    border-radius: 3px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: linear-gradient(rgba(45, 45, 233, 0.5), rgba(50, 50, 244, 0.5));
    transition: all 0.2s;
}

#changelog:hover {
    padding: 10px 15px;
    top: 125px;
    left: -5px;
}

.column {
    width: 400px;
    display: inline-block;
    background: #fafafa;
    vertical-align: top;
    padding-left: 20px;
    margin-right: 10px;
    margin-top: 10px;
    margin-left: 10px;
}

.column > ul {
    padding-left: 0;
    list-style-position: inside;
}

.benchmarks {
    width: 300px;
}

.team {
    list-style-type: none;
}

.team > li {
    margin-bottom: 30px;
}

.team .bio {
    width: 600px;
    display: inline-block;
    vertical-align: top;
    margin-left: 20px;
}

.team .bio p:first-child {
    margin-top: 0;
}

.team img {
    padding: 3px;
    border: 1px solid #ccc;
}

#gentle-reminder {
    position: fixed;
    right: 1px;
    top: 45px;
    width: 144px;
}

#gentle-reminder-docs {
    position: fixed;
    right: 16px;
    top: 45px;
    width: 144px;
}

.reminder {
    font-size: 13px;
    color: white;
    text-align: center;
    padding: 2px;
    background-color: pink !important;
}

.print_print {
    width: 390px;
    height: 315px;
    z-index: 10001;
    position: absolute;
    margin-left: -185px;
    margin-top: -192px;
    left: 50%;
    top: 50%;
    border: 1px solid #d5d5d5;
    box-sizing: border-box;
    background: #eff8fd;
    overflow: hidden;
}

.print-head {
    position: relative;
    height: 38px;
    width: 100%;
    font-size: 16px;
    line-height: 38px;
    background: #3384ce;
    text-indent: 15px;
    color: #ffffff;
}

.close-btn {
    position: absolute;
    right: 8px;
    width: 25px;
    top: 7px;
    height: 25px;
    background: url(../../image/images/closeBtn.png) no-repeat;
    text-decoration: none;
}

.print-btn {
    float: right;
    clear: both;
    margin-bottom: 10px;
    margin-top: 10px;
}

/*.print-btn>button,.print-btn>button:focus{ float: left; margin-right: 10px; width: 72px; text-align: center; border: 1px solid #d5d5d5; border-radius: 4px; background: #ffffff;}*/
.btns,
.btns:hover {
    float: left;
    margin-right: 10px;
    width: 72px;
    text-align: center;
    border: 1px solid #d5d5d5;
    border-radius: 4px;
    background: #ffffff;
    font-size: 12px;
    padding-top: 2px;
    padding-bottom: 2px;
    cursor: pointer;
}

.print-content-box {
    padding-left: 15px;
}

.print-title {
    float: left;
    clear: both;
    margin-top: 26px;
    width: 100%;
    font-size: 12px;
}

.p {
    float: left;
    width: 100%;
    margin-top: 8px;
    text-indent: 25px;
    font-size: 13px;
}

.print-content-box > input {
    float: left;
    margin-top: 15px;
    clear: left;
    margin-left: 50px;
}

#selectstart,
#selectend {
    width: 75px;
}

#selectMax {
    width: 195px;
}

#selectMax,
#selectstart {
    margin: 0px 10px 0px 10px;
}

.spanmax {
    display: block;
    text-indent: 130px;
}

.print-contentbar {
    padding-top: 15px;
    padding-left: 45px;
}

.print-span {
    font-size: 16px;
    line-height: 16px;
    height: 16px;
    float: left;
    clear: both;
    margin-top: 15px;
    margin-bottom: 0;
}

.progress {
    float: left;
    clear: both;
    margin-top: 15px;
    width: 90%;
}

.progress {
    height: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #337ab7;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -webkit-transition: width 0.6s ease;
    -o-transition: width 0.6s ease;
    transition: width 0.6s ease;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

label {
    display: inline !important;
    font-weight: normal !important;
}

.p select {
    margin: 0px 10px 0px 10px !important;
    border: 1px solid #d5d5d5 !important;
}

.p input {
    margin: 0px 10px 0px 10px !important;
    border: 1px solid #d5d5d5 !important;
}

._richTextMenubar {
    position: absolute;
    width: 315px;
}

._richTextMenubar span {
    position: relative !important;
}

._richTextMenubar .Active {
    background: #98bbf9;
}

.dropBox {
    float: left;
    position: relative;
    margin: 1px;
}

.dropBox:hover .polygon2 {
    visibility: visible;
}

.dropBox:hover .drownStyle {
    visibility: visible;
}

.dropBox:hover {
    background: #98bbf9;
}

.dropBtn {
    background: url(../../image/dropdown.png) no-repeat;
    width: 26px;
    height: 26px;
    display: inline-block;
}

.dropdown1 {
    background-position: 0px 0px;
}

.dropdown2 {
    background-position: 0px -28px;
}

.dropdown3 {
    background-position: 0px -56px;
}

.dropdown4 {
    background-position: 0px -84px;
}

.dropdown5 {
    background-position: 0px -112px;
}

.dropdown6 {
    background-position: 0px -140px;
}

.dropdown7 {
    background-position: 0px -251px;
}

.dropdown8 {
    background-position: 0px -196px;
}

.triangle {
    background: url(../../image/dropdown.png) no-repeat;
    width: 13px;
    height: 26px;
    display: inline-block;
    background-position: 0px -224px;
}

._richTextMenubar select {
    width: 60px !important;
    height: 28px !important;
    border: 1px solid #666;
    cursor: pointer;
    vertical-align: top;
    margin-right: 5px;
    margin-bottom: 5px;
}

.dropBox.active {
    /*border: 1px solid #168dd5;*/
}

span.lineColor,
span.textColor {
    height: 4px;
    width: 17px;
    background: #000000FF;
    position: absolute !important;
    left: 5px;
    top: 21px;
}

span.borderColor {
    height: 4px;
    width: 17px;
    background: #000000FF;
    position: absolute !important;
    left: 5px;
    top: 24px;
}

.drownStyle {
    position: absolute;
    background: #fff;
    width: auto;
    border: 1px solid #666;
    z-index: 100;
    visibility: hidden;
}

.drownStyle .style1 {
    width: 39px;
    text-align: center;
}

.drownStyle .style2 {
    width: 50px;
    text-align: center;
}

.polygon2 {
    width: 145px;
    height: 26px;
    background: #178dd5;
    visibility: hidden;
    position: absolute;
    /*transition: all 0.6s;*/
    top: calc(50% - 12px);
    left: 40px;
}

.trag {
    width: 0;
    height: 0;
    border-top: 6px solid #494949;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid transparent;
    transform: rotate(90deg);
    position: absolute;
    top: 8.5px;
    left: -12px;
}

#numW {
    height: 100%;
    color: #fff;
    line-height: 26px;
    font-size: 14px;
    position: absolute;
    top: 0;
    right: 4px;
}

.polygon2 input {
    width: 100px;
    border: 0;
    outline: none;
    cursor: pointer;
    position: absolute;
    top: 2.5px;
    left: 4px;
}

.drownStyle li:hover {
    background: #c6e6f9;
}

.drownStyle .active {
    background: #c6e6f9;
}

.borderSize {
    position: absolute;
    background: #fff;
    top: 64px;
    left: 93px;
    width: 45px;
    border: 1px solid #666;
    display: none;
}

.borderSize li:hover {
    background: #c6e6f9;
}

._richTextMenubar .textStyle {
    font-size: 10px;
    width: 30px;
    display: table;
    font-family: 黑体;
    margin-bottom: 2px;
    text-align: center;
    color: black;
}

._richTextMenubar .row {
    position: relative;
    width: 100%;
    background: #c6e6f9;
    height: 75px;
    margin: auto;
}

.closeButton {
    float: right;
    right: 6px;
}

#sign-list {
    overflow: auto;
}

#sign-list .content {
    border-top: 1px solid #666;
    overflow: auto;
    padding: 5px;
    font-size: 9px;
}

#sign-list .content-item {
    border-bottom: 1px solid #666;
}

#sign-list .content-item > div {
    padding: 3px 0;
}

#sign-list .content-item > .clearFloat {
    clear: both;
}

#sign-list .name-,
#sign-list .name- > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.name- > div:first-child {
    min-width: 45%;
    max-width: 65%;
}

#sign-list .name- img {
    min-width: 40px;
    min-height: 30px;
    cursor: pointer;
}

#sign-list .name- > div > span {
    margin: 0 3px;
    font-size: 14px;
    font-weight: bold;
}

#sign-list .name- button {
    margin: 0 3px;
    line-height: 25px;
    width: 40px;
    height: 25px;
    min-width: 40px;
    background: #168dd5;
    border-radius: 3px;
    border: 1px solid #0972b1;
    color: #ffffff;
}

#sign-list .valid {
    color: green;
}

#sign-list .invalid {
    color: red;
}

#sign-list .unknown {
    color: #999;
}

#sign-list a:hover {
    color: #172c45;
    text-decoration: none;
}

@charset "UTF-8";
/*!
 * jQuery contextMenu - Plugin for simple contextMenu handling
 *
 * Version: v2.7.0
 *
 * Authors: Björn Brala (SWIS.nl), Rodney Rehm, Addy Osmani (patches for FF)
 * Web: http://swisnl.github.io/jQuery-contextMenu/
 *
 * Copyright (c) 2011-2018 SWIS BV and contributors
 *
 * Licensed under
 *   MIT License http://www.opensource.org/licenses/mit-license
 *
 * Date: 2018-07-12T09:06:55.859Z
 */
@-webkit-keyframes cm-spin {
    0% {
        -webkit-transform: translateY(-50%) rotate(0deg);
        transform: translateY(-50%) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-50%) rotate(359deg);
        transform: translateY(-50%) rotate(359deg);
    }
}

@-o-keyframes cm-spin {
    0% {
        -webkit-transform: translateY(-50%) rotate(0deg);
        -o-transform: translateY(-50%) rotate(0deg);
        transform: translateY(-50%) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-50%) rotate(359deg);
        -o-transform: translateY(-50%) rotate(359deg);
        transform: translateY(-50%) rotate(359deg);
    }
}

@keyframes cm-spin {
    0% {
        -webkit-transform: translateY(-50%) rotate(0deg);
        -o-transform: translateY(-50%) rotate(0deg);
        transform: translateY(-50%) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-50%) rotate(359deg);
        -o-transform: translateY(-50%) rotate(359deg);
        transform: translateY(-50%) rotate(359deg);
    }
}

@font-face {
    font-family: "context-menu-icons";
    font-style: normal;
    font-weight: normal;

    /*src: url("font/context-menu-icons.eot?36hmp");*/
    /*src: url("font/context-menu-icons.eot?36hmp#iefix") format("embedded-opentype"), url("font/context-menu-icons.woff2?36hmp") format("woff2"), url("font/context-menu-icons.woff?36hmp") format("woff"), url("font/context-menu-icons.ttf?36hmp") format("truetype");*/
}

.context-menu-icon-add:before {
    content: "\EA01";
}

.context-menu-icon-copy:before {
    content: "\EA02";
}

.context-menu-icon-cut:before {
    content: "\EA03";
}

.context-menu-icon-delete:before {
    content: "\EA04";
}

.context-menu-icon-edit:before {
    content: "\EA05";
}

.context-menu-icon-loading:before {
    content: "\EA06";
}

.context-menu-icon-paste:before {
    content: "\EA07";
}

.context-menu-icon-quit:before {
    content: "\EA08";
}

.context-menu-icon::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 2em;
    font-family: "context-menu-icons";
    font-size: 1em;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    color: #2980b9;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.context-menu-icon.context-menu-hover:before {
    color: #fff;
}

.context-menu-icon.context-menu-disabled::before {
    color: #bbb;
}

.context-menu-icon.context-menu-icon-loading:before {
    -webkit-animation: cm-spin 2s infinite;
    -o-animation: cm-spin 2s infinite;
    animation: cm-spin 2s infinite;
}

.context-menu-icon.context-menu-icon--fa {
    display: list-item;
    font-family: inherit;
    line-height: inherit;
}

.context-menu-icon.context-menu-icon--fa::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 2em;
    font-family: FontAwesome;
    font-size: 1em;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    color: #2980b9;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.context-menu-icon.context-menu-icon--fa.context-menu-hover:before {
    color: #fff;
}

.context-menu-icon.context-menu-icon--fa.context-menu-disabled::before {
    color: #bbb;
}

.context-menu-icon.context-menu-icon--fa5 {
    display: list-item;
    font-family: inherit;
    line-height: inherit;
}

.context-menu-icon.context-menu-icon--fa5 i, .context-menu-icon.context-menu-icon--fa5 svg {
    position: absolute;
    top: .3em;
    left: .5em;
    color: #2980b9;
}

.context-menu-icon.context-menu-icon--fa5.context-menu-hover i, .context-menu-icon.context-menu-icon--fa5.context-menu-hover svg {
    color: #fff;
}

.context-menu-icon.context-menu-icon--fa5.context-menu-disabled i, .context-menu-icon.context-menu-icon--fa5.context-menu-disabled svg {
    color: #bbb;
}

.context-menu-list {
    position: absolute;
    display: inline-block;
    min-width: 13em;
    max-width: 26em;
    padding: .25em 0;
    margin: .3em;
    font-family: inherit;
    font-size: inherit;
    list-style-type: none;
    background: #fff;
    border: 1px solid #bebebe;
    border-radius: .2em;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .5);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .5);
}

.context-menu-item {
    position: relative;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    padding: .2em 2em;
    color: #2f2f2f;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #fff;
}

.context-menu-separator {
    padding: 0;
    margin: .35em 0;
    border-bottom: 1px solid #e6e6e6;
}

.context-menu-item > label > input,
.context-menu-item > label > textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.context-menu-item.context-menu-hover {
    color: #fff;
    cursor: pointer;
    background-color: #2980b9;
}

.context-menu-item.context-menu-disabled {
    color: #bbb;
    cursor: default;
    background-color: #fff;
}

.context-menu-input.context-menu-hover {
    color: #2f2f2f;
    cursor: default;
}

.context-menu-submenu:after {
    position: absolute;
    top: 50%;
    right: .5em;
    z-index: 1;
    width: 0;
    height: 0;
    content: '';
    border-color: transparent transparent transparent #2f2f2f;
    border-style: solid;
    border-width: .25em 0 .25em .25em;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/**
 * Inputs
 */
.context-menu-item.context-menu-input {
    padding: .3em .6em;
}

/* vertically align inside labels */
.context-menu-input > label > * {
    vertical-align: top;
}

/* position checkboxes and radios as icons */
.context-menu-input > label > input[type="checkbox"],
.context-menu-input > label > input[type="radio"] {
    position: relative;
    top: .12em;
    margin-right: .4em;
}

.context-menu-input > label {
    margin: 0;
}

.context-menu-input > label,
.context-menu-input > label > input[type="text"],
.context-menu-input > label > textarea,
.context-menu-input > label > select {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.context-menu-input > label > textarea {
    height: 7em;
}

.context-menu-item > .context-menu-list {
    top: .3em;
    /* re-positioned by js */
    right: -.3em;
    display: none;
}

.context-menu-item.context-menu-visible > .context-menu-list {
    display: block;
}

.context-menu-accesskey {
    text-decoration: underline;
}
