 #cesiumContainer {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000000;

    /* 禁止文字被鼠标选中 */
    moz-user-select: -moz-none;
    -moz-user-select: none;
    -o-user-select:none;
    -khtml-user-select:none;
    -webkit-user-select:none;
    -ms-user-select:none;
    user-select:none;
}

ul {
    list-style: none;
}

/*--------loading bar---------*/
.spinner {
    margin: auto;
    width: 60px;
    height: 60px;
    position: absolute ;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0
}

.container1 > div, .container2 > div, .container3 > div {
    width: 16px;
    height: 16px;
    /*background-color: #67cf22;*/
    background-color: #3498db;
    border-radius: 100%;
    position: absolute;
    -webkit-animation: bouncedelay 1.2s infinite ease-in-out;
    animation: bouncedelay 1.2s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.spinner .spinner-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.container2 {
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.container3 {
    -webkit-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
}

.circle1 { top: 0; left: 0; }
.circle2 { top: 0; right: 0; }
.circle3 { right: 0; bottom: 0; }
.circle4 { left: 0; bottom: 0; }

.container2 .circle1 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.container3 .circle1 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.container1 .circle2 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.container2 .circle2 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.container3 .circle2 {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.container1 .circle3 {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.container2 .circle3 {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.container3 .circle3 {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.container1 .circle4 {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.container2 .circle4 {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.container3 .circle4 {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

.param-container{
    background-color: rgba(38, 38, 38, 0.75);
    padding: 20px 20px 10px 20px;
    color: #ffffff;
    border: 1px solid #526f82;
}

.param-container .param-item{
    margin: 10px 0;
    overflow: hidden;
}

.tool-bar{
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 10000;
}

#toolbar table input{ /* 增大两行之间的间距 */
    margin: 10px 0px;
}

.drawCur{
    cursor: url(../images/cur/draw.cur), auto;
}

.measureCur{
    cursor: url(../images/cur/measure.cur), auto;
}

.handCursor{
    cursor: pointer;
}

/* -----------------图例控件 start------------------- */
.legend-item{
    margin-bottom: 0.3rem;
}

.legend-item>input[type=radio]{
    display: none;
}
.legend-item>label::before{
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: rgb(135, 147, 154);
    vertical-align: middle;
    margin-right: 1rem;
}
.legend-item>label{
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}
.legend-item > input[type=radio]:checked + label::before{
    background-color: rgb(255, 215, 0);
}

/* -----------------图例控件 end------------------- */

/* -----------------卷帘分割条 start------------------- */
#vertical-slider {
    position: absolute;
    left: 50%;
    top: 109px;
    background-color: #D3D3D3;
    width: 5px;
    height: 100%;
    z-index: 9999;
    display:none;
}
#horizontal-slider {
    position: absolute;
    left: 0;
    top: 50%;
    background-color: #D3D3D3;
    width: 100%;
    height: 5px;
    z-index: 9999;
}
#vertical-slider:hover {
    cursor: ew-resize;
}

#horizontal-slider:hover{
    cursor: ns-resize;
}

/* -----------------卷帘分割条 end------------------- */

@-webkit-keyframes bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0.0) }
    40% { -webkit-transform: scale(1.0) }
}

@keyframes bouncedelay {
    0%, 80%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 40% {
          transform: scale(1.0);
          -webkit-transform: scale(1.0);
      }
}
/*--------loading bar end---------*/

/*--------tooltip----------------*/
.twipsy {
    display: block;
    position: absolute;
    visibility: visible;
    max-width: 300px;
    min-width: 100px;
    padding: 5px;
    font-size: 11px;
    z-index: 1000;
    opacity: 0.8;
    -khtml-opacity: 0.8;
    -moz-opacity: 0.8;
    filter: alpha(opacity=80);
}
.twipsy.left .twipsy-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #000000;
}
.twipsy.right .twipsy-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid #000000;
}
.twipsy-inner {
    padding: 3px 8px;
    background-color: #000000;
    color: white;
    text-align: center;
    max-width: 300px;
    text-decoration: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.twipsy-arrow {
    position: absolute;
    width: 0;
    height: 0;
}
/*--------tooltip end------------*/

/*--------button start------------*/
.button{
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    text-shadow:1px 1px 1px #333;
    border-radius: 3px;
    margin:0 8px 8px 0;
    position: relative;
    overflow: hidden;
    padding: 0px 15px 0px 15px;
}
.button:nth-child(6n){
    margin-right: 0;
}
.button.black{
    border:1px solid #333;
    box-shadow: 0 1px 2px #8b8b8b inset,0 -1px 0 #3d3d3d inset,0 -2px 3px #8b8b8b inset;
    background: -webkit-linear-gradient(top,rgba(34, 34, 34, 0.49),rgba(51, 51, 51, 0.55));
    background: -moz-linear-gradient(top,#656565,#4a4a4a);
    background: linear-gradient(top,#656565,#4a4a4a);
}
.black:hover{
    background: -webkit-linear-gradient(top,#818181,#575757);
    background: -moz-linear-gradient(top,#818181,#575757);
    background: linear-gradient(top,#818181,#575757);
}
.black:active{
    top:1px;
    box-shadow: 0 1px 3px #111 inset,0 3px 0 #fff;
    background: -webkit-linear-gradient(top,#424242,#575757);
    background: -moz-linear-gradient(top,#424242,#575757);
    background: linear-gradient(top,#424242,#575757);
}
/*--------button end------------*/

/*-------- 字体 start ----------*/
@font-face {
    font-family: 'SM-Icon-Font';
    src: url('../fonts/iconfonts/iconfont.eot');
    src: url('../fonts/iconfonts/iconfont.eot?#iefix') format('embedded-opentype'), url('../fonts/iconfonts/iconfont.woff') format('woff'), url('../fonts/iconfonts/iconfont.ttf') format('truetype'), url('../fonts/iconfonts/iconfont.svg#flat-ui-icons-regular') format('svg');
}
[class^="smicon-"],
[class*="smicon-"] {
    font-family: 'SM-Icon-Font';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.btn [class^="smicon-"] {
    position: relative;
    top: 1px;
    margin: 0 1px;
    line-height: 1;
}
.smicon-layerlist:before {
    content: "\e6F8";
}
/*-------- 字体 end ----------*/

/*-------- 工具栏按钮 start -------*/
.tool-menu{
    position: absolute;
    left: 5px;
    top: 5px;
}

.tool-menu > a{
    padding: 10px 12px;
    float: left;
}

.tool-menu > a:hover{
    color : #fff;
}

.tool-menu-btn-group{
    display: inline-block;
}

.tool-menu-btn{
    display : inline-block;
    margin-bottom : 0;
    text-align : center;
    white-space : nowrap;
    touch-action : manipulation;
    cursor : pointer;
    -webkit-user-select : none;
    background-image : none;
    padding : 10px 12px;
    font-size : 15px;
    font-weight : 400;
    line-height : 1.4;
    border : none;
    vertical-align : middle;
    transition : border .25s linear,color .25s linear,background-color .25s linear;
    -webkit-font-smoothing : subpixel-antialiased;
    -webkit-transition : border .25s linear,color .25s linear,background-color .25s linear;
}
.tool-menu-btn:active{
    box-shadow : none;
}
.tool-menu-btn:hover,.tool-menu-btn:focus{
    color : #fff;
    outline : 0;
}
.tool-menu-btn-inverse {
    color : #2ec5ad;
    background-color: rgba(38, 38, 38, 0.75);
}

.tool-menu-btn-icon{
    font-size: 16px;
}
/*-------- 工具栏按钮 end --------*/
/*--------fui-icon  start----*/
@font-face {
    font-family: 'Flat-UI-Icons';
    src: url('../fonts/glyphicons/flat-ui-icons-regular.eot');
    src: url('../fonts/glyphicons/flat-ui-icons-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons/flat-ui-icons-regular.woff') format('woff'), url('../fonts/glyphicons/flat-ui-icons-regular.ttf') format('truetype'), url('../fonts/glyphicons/flat-ui-icons-regular.svg#flat-ui-icons-regular') format('svg');
}

[class^=fui-], [class*=fui-] {
    font-family: Flat-UI-Icons;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fui-plus:before {
    content: "\e608";
}

.fui-list-large-thumbnails:before {
    content: "\e61d";
}

.fui-list-small-thumbnails:before {
    content: "\e61c";
}

.fui-arrow-left:before {
    content: "\e606";
}

.fui-arrow-right:before {
    content: "\e607";
}

.fui-gear:before {
    content: "\e636";
}

.fui-user:before {
    content: "\e631";
}

.fui-cross:before {
    content: "\e609";
}

.fui-check:before {
    content: "\e60a";
}

.fui-star:before {
    content: "\2600";
}

.fui-cmd:before {
    content: "\e624";
}

.fui-expand:before{
    content: "\e61A";
}

.fui-export:before {
    content: "\e63c";
}

.fui-bubble:before {
    content: "\e63b";
}
/*--------fui-icon  end------*/
/*-------- 树形组件 start --------*/
.dropDown-container {
    display: block;
    position: absolute;
    top: 100%;
    box-sizing: border-box;
    left: 0;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    urser-select: none;
    -webkit-transition: visibility 0s 0.2s, opacity 0.2s ease-in,
    -webkit-transform 0.2s ease-in;
    -moz-transition: visibility 0s 0.2s, opacity 0.2s ease-in,
    -moz-transform 0.2s ease-in;
    transition: visibility 0s 0.2s, opacity 0.2s ease-in, transform 0.2s
    ease-in;
    -webkit-transform: translate(0, -20%);
    -moz-transform: translate(0, -20%);
    transfor: translate(0, -20%);
    opacity: 0;
    visibility: hidden;
    border: 1px solid #444;
    background-color: rgba(38, 38, 38, 0.75);
    margin: 9px;
    color: white;
    overflow: auto;
}

.dropDown-visible {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    transform: translate(0, 0);
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.2s ease-out, -webkit-transform 0.2s
    ease-out;
    -moz-transition: opacity 0.2s ease-out, -moz-transform 0.2s ease-out;
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.dropDown-container::-webkit-scrollbar {/*滚动条整体样式*/
    width: 10px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}
.dropDown-container::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: #535353;
}
.dropDown-container::-webkit-scrollbar-track {/*滚动条里面轨道*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: #EDEDED;
}
@media screen and (min-width: 1280px){
    .treeview-dropDown-container{
        max-height: 450px;
        width: 300px;
    }
}
@media screen and (min-width: 1680px){
    .treeview-dropDown-container{
        max-height: 760px;
        width: 340px;
    }
}
/*-------- 树形组件 end --------*/

/*--------折叠工具栏 start------*/
.params-setting-container {
    position: absolute;
    top: 30px;
    left: 30px;
    color: #ffffff;
}
.params-setting{
    overflow: auto;
    max-width: 340px;
    border: 1px solid #526f82;
    padding: 30px 20px 10px 20px;
    background-color: rgba(38, 38, 38, 0.75);
}
.params-setting-hide{
    padding: 0;
    height: 0;
    border: none;
    overflow: hidden;
}
.params-setting-anchor{
    position: absolute;
    left: 0;
    top: 0;
    width: 23px;
    height: 23px;
    cursor: pointer;
    border-right: 1px solid #526f82;
    border-bottom: 1px solid #526f82;
    background-color: rgba(38, 38, 38, 0.75);
    text-align: center;
}
.params-setting-anchor>span{
    height: 23px;
    line-height: 23px;
}
.param-item{
    margin-bottom: 15px;
}
.param-item>label, .param-item>input{
    vertical-align: middle;
    margin-right: 5px;
}

.params-setting td span{
    display: inline-block;
    margin: 0 0.5rem;
    min-width: 1.5rem;
}

.divider{
    height: 2px;
    background-color: #7c7c7c;
    margin: 15px 0 15px 0;
}
.params-setting::-webkit-scrollbar {/*滚动条整体样式*/
    width: 10px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}
.params-setting::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: #535353;
}
.params-setting::-webkit-scrollbar-track {/*滚动条里面轨道*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: #EDEDED;
}
#set-scan-direction{
    font-size: 0.8rem;
}
@media screen and (min-width: 1280px){
    body{
        font-size: 0.8rem;
    }
    .params-setting{
        max-height: 450px;
        /*width: 300px;*/
    }
}
@media screen and (min-width: 1680px){
    body{
        font-size: 0.9rem;
    }
    .params-setting{
        max-height: 760px;
        /*width: 340px;*/
    }
}

/*--------折叠工具栏 end------*/

/*--------treeview  start------*/
.treeview{
    color: #fff;
}
.node-layerTree:not(.node-disabled){
    border : none;
    padding: 0;
    font-size: 11pt;
}

.node-checked .squaredTwo input[type=checkbox] + label:after {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
}

.node-unchecked .squaredTwo input[type=checkbox] + label:after {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 0;
}
.node-layerTree:not(.node-disabled):hover{
    color: #000;
}
.list-group-item>.fui-cross{
    padding : 2px 7px;
    visibility : hidden;
    /* float : right; */
}
.list-group-item:hover>.fui-cross{
    visibility : visible;
}
.treeview .list-group-item{
    cursor:pointer;
}
.treeview span.indent{
    margin-left:10px;
    margin-right:10px;
}
.treeview span.icon{
    width:12px;
    margin-right:5px;
}
.treeview .node-disabled{
    color:silver;
    cursor:not-allowed;
}
/*--------treeview  end------*/

/*-------select-----------------*/
select.bs-select-hidden,
select.selectpicker {
    display: none !important;
}
.bootstrap-select {
    width: 220px;
    /*IE9 and below*/
}
.bootstrap-select > .dropdown-toggle {
    width: 100%;
    padding-right: 25px;
    z-index: 1;
}
.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active {
    color: #999;
}
.bootstrap-select > select {
    position: absolute !important;
    bottom: 0;
    left: 50%;
    display: block !important;
    width: 0.5px !important;
    height: 100% !important;
    padding: 0 !important;
    opacity: 0 !important;
    border: none;
}
.bootstrap-select > select.mobile-device {
    top: 0;
    left: 0;
    display: block !important;
    width: 100% !important;
    z-index: 2;
}
.has-error .bootstrap-select .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle {
    border-color: #b94a48;
}
.bootstrap-select.fit-width {
    width: auto !important;
}
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 220px;
}
.bootstrap-select .dropdown-toggle:focus {
    outline: thin dotted #333333 !important;
    outline: 5px auto -webkit-focus-ring-color !important;
    outline-offset: -2px;
}
.bootstrap-select.form-control {
    margin-bottom: 0;
    padding: 0;
    border: none;
}
/*.bootstrap-select.form-control:not([class*="col-"]) {
    width: 100%;
}*/
.bootstrap-select.form-control.input-group-btn {
    z-index: auto;
}
.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child) > .btn {
    border-radius: 0;
}
.bootstrap-select.btn-group:not(.input-group-btn),
.bootstrap-select.btn-group[class*="col-"] {
    float: none;
    display: inline-block;
    margin-left: 0;
}
.bootstrap-select.btn-group.dropdown-menu-right,
.bootstrap-select.btn-group[class*="col-"].dropdown-menu-right,
.row .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right {
    float: right;
}
.form-inline .bootstrap-select.btn-group,
.form-horizontal .bootstrap-select.btn-group,
.form-group .bootstrap-select.btn-group {
    margin-bottom: 0;
}
.form-group-lg .bootstrap-select.btn-group.form-control,
.form-group-sm .bootstrap-select.btn-group.form-control {
    padding: 0;
}
.form-group-lg .bootstrap-select.btn-group.form-control .dropdown-toggle,
.form-group-sm .bootstrap-select.btn-group.form-control .dropdown-toggle {
    height: 100%;
    font-size: inherit;
    line-height: inherit;
    border-radius: inherit;
}
.form-inline .bootstrap-select.btn-group .form-control {
    width: 100%;
}
.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group > .disabled {
    cursor: not-allowed;
}
.bootstrap-select.btn-group.disabled:focus,
.bootstrap-select.btn-group > .disabled:focus {
    outline: none !important;
}
.bootstrap-select.btn-group.bs-container {
    position: absolute;
    height: 0 !important;
    padding: 0 !important;
}
.bootstrap-select.btn-group.bs-container .dropdown-menu {
    z-index: 1060;
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
    display: inline-block;
    overflow: hidden;
    width: 100%;
    text-align: left;
}
.bootstrap-select.btn-group .dropdown-toggle .caret {
    position: absolute;
    top: 50%;
    right: 12px;
    margin-top: -2px;
    vertical-align: middle;
}
.bootstrap-select.btn-group[class*="col-"] .dropdown-toggle {
    width: 100%;
}
.bootstrap-select.btn-group .dropdown-menu {
    min-width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.bootstrap-select.btn-group .dropdown-menu.inner {
    position: static;
    float: none;
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.bootstrap-select.btn-group .dropdown-menu li {
    position: relative;
}
.bootstrap-select.btn-group .dropdown-menu li.active small {
    color: #fff;
}
.bootstrap-select.btn-group .dropdown-menu li.disabled a {
    cursor: not-allowed;
}
.bootstrap-select.btn-group .dropdown-menu li a {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.bootstrap-select.btn-group .dropdown-menu li a.opt {
    position: relative;
    padding-left: 2.25em;
}
.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
    display: none;
}
.bootstrap-select.btn-group .dropdown-menu li a span.text {
    display: inline-block;
}
.bootstrap-select.btn-group .dropdown-menu li small {
    padding-left: 0.5em;
}
.bootstrap-select.btn-group .dropdown-menu .notify {
    position: absolute;
    bottom: 5px;
    width: 96%;
    margin: 0 2%;
    min-height: 26px;
    padding: 3px 5px;
    background: #f5f5f5;
    border: 1px solid #e3e3e3;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    pointer-events: none;
    opacity: 0.9;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.bootstrap-select.btn-group .no-results {
    padding: 3px;
    background: #f5f5f5;
    margin: 0 5px;
    white-space: nowrap;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
    position: static;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
    position: static;
    top: auto;
    margin-top: -1px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
    position: absolute;
    display: inline-block;
    right: 15px;
    margin-top: 5px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
    margin-right: 34px;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
    z-index: 1061;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
    content: '';
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(204, 204, 204, 0.2);
    position: absolute;
    bottom: -4px;
    left: 9px;
    display: none;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
    position: absolute;
    bottom: -4px;
    left: 10px;
    display: none;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
    bottom: auto;
    top: -3px;
    border-top: 7px solid rgba(204, 204, 204, 0.2);
    border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
    bottom: auto;
    top: -3px;
    border-top: 6px solid white;
    border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
    right: 12px;
    left: auto;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
    right: 13px;
    left: auto;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
    display: block;
}
.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
    padding: 4px 8px;
}
.bs-actionsbox {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.bs-actionsbox .btn-group button {
    width: 50%;
}
.bs-donebutton {
    float: left;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.bs-donebutton .btn-group button {
    width: 100%;
}
.bs-searchbox + .bs-actionsbox {
    padding: 0 8px 4px;
}
.bs-searchbox .form-control {
    margin-bottom: 0;
    width: 100%;
    float: none;
}
.band1 {
    background: -webkit-linear-gradient(left, #95e8f9, #002794) !important;
}
.band2 {
    background: -webkit-linear-gradient(left, #a2fbc2, #ff6767) !important;
}
.band3 {
    background: -webkit-linear-gradient(left, #e6c6ff, #9d00ff) !important;
}
.band4 {
    background: -webkit-linear-gradient(left, #0909d4,#00a1ff 20%, #14bb12 40%, #dde007 60%, #d20f0f) !important;
}
.band5 {
    background: -webkit-linear-gradient(left, #baffe5, #1ab99c) !important;
}
.band5 {
    background: -webkit-linear-gradient(left, #baffe5, #1ab99c) !important;
}
.band6 {
    background: -webkit-linear-gradient(left, #93f602, #2fac01, #74cb01, #d0ef01, #e1ce01,#e16a01,#f70701) !important;
}
.label {
    display: inline;
    padding: .01em 3.5em .01em 3.5em;
    font-size: 150%;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
    line-height: 1.1;
}
#colorTable::before {
    content: attr(data-foo);
    color: black;
    font-size: 20px
}
/*-------select end-----------------*/

/*--------input start------------*/
.form-group {
    position: relative;
    font-size: 15px;
    color: white;
}
.form-group + .form-group {
    margin-top: 5px;
}
.form-group .form-label {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 12px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 13px;
}
.form-group .form-control {
    TEXT-ALIGN:center;
    width: 50px;
    z-index: 3;
    height: 18px;
    left:95px;
    top:0px;
    position: relative;
    background: none;
    border: none;
    padding: 5px 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-bottom: 1px solid #777;
}
.form-group .form-control:invalid {
    outline: none;
}
.form-group .form-control:focus, .form-group .form-control:valid {
    outline: none;
    color:beige;
    box-shadow: 0 1px white;
    border-color: white;
}
/*--------input end------------*/

/*-------slider --------------*/
/*-------slider end--------------*/

/*------------container-----------*/
.selectContainer{

}
.selectContainer::before{
    content: attr(name);
    color: black;
    position: absolute;
    left: -37%;
    white-space: nowrap;
}

.includeSlider{
    display: block;
    box-sizing: content-box;
    width: 200px;
    margin-top: 25px;
}
.includeSlider:after{
    content: attr(name);
    color: black;
    position: absolute;
    left: -50px;
    top: -10px;
    white-space: nowrap;
}
/*----------container---------------*/

/*---------progress bar-----------*/
#progressBar {
    width: 400px;
    height: 22px;
    border: 1px solid #111;
    background-color: #dad5d5;
}
#progressBar div {
    height: 100%;
    color: #fff;
    text-align: right;
    line-height: 22px;
    width: 0;
    background-color: #0099ff;
}
.jquery-ui-like {
    border-radius: 4px;
    background: #FFF;
    border: 1px solid #AAA;
    overflow: hidden;
}
/*---------progress bar end-----------*/

/*-------bubble------------------*/
.bubble {
    position: absolute;
    padding:0;
    margin: 0;
   /* background: #fff;*/
 /*
    max-height: 300px;
    border:1px solid #2563d2;*/
    /*overflow:hidden;
    background: rgba(15,46,109,0.8);*/
    z-index:11;
}
.bubble-header{ height: 35px; line-height: 35px; font-size:14px; background: rgba(11,30,31,0.7); color: #fff; padding: 0 5px 0 10px; }
.bubble-header span{ display: inline-block; width:70%; text-overflow: ellipsis; overflow:hidden;  white-space: nowrap; }
.bubble-header img{ float: right; margin-top:12px; cursor: pointer; margin-left: 30px; }
.nicktit{ height:35px; line-height: 35px; color: #fff;padding-left: 10px; border-bottom: 1px solid #00103b; font-size:16px; }
.bubble float{
    right: 2%;
    top: 2%;
}
.bubble:after {
    content: "";
    position: absolute;
    bottom: -32px;
    left: 8%;
    transform: translateX(-50%);
   /* border-width: 0 20px 50px 0px;
    border-top:30px solid rgba(4, 9, 51, 0.6);*/
    border-left:20px solid transparent;
    border-right:20px solid transparent;
    border-bottom:20px solid transparent;

    display: block;
    width: 0;
    height: 0;
}
.rebuilt:after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 18%;
    transform: translateX(-50%);
   /* border-width: 0 20px 50px 0px;
    border-top:30px solid rgba(11,30,31,0.7);*/
    border-left:20px solid transparent;
    border-right:20px solid transparent;
    border-bottom:20px solid transparent;

    display: block;
    width: 0;
    height: 0;
}
.bubble table{padding:0 10px; width: 100%; }
.bubble table tr{ height:40px; line-height: 40px;  }
.bubble table tr:nth-of-type(even){ background: rgba(3,16,53,0.8) }
.bubble table tr:nth-of-type(odd){ background: rgba(15,46,109,0.8) }
.bubble table tr td:nth-of-type(odd){ color:#fff; font-size: 16px; padding-left: 15px;  }
.bubble table tr td:nth-of-type(even){ color:#7bc6f6; font-size: 14px; padding-right: 10px; }
#viewcontent{ overflow-y: auto; background: rgba(15,46,109,0.8); color:#fff; line-height:25px; font-size:16px; padding:5px 0 10px;  }
.bubble .nickname{float:left; text-align:center; width: 25%; color:#fff;}
.nickname img{  width:35px; margin:5px 0;  }
.n-name{line-height:25px; font-size:14px; background: rgba(3,16,53,0.8);}
/* Border styles */
#tab thead, #tab tr {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgb(211, 202, 221);
}
#tab {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(211, 202, 221);
    height: 400px;
}

/* Padding and font style */
#tab td, #tab th {
    padding: 5px 10px;
    font-size: 12px;
    font-family: Verdana;
    color: rgb(95, 74, 121);
    border: 1px solid rgb(193, 168, 223);
}

/* Alternating background colors */
#tab tr:nth-child(even) {
    background: rgb(223, 216, 232)
}
#tab tr:nth-child(odd) {
    background: #FFF
}
.float{
    position: absolute;
    text-align: center;
    padding: 15px;
    margin: 0;
    background: #fff;
    max-width: 330px;
    max-height: 400px;
}
/*-------bubble  end------------------*/

/* .squaredTwo */
.squaredTwo {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    margin: 5px 5px;
    background: #fcfff4;
    background: -moz-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
    background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
    background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
    -moz-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
}
.squaredTwo label {
    width: 16px;
    height: 16px;
    cursor: pointer;
    position: absolute;
    left: 2px;
    top: 2px;
    background: -moz-linear-gradient(top, #222222 0%, #45484d 100%);
    background: -webkit-linear-gradient(top, #222222 0%, #45484d 100%);
    background: linear-gradient(to bottom, #222222 0%, #45484d 100%);
    -moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px white;
    -webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px white;
    box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px white;
}
.squaredTwo label:after {
    content: '';
    width: 9px;
    height: 5px;
    position: absolute;
    top: 4px;
    left: 4px;
    border: 3px solid #fcfff4;
    border-top: none;
    border-right: none;
    background: transparent;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.squaredTwo label:hover::after {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
    opacity: 0.3;
}
.squaredTwo input[type=checkbox] {
    visibility: hidden;
}
.squaredTwo input[type=checkbox] + label:after {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 0;
}
.squaredTwo input[type=checkbox]:checked + label:after {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
}
/* end .squaredTwo */

/***
Spectrum Colorpicker v1.3.4
https://github.com/bgrins/spectrum
Author: Brian Grinstead
License: MIT
***/

.sp-container {
    position:absolute;
    top:0;
    left:0;
    display:inline-block;
    *display: inline;
    *zoom: 1;
    /* https://github.com/bgrins/spectrum/issues/40 */
    z-index: 9999994;
    overflow: hidden;
}
.sp-container.sp-flat {
    position: relative;
}

/* Fix for * { box-sizing: border-box; } */
.sp-container,
.sp-container * {
    -webkit-box-sizing: content-box;
       -moz-box-sizing: content-box;
            box-sizing: content-box;
}

/* http://ansciath.tumblr.com/post/7347495869/css-aspect-ratio */
.sp-top {
  position:relative;
  width: 100%;
  display:inline-block;
}
.sp-top-inner {
   position:absolute;
   top:0;
   left:0;
   bottom:0;
   right:0;
}
.sp-color {
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:20%;
}
.sp-hue {
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:84%;
    height: 100%;
}

.sp-clear-enabled .sp-hue {
    top:33px;
    height: 77.5%;
}

.sp-fill {
    padding-top: 80%;
}
.sp-sat, .sp-val {
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
}

.sp-alpha-enabled .sp-top {
    margin-bottom: 18px;
}
.sp-alpha-enabled .sp-alpha {
    display: block;
}
.sp-alpha-handle {
    position:absolute;
    top:-4px;
    bottom: -4px;
    width: 6px;
    left: 50%;
    cursor: pointer;
    border: 1px solid black;
    background: white;
    opacity: .8;
}
.sp-alpha {
    display: none;
    position: absolute;
    bottom: -14px;
    right: 0;
    left: 0;
    height: 8px;
}
.sp-alpha-inner {
    border: solid 1px #333;
}

.sp-clear {
    display: none;
}

.sp-clear.sp-clear-display {
    background-position: center;
}

.sp-clear-enabled .sp-clear {
    display: block;
    position:absolute;
    top:0px;
    right:0;
    bottom:0;
    left:84%;
    height: 28px;
}

/* Don't allow text selection */
.sp-container, .sp-replacer, .sp-preview, .sp-dragger, .sp-slider, .sp-alpha, .sp-clear, .sp-alpha-handle, .sp-container.sp-dragging .sp-input, .sp-container button  {
    -webkit-user-select:none;
    -moz-user-select: -moz-none;
    -o-user-select:none;
    user-select: none;
}

.sp-container.sp-input-disabled .sp-input-container {
    display: none;
}
.sp-container.sp-buttons-disabled .sp-button-container {
    display: none;
}
.sp-palette-only .sp-picker-container {
    display: none;
}
.sp-palette-disabled .sp-palette-container {
    display: none;
}

.sp-initial-disabled .sp-initial {
    display: none;
}


/* Gradients for hue, saturation and value instead of images.  Not pretty... but it works */
.sp-sat {
    background-image: -webkit-gradient(linear,  0 0, 100% 0, from(#FFF), to(rgba(204, 154, 129, 0)));
    background-image: -webkit-linear-gradient(left, #FFF, rgba(204, 154, 129, 0));
    background-image: -moz-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
    background-image: -o-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
    background-image: -ms-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
    background-image: linear-gradient(to right, #fff, rgba(204, 154, 129, 0));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr=#FFFFFFFF, endColorstr=#00CC9A81)";
    filter : progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr='#FFFFFFFF', endColorstr='#00CC9A81');
}
.sp-val {
    background-image: -webkit-gradient(linear, 0 100%, 0 0, from(#000000), to(rgba(204, 154, 129, 0)));
    background-image: -webkit-linear-gradient(bottom, #000000, rgba(204, 154, 129, 0));
    background-image: -moz-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
    background-image: -o-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
    background-image: -ms-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
    background-image: linear-gradient(to top, #000, rgba(204, 154, 129, 0));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00CC9A81, endColorstr=#FF000000)";
    filter : progid:DXImageTransform.Microsoft.gradient(startColorstr='#00CC9A81', endColorstr='#FF000000');
}

.sp-hue {
    background: -moz-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: -ms-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: -o-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#ff0000), color-stop(0.17, #ffff00), color-stop(0.33, #00ff00), color-stop(0.5, #00ffff), color-stop(0.67, #0000ff), color-stop(0.83, #ff00ff), to(#ff0000));
    background: -webkit-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
}

/* IE filters do not support multiple color stops.
   Generate 6 divs, line them up, and do two color gradients for each.
   Yes, really.
 */
.sp-1 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0000', endColorstr='#ffff00');
}
.sp-2 {
    height:16%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff00', endColorstr='#00ff00');
}
.sp-3 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ff00', endColorstr='#00ffff');
}
.sp-4 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffff', endColorstr='#0000ff');
}
.sp-5 {
    height:16%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0000ff', endColorstr='#ff00ff');
}
.sp-6 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00ff', endColorstr='#ff0000');
}

.sp-hidden {
    display: none !important;
}

/* Clearfix hack */
.sp-cf:before, .sp-cf:after { content: ""; display: table; }
.sp-cf:after { clear: both; }
.sp-cf { *zoom: 1; }

/* Mobile devices, make hue slider bigger so it is easier to slide */
@media (max-device-width: 480px) {
    .sp-color { right: 40%; }
    .sp-hue { left: 63%; }
    .sp-fill { padding-top: 60%; }
}
.sp-dragger {
   border-radius: 5px;
   height: 5px;
   width: 5px;
   border: 1px solid #fff;
   background: #000;
   cursor: pointer;
   position:absolute;
   top:0;
   left: 0;
}
.sp-slider {
    position: absolute;
    top:0;
    cursor:pointer;
    height: 3px;
    left: -1px;
    right: -1px;
    border: 1px solid #000;
    background: white;
    opacity: .8;
}

/*
Theme authors:
Here are the basic themeable display options (colors, fonts, global widths).
See http://bgrins.github.io/spectrum/themes/ for instructions.
*/

.sp-container {
    border-radius: 0;
    background-color: #ECECEC;
    border: solid 1px #f0c49B;
    padding: 0;
}
.sp-container, .sp-container button, .sp-container input, .sp-color, .sp-hue, .sp-clear
{
    font: normal 12px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.sp-top
{
    margin-bottom: 3px;
}
.sp-color, .sp-hue, .sp-clear
{
    border: solid 1px #666;
}

/* Input */
.sp-input-container {
    float:right;
    width: 100px;
    margin-bottom: 4px;
}
.sp-initial-disabled  .sp-input-container {
    width: 100%;
}
.sp-input {
   font-size: 12px !important;
   border: 1px inset;
   padding: 4px 5px;
   margin: 0;
   width: 100%;
   background:transparent;
   border-radius: 3px;
   color: #222;
}
.sp-input:focus  {
    border: 1px solid orange;
}
.sp-input.sp-validation-error
{
    border: 1px solid red;
    background: #fdd;
}
.sp-picker-container , .sp-palette-container
{
    float:left;
    position: relative;
    padding: 10px;
    padding-bottom: 300px;
    margin-bottom: -290px;
}
.sp-picker-container
{
    width: 172px;
    border-left: solid 1px #fff;
}

/* Palettes */
.sp-palette-container
{
    border-right: solid 1px #ccc;
}

.sp-palette .sp-thumb-el {
    display: block;
    position:relative;
    float:left;
    width: 24px;
    height: 15px;
    margin: 3px;
    cursor: pointer;
    border:solid 2px transparent;
}
.sp-palette .sp-thumb-el:hover, .sp-palette .sp-thumb-el.sp-thumb-active {
    border-color: orange;
}
.sp-thumb-el
{
    position:relative;
}

/* Initial */
.sp-initial
{
    float: left;
    border: solid 1px #333;
}
.sp-initial span {
    width: 30px;
    height: 25px;
    border:none;
    display:block;
    float:left;
    margin:0;
}

.sp-initial .sp-clear-display {
    background-position: center;
}

/* Buttons */
.sp-button-container {
    float: right;
}

/* Replacer (the little preview div that shows up instead of the <input>) */
.sp-replacer {
    margin:0;
    overflow:hidden;
    cursor:pointer;
    padding: 4px;
    display:inline-block;
    *zoom: 1;
    *display: inline;
    border: solid 1px #91765d;
    background: #eee;
    color: #333;
    vertical-align: middle;
}
.sp-replacer:hover, .sp-replacer.sp-active {
    border-color: #F0C49B;
    color: #111;
}
.sp-replacer.sp-disabled {
    cursor:default;
    border-color: silver;
    color: silver;
}
.sp-dd {
    padding: 2px 0;
    height: 16px;
    line-height: 16px;
    float:left;
    font-size:10px;
}
.sp-preview
{
    position:relative;
    width:25px;
    height: 20px;
    border: solid 1px #222;
    margin-right: 5px;
    float:left;
    z-index: 0;
}

.sp-palette
{
    *width: 220px;
    max-width: 220px;
}
.sp-palette .sp-thumb-el
{
    width:16px;
    height: 16px;
    margin:2px 1px;
    border: solid 1px #d0d0d0;
}

.sp-container
{
    padding-bottom:0;
}


/* Buttons: http://hellohappy.org/css3-buttons/ */
.sp-container button {
  background-color: #eeeeee;
  background-image: -webkit-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -moz-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -ms-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -o-linear-gradient(top, #eeeeee, #cccccc);
  background-image: linear-gradient(to bottom, #eeeeee, #cccccc);
  border: 1px solid #ccc;
  border-bottom: 1px solid #bbb;
  border-radius: 3px;
  color: #333;
  font-size: 14px;
  line-height: 1;
  padding: 5px 4px;
  text-align: center;
  text-shadow: 0 1px 0 #eee;
  vertical-align: middle;
}
.sp-container button:hover {
    background-color: #dddddd;
    background-image: -webkit-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: -moz-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: -ms-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: -o-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: linear-gradient(to bottom, #dddddd, #bbbbbb);
    border: 1px solid #bbb;
    border-bottom: 1px solid #999;
    cursor: pointer;
    text-shadow: 0 1px 0 #ddd;
}
.sp-container button:active {
    border: 1px solid #aaa;
    border-bottom: 1px solid #888;
    -webkit-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    -moz-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    -ms-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    -o-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
}
.sp-cancel
{
    font-size: 11px;
    color: #d93f3f !important;
    margin:0;
    padding:2px;
    margin-right: 5px;
    vertical-align: middle;
    text-decoration:none;

}
.sp-cancel:hover
{
    color: #d93f3f !important;
    text-decoration: underline;
}


.sp-palette span:hover, .sp-palette span.sp-thumb-active
{
    border-color: #000;
}

.sp-preview, .sp-alpha, .sp-thumb-el
{
    position:relative;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
}
.sp-preview-inner, .sp-alpha-inner, .sp-thumb-inner
{
    display:block;
    position:absolute;
    top:0;left:0;bottom:0;right:0;
}

.sp-palette .sp-thumb-inner
{
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.sp-palette .sp-thumb-light.sp-thumb-active .sp-thumb-inner
{
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeNpiYBhsgJFMffxAXABlN5JruT4Q3wfi/0DsT64h8UD8HmpIPCWG/KemIfOJCUB+Aoacx6EGBZyHBqI+WsDCwuQ9mhxeg2A210Ntfo8klk9sOMijaURm7yc1UP2RNCMbKE9ODK1HM6iegYLkfx8pligC9lCD7KmRof0ZhjQACDAAceovrtpVBRkAAAAASUVORK5CYII=);
}

.sp-palette .sp-thumb-dark.sp-thumb-active .sp-thumb-inner
{
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAMdJREFUOE+tkgsNwzAMRMugEAahEAahEAZhEAqlEAZhEAohEAYh81X2dIm8fKpEspLGvudPOsUYpxE2BIJCroJmEW9qJ+MKaBFhEMNabSy9oIcIPwrB+afvAUFoK4H0tMaQ3XtlrggDhOVVMuT4E5MMG0FBbCEYzjYT7OxLEvIHQLY2zWwQ3D+9luyOQTfKDiFD3iUIfPk8VqrKjgAiSfGFPecrg6HN6m/iBcwiDAo7WiBeawa+Kwh7tZoSCGLMqwlSAzVDhoK+6vH4G0P5wdkAAAAASUVORK5CYII=);
}

.sp-clear-display {
    background-repeat:no-repeat;
    background-position: center;
    background-image: url(data:image/gif;base64,R0lGODlhFAAUAPcAAAAAAJmZmZ2dnZ6enqKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq/Hx8fLy8vT09PX19ff39/j4+Pn5+fr6+vv7+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAP8ALAAAAAAUABQAAAihAP9FoPCvoMGDBy08+EdhQAIJCCMybCDAAYUEARBAlFiQQoMABQhKUJBxY0SPICEYHBnggEmDKAuoPMjS5cGYMxHW3IiT478JJA8M/CjTZ0GgLRekNGpwAsYABHIypcAgQMsITDtWJYBR6NSqMico9cqR6tKfY7GeBCuVwlipDNmefAtTrkSzB1RaIAoXodsABiZAEFB06gIBWC1mLVgBa0AAOw==);
}
/******ColorPicker end*******/
/******TabMenu*******/
        .tabMenu {
            width: 270px;
            margin: 0 auto;
            border: 1px solid #526f82;
            color: #ffffff;
            font-size: 10pt;
            padding: 1em;
            background-color: rgba(38, 38, 38, 0.75);
        }

        .tabMenu section {
        display: none;
        padding: 0px 0 0;
        border-top: 1px solid #ddd;
        }

        .tabMenu input[type=radio]{
        display: none;
        }
        .tabMenu label {
        display: inline-block;
        margin: 0 0 -1px;
        padding: 5px 5px;
        font-size : 10px;
        border: 1px solid transparent;
        color: #fff;
        }

        .tabMenu label:before {
        font-family: fontawesome;
        font-weight: normal;
        margin-right: 10px;
        }
        .tabMenu input:checked + label {
            color: #2ec5ad;
            cursor: default;
            border-bottom: 1px solid #2ec5ad;
            font-weight: bold;
        }
         .tabMenu select{
            width: 93%;
            height: 30px;
            color: lightgray;
            background-color: #333;
            border: 1px solid #686363;
            padding: 0px 3px;
            margin-bottom: 0
        }
        #tab1:checked ~ #content1,
        #tab2:checked ~ #content2,
        #tab3:checked ~ #content3,
        #tab4:checked ~ #content4 {
        display: block;
        }

        @media screen and (max-width: 650px) {
        label {
            font-size: 10px;
        }

        label:before {
            color: #fff;
        }
        }
        .tabMenu section label{
            width: 100%;
            color: lightgrey;
            margin: 0px 5px -5px 0px;
            line-height: 1.5;
            font-size: 10px;
        }
        .tabMenu section input[type=range]{
            color: grey;
            background: darkgrey;
            width: 94%;
            margin-bottom: 10px;
        }

        .tabMenu section input[type=text] {
            margin: 2.5px;
            width: 45%;
            background: rgba(0,0,0,0);
            border: none;
            color: lightgrey;
            text-align: center;
            border-radius: 1px;
            border-bottom: 1px solid;
        }
        .btn-info {
            display: inline-block;
            padding: 4px 12px;
            margin: 10px 2px 0px 2px;
            font-size: 14px;
            line-height: 20px;
            text-align: center;
            color: darkgrey;
            border: 1px solid #686363;
            vertical-align: middle;
            cursor: pointer;
            border-radius: 0px;
            background: rgba(38, 38, 38, 0.21);
        }
/********/

.applyImg{width: 88px; height: 30px; position: absolute; z-index: 1000; top: 80px; left: 30px; background-color: #D9D8D7; opacity: 0.8; text-indent: 11px; line-height: 30px; font-size: 15px;  }
.applyImg:hover{cursor:pointer;}
.closeDiv{width: 152px; height: 30px; position: absolute; z-index: 1000; top: 80px; left: 118px; opacity: 0.8; background-color: #D9D8D7;}
.closeImg{width: 25px; height: 25px; position: absolute; left: 125px; background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAYAAADE6YVjAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAFgSURBVHja7JVLSwJhFIbfiX5CA5NIQcKYl2ljm7IL1d5w3JTdIFsWbRODQrEL0SIy25ZEQn+oErQfYDsH5lLT28qhTTORGAS+cDbn8H3P+V7O4RNIotvqwx+oB+lBuqd+t2L1ocqXRh2tlobj4onwtZbbz9IwTYRDYWQ2twRXCslvo1DMUxlTKAdlXpYu2M6Xr0sMBEbo9/uZ2dqk2x0k3e0ydB2WaaH2XMPO9q6TvyqVUa838Pb+Bk3TvP3y6uLs/JQACIBqSmViMUFRFAmAK6tpz1eQ9Ia0Q1WTDmwyPsGfnvO066vsD/v34+XVxd19hVElQlEcYHwqzpnZaQ4PDzGqRJjN7XVu12H+gHJQdmxq50dDowRAn2+Qy+mlzqbLMk0YugFpUML6xpqTV1NJSJIEy7LQfG12toyyLGN+YQ66oeP2puIsXLFwJDw9PtG2bcTGY54Qofcz9iD/G/I5AOJ+kRqo/hsiAAAAAElFTkSuQmCC);}
.closeImg:hover{cursor:pointer;}

.applyContainer{width: 240px; height: 500px; position: absolute; z-index: 1000; top: 110px; left: 30px; box-shadow: 0px 0px 30px #FFFFFF; font-size: 13px;background-color: rgba(255, 255, 255, 0.3)}
.title {
    /*font-size: 14px;
    color: #00B5AD;
    text-align: center;*/
}
.title:after{
    /*content: ' ';
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 10px;
    background: -moz-linear-gradient(left, rgba(147,184,189,0) 0%, rgba(147,184,189,0.8) 20%, rgba(147,184,189,1) 53%, rgba(147,184,189,0.8) 79%, rgba(147,184,189,0) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(147,184,189,0)), color-stop(20%,rgba(147,184,189,0.8)), color-stop(53%,rgba(147,184,189,1)), color-stop(79%,rgba(147,184,189,0.8)), color-stop(100%,rgba(147,184,189,0)));
    background: -webkit-linear-gradient(left, rgba(147,184,189,0) 0%,rgba(147,184,189,0.8) 20%,rgba(147,184,189,1) 53%,rgba(147,184,189,0.8) 79%,rgba(147,184,189,0) 100%);
    background: -o-linear-gradient(left, rgba(147,184,189,0) 0%,rgba(147,184,189,0.8) 20%,rgba(147,184,189,1) 53%,rgba(147,184,189,0.8) 79%,rgba(147,184,189,0) 100%);
    background: -ms-linear-gradient(left, rgba(147,184,189,0) 0%,rgba(147,184,189,0.8) 20%,rgba(147,184,189,1) 53%,rgba(147,184,189,0.8) 79%,rgba(147,184,189,0) 100%);
    background: linear-gradient(left, rgba(147,184,189,0) 0%,rgba(147,184,189,0.8) 20%,rgba(147,184,189,1) 53%,rgba(147,184,189,0.8) 79%,rgba(147,184,189,0) 100%);*/
}

@CHARSET "UTF-8";
/* 保护区基础信息 */
ul{
  margin:0;
}
.pop-up1{
	left:480px;
	top:77px;
 	/* width:380px; */
	height:100%;
}
.pop-up1 .pop-title{
	width: 380px;
	height: 30px;
	background: rgba(0,0,0,.1);
	border-bottom: 1px solid #e6e8ea;
	box-sizing: border-box;
}
.pop-up1 .pop-title .title{
	font-size:14px;
	padding: 0 10px;
	height:30px;
	line-height:30px;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
	position: relative;
	color:#ffffff;
}
.pop-up1 .pop-title .title .pop-close{
	display: block;
	width: 10px;
	height:10px;
	position: absolute;
	right:10px;
	top:50%;
	transform: translateY(-50%);
	z-index:100;
	cursor:pointer;
}
.pop-up1 .pop-title .title .pop-close img{
	display: block;
	width: 10px;
	height: 10px;
}
.pop-up1 .pop-content{
	/* padding-top: 15px; */
	position: relative;
}
.pop-up1 .pop-content ul{
	width: 100%;
	padding: 0 10px;
}
.pop-up1 .pop-content ul.TypeOne{ padding:0; }
.pop-up1 .pop-content ul li{
	width:100%;
	height:30px;
	margin:0 auto;
	line-height:30px;
	font-size:16px;
}
.pop-up1 .pop-content ul li .pop-name{
	width: 80px;
	float: left;
	text-align: right;
}
.pop-up1 .pop-content ul li .pop-con{
	width: 150px;
	float: left;
	white-space:nowrap;
 	overflow:hidden;
 	text-overflow:ellipsis;
}
.pop-up1 .pop-content .pop-img{
	width: 130px;
	height: 180px;
	float: right;
	margin: 0 10px;
	cursor: pointer;
}
.pop-up1 .pop-content .status{
	width: 70px;
	height: 20px;
	line-height: 20px;
	background: #fff;
	color: #5da57f;
	border: 1px solid #5da57f;
	box-sizing: border-box;
	text-align: center;
	font-size: 14px;
	position: absolute;
	top: 170px;
    right: 38px;
	z-index: 99;
	border-radius: 4px;

}
.pop-up1 .pop-content .link{
	clear: both;
	width: 400px;
	overflow: hidden;
	padding: 15px 0;

}
.pop-up1 .pop-content .link .more,.pop-up1 .pop-content .link .gohere{
	width: 200px;
	float: left;
}
.pop-up1 .pop-content .link .more a{
	display: block;
	width: 100px;
	height: 30px;
	line-height: 30px;
	background: #88cc81;
	color: #fff;
	margin: 0 auto;
	border-radius: 4px;
	text-align: center;
}
.pop-up1 .pop-content .link .gohere a{
	display: block;
	width: 100px;
	height: 30px;
	line-height: 30px;
	color: #5da57f;
	margin: 0 auto;
	text-align: center;
	text-decoration: underline;
	font-size: 16px;
}
 .ol-popup {
    position: absolute;
    /*background-color: rgba(255,255,255,.8);*/
    border-radius: 5px;
    bottom: 15px;
    left: -15px;
    /*min-width: 280px;*/
    z-index: 101;
    /*box-shadow: 0 0 10px rgba(74,74,74,.3);*/
}

.ol-popup:after, .ol-popup:before {
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    display: none;
}

.ol-popup:after {
    border-top-color: white;
    border-width: 10px;
    left: 48px;
    margin-left: -10px;
}

.ol-popup:before {
    border-top-color: #cccccc;
    border-width: 11px;
    left: 48px;
    margin-left: -11px;
}
#newPatrol #newAddCon.ol-popup:after, #newPatrol #newAddCon.ol-popup:before{ border:none; }
.pop-info{
	width: 700px;
	height: 800px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 999;
	border-radius: 5px;
    background: rgba(255,255,255,1);
    box-shadow: 0 0 10px rgba(74,74,74,.3);
    display: none;
}
.pop-info .pop-info-title{
	width: 700px;
	height: 40px;
	background: rgba(246,247,248,.7);
	border-bottom: 1px solid #e6e8ea;
	box-sizing: border-box;
	position: relative;
}
.pop-info .pop-info-title .title{
	font-size:18px;
	font-family:"微软雅黑";
	padding: 0 10px;
	height:40px;
	line-height:40px;
	font-weight:bold;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.pop-info .pop-info-title .pop-close{
	display: block;
	width: 10px;
	height:10px;
	position: absolute;
	right:10px;
	top:50%;
	transform: translateY(-50%);
	z-index:100;
	cursor:pointer;
}
.pop-info .pop-info-title .pop-close img{
	display: block;
	width: 10px;
	height: 10px;
}
.pop-info .pop-info-con{
	width: 700px;
	height: 740px;
}
.pop-info .pop-info-con .img-list{
	width: 680px;
	height: 135px;
	margin: 0 10px 10px 10px;
	overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
}
.pop-info .pop-info-con .img-list ul{
	width: 10000px;
}
.pop-info .pop-info-con .img-list ul li{
	float: left;
	width: 160px;
	height: 90px;
	margin-right: 10px;
	margin: 22.5px 10px 22.5px 0;
}
.pop-info .pop-info-con .img-list ul li img{
	width: 160px;
	height: 90px;
}
.pop-info .pop-info-con .con{
	width: 100%;
}
.pop-info .pop-info-con .con .con-name{
	margin: 0px auto;
    width: 100%;
    height: 40px;
    padding: 0 10px;
    background: #f6f7f8;
    border-top: 1px solid #e6e8ea;
    border-bottom: 1px solid #e6e8ea;
    box-sizing: border-box;
}
.pop-info .pop-info-con .con .con-name span{
	line-height: 40px;
    font-size: 16px;
    color: #5da57f;
}
.pop-info .pop-info-con .con .con-name span .line{
	display: block;
    float: left;
    width: 4px;
    height: 16px;
    background: #5da57f;
    margin-top: 12px;
    margin-right: 5px;
}
.pop-info .pop-info-con .con .con-list{
    padding: 10px;
    overflow: hidden;
}
.pop-info .pop-info-con .con .con-list li{
	width: 33.33%;
	float: left;
	margin-bottom: 5px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	cursor: pointer;
	font-size: 14px;
	line-height: 1.4;
}
.pop-info .pop-info-con .con .con-list li b{
	font-size: 14px;
}
.pop-info .pop-info-con .con .con-list li.width100{
	width: 100%;
}
.pop-info .pop-info-con .con .con-list li.width66{
	width: 66.66%;
}

/*列表弹层点击列表图变大*/
.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
    display: none;
}
.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
    display: none;
}

#slider{position:fixed;top:0;left:0;z-index:1000;width:100%;height:100%;display: none;}
#slider .slider-bg{background:rgba(0,0,0,0.7);width: 100%;height: 100%;position: absolute;}
#slider .swiper-container{position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);}
#slider .swiper-container .swiper-slide{width: 100% !important;margin: 0 auto;}
#slider .swiper-container .swiper-slide img{margin: 0 auto;display: block;height: 100%;}
.swiper-button-next, .swiper-button-prev{width: 50px;height: 130px;background-size: 50px 130px;}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev{background-image: url("../images/deep2dimages/informationspace/slide-next.png");right: 5%;}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next{background-image: url("../images/deep2dimages/informationspace/slide-prev.png");left: 5%;}
.swiper-button-next:hover,.swiper-button-next:active{background-image: url("../images/deep2dimages/informationspace/slide-next-active.png");}
.swiper-button-prev:hover,.swiper-button-prev:active{background-image: url("../images/deep2dimages/informationspace/slide-prev-active.png");}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{opacity: 1;pointer-events: auto;}
.swiper-button-next.swiper-button-disabled{background-image: url("../images/deep2dimages/informationspace/slide-next-disabled.png");}
.swiper-button-prev.swiper-button-disabled{background-image: url("../images/deep2dimages/informationspace/slide-prev-disabled.png");}
.swiper-pagination{bottom: 5%;left: 50%; right:0;transform: translateX(-50%);color: #fff;font-size: 28px; width:200px;}

/*人员信息弹窗*/
.tipuser-info .swiper-button-prev{
  background: url("../../../image/lastpage.png") no-repeat;
  left:0;
}
.tipuser-info .swiper-button-prev:hover{
  background: url("../../../image/lastpage-active.png") no-repeat;
  left:0;
}
.tipuser-info .swiper-button-next{
  background: url("../../../image/nextp.png") no-repeat;
  right:0;
}
.tipuser-info .swiper-button-next:hover{
  background: url("../../../image/nextp-active.png") no-repeat;
  right:0;
}
.zaixian-li{
  position:relative;
}
.zaixian-li span{
  display:none;
  position:absolute;
  right:-5px;
  top:-5px;
  background:orange;
  text-align: center;
  line-height: 18px;
  width:18px;
  height:18px;
  border-radius:50%;
  color:#fff;
  font-size:10px;
}
.swiper-index{ text-align:right; color:#fff; }
.tipuserinfo,.tipgridinfo{
    width: 250px;
    background: rgba(13,13,13,.85);
    border-radius: 4px;
    border: 1px solid rgba(73,87,98,0.75);
    box-sizing: border-box;
    padding:10px;
    color:#fff;
}
.tiptime{
  /*height:31px; width:114px;*/
  height:46px; width:170px;
  background:url('../../deep2dimages/animal/time-bg.png') center no-repeat;
  background-size:100% 100%;
}
.record-time{ color:#653E3B; font-size:14px; font-weight: bold; text-align: center; padding-left:18px;padding-top: 7px; line-height:28px; }
.record-content{ 
    color:#653E3B; font-size:12px; font-weight: bold; text-align: center; padding-left:23px; 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 0;
    height: 100%;
}
.record-content span{
   display:block;
 }
 .record-content span:first-child{
    margin-top: -6px;
 }
.record-content .text-ellipsis {
   /* flex: 0.8; */
   white-space: nowrap;    /* 不换行 */
   overflow: hidden;       /* 超出隐藏 */
   text-overflow: ellipsis;/* 末尾... */
 }
.tipuser-info{
  min-height:200px;
}
.tipgridinfo{
  width:400px;
  overflow:hidden;
}
.grid-left{
  width:210px;
  float:left;
  margin-top:15px;
}
.tipgridinfo .popBody{
  float:right;
  width:160px;
  margin-top:15px;
  margin-bottom:0;
}
.tipgridinfo .popBody li{
  width:80px;
  float:left;
  text-align:center;
}
.tipgridinfo .popBody li p{
  color:#fff;
  line-height:40px;
  text-align:center;
  margin-bottom:0;
}
.tipgridinfo .popBody img{
  width:60px;
  height:60px;
  border-radius:50%;
}
.handle-a,.handle-a:hover{
  color:orange;
  text-decoration: underline;
  padding-left:10px;
}
.infonone{
  font-size:14px;
  color:#fff;
  text-align:center;
  line-height:60px;
}
.grid-left p{
  margin-bottom:0;
  font-size:14px;
  color:#fff;
  line-height:30px;
  padding-left:10px;
}
.tipreportinfo{
  width: 500px;
  background: rgba(255,255,255,0.8);
  border-radius: 4px;
  padding-bottom:20px;
  box-sizing: border-box;
  color:#fff;
}
.swiper-slide p{
  margin-bottom:0;
}
.tipreportinfo .swiper-slide{
 height:80px;
  line-height:80px;
  text-align:center;
}
.tipreportinfo .swiper-slide img{
  max-width:100%;
  max-height:100%;
}
.pop-up1 .pop-content ul li .person-travel{
  background:url(../../../image/travel-close.png) no-repeat;
  width:36px;
  height:16px;
  display:inline-block;
  cursor: pointer;
margin-top:4px;
}
.pop-up1 .pop-content ul li .person-travel.active{
  background:url(../../../image/travel-open.png) no-repeat;
  width:36px;
  height:16px;
  margin-top:4px;
  cursor: pointer;

}
.tipuserinfo .popBody{ margin-bottom:0; }
.pop-up1.tipuserinfo .pop-title{
	width: 280px;
	border:none;
	color: #fff;
	background: none;
    border-bottom: 1px solid #516078;
    box-sizing: border-box;
}
.pop-up1.tipuserinfo .pop-title .title{
	font-size: 16px;
}
.user-tip-none{
  color:#fff;
  text-align: center;
  line-height:160px;
}
.pop-up1.tipuserinfo .pop-content ul li{
	color: #fff;
	overflow: hidden;
	font-size: 15px;
  overflow:hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -ms-word-wrap: nowrap;
  white-space: nowrap;
}
.tipuser-info .pop-content ul li{
  height: 24px;
  line-height: 24px;
}
.pop-up1 .tipuserinfo .pop-content ul li span{
	/*width: 80px;*/
	height: 24px;
	line-height: 24px;
	/*float: left;*/
  text-align: left;
 font-size:14px;
}
.pop-up1.tipuserinfo .pop-content ul li p{
	width: 175px;
	height: 30px;
	line-height: 30px;
	float: left;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-bottom: 0;
}

/*************左侧测量弹窗*************/
.popup-measure{
	width: 250px;
	height: 100px;
	position: absolute;
    top: 60px;
    left: 60px;
    z-index: 10;
    background: rgba(255,255,255,.8);
    display: none;
}
.popup-measure .popup-header{
	width: 100%;
    height: 30px;
    padding: 0 10px;
    overflow: hidden;
    background: rgba(0,0,0,.1);
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
}
.popup-measure .popup-header .popup-title{
    width: 80%;
    height: 100%;
    float: left;
    line-height: 30px;
    font-size: 14px;
}
.popup-measure .popup-header #close-popup-measure{
	width: 30px;
	height: 30px;
	float: right;
	cursor: pointer;
}
.popup-measure .popup-header #close-popup-measure img{
	margin: 9px 0 9px 18px;
}
.popup-measure .popup-con{
	width: 100%;
	height: 70px;
}
.popup-measure .popup-con .btn-con{
	width: 230px;
	height: 30px;
	margin: 20px auto;
}
.popup-measure .popup-con .btn-con .popup-btn{
	width: 70px;
	height: 30px;
	float: left;
	margin-right: 10px;
	cursor: pointer;
}
.popup-measure .popup-con .btn-con .popup-btn .icon{
	display: block;
	width: 70px;
	height: 30px;
	line-height: 30px;
	color: #fff;
	border-radius: 3px;
	padding-left: 30px;
	font-size: 14px;
}
.popup-measure .popup-con .btn-con .popup-btn .icon#icon-ranging{
	background: #3b91ef url("../deep2dimages/informationspace/icon-ranging.png") no-repeat 4px 50%;
	background-size: 20px 20px;
}
.popup-measure .popup-con .btn-con .popup-btn .icon#icon-ranging:hover{
	background: #f2a717 url("../deep2dimages/informationspace/icon-ranging.png") no-repeat 4px 50%;
}
.popup-measure .popup-con .btn-con .popup-btn .icon#icon-ranging.active{
	background: #f2a717 url("../deep2dimages/informationspace/icon-ranging.png") no-repeat 4px 50%;
}

.popup-measure .popup-con .btn-con .popup-btn .icon#icon-measuring{
	background: #3b91ef url("../deep2dimages/informationspace/icon-measuring.png") no-repeat 4px 50%;
	background-size: 20px 20px;
}
.popup-measure .popup-con .btn-con .popup-btn .icon#icon-measuring:hover{
	background: #f2a717 url("../deep2dimages/informationspace/icon-measuring.png") no-repeat 4px 50%;
}
.popup-measure .popup-con .btn-con .popup-btn .icon#icon-measuring.active{
	background: #f2a717 url("../deep2dimages/informationspace/icon-measuring.png") no-repeat 4px 50%;
}

.popup-measure .popup-con .btn-con .popup-btn .icon#icon-clean{
	background: #3b91ef url("../deep2dimages/informationspace/icon-clean.png") no-repeat 4px 50%;
	background-size: 20px 20px;
}
.popup-measure .popup-con .btn-con .popup-btn .icon#icon-clean:hover{
	background: #f2a717 url("../deep2dimages/informationspace/icon-clean.png") no-repeat 4px 50%;
}
.popup-measure .popup-con .btn-con .popup-btn .icon#icon-clean.active{
	background: #f2a717 url("../deep2dimages/informationspace/icon-clean.png") no-repeat 4px 50%;
}

/*************左侧标记弹窗*************/
.popup-sign{
	width: 250px;
	height: 100px;
	position: absolute;
    top: 60px;
    left: 60px;
    z-index: 10;
    background: rgba(255,255,255,.8);
    display: none;
}
.popup-sign .popup-header{
	width: 100%;
    height: 30px;
    padding: 0 10px;
    overflow: hidden;
    background: rgba(0,0,0,.1);
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
}
.popup-sign .popup-header .popup-title{
    width: 80%;
    height: 100%;
    float: left;
    line-height: 30px;
    font-size: 14px;
}
.popup-sign .popup-header #close-popup-sign{
	width: 30px;
	height: 30px;
	float: right;
	cursor: pointer;
}
.popup-sign .popup-header #close-popup-sign img{
	margin: 9px 0 9px 18px;
}
.popup-sign .popup-con{
	width: 100%;
	height: 70px;
}
.popup-sign .popup-con .btn-con{
	width: 205px;
	height: 30px;
	margin: 20px auto;
}
.popup-sign .popup-con .btn-con .popup-btn{
	width: 30px;
	height: 30px;
	float: left;
	margin-right: 10px;
	cursor: pointer;
}
.popup-sign .popup-con .btn-con .popup-btn .icon{
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 3px;
	font-size: 14px;
}
.popup-sign .popup-con .btn-con .popup-btn .icon#icon-sign-place{
	background: #3b91ef url("../deep2dimages/informationspace/icon-sign-place.png") no-repeat 50% 50%;
	background-size: 30px 30px;
}
.popup-sign .popup-con .btn-con .popup-btn .icon#icon-sign-place:hover{
	background: #f2a717 url("../deep2dimages/informationspace/icon-sign-place.png") no-repeat 50% 50%;
}
.popup-sign .popup-con .btn-con .popup-btn .icon#icon-sign-place.active{
	background: #f2a717 url("../deep2dimages/informationspace/icon-sign-place.png") no-repeat 50% 50%;
}
.popup-sign .popup-con .btn-con .popup-btn .icon#icon-ranging1{
	background: #3b91ef url("../deep2dimages/informationspace/icon-line.png") no-repeat 50% 50%;
	background-size: 30px 30px;
}
.popup-sign .popup-con .btn-con .popup-btn .icon#icon-ranging1:hover{
	background: #f2a717 url("../deep2dimages/informationspace/icon-line.png") no-repeat 50% 50%;
}
.popup-sign .popup-con .btn-con .popup-btn .icon#icon-ranging1.active{
	background: #f2a717 url("../deep2dimages/informationspace/icon-line.png") no-repeat 50% 50%;
}
.popup-sign .popup-con .btn-con .popup-btn .icon#icon-remarks{
	background: #3b91ef url("../deep2dimages/informationspace/icon-remarks.png") no-repeat 50% 50%;
	background-size: 30px 30px;
}
.popup-sign .popup-con .btn-con .popup-btn .icon#icon-remarks:hover{
	background: #f2a717 url("../deep2dimages/informationspace/icon-remarks.png") no-repeat 50% 50%;
}
.popup-sign .popup-con .btn-con .popup-btn .icon#icon-remarks.active{
	background: #f2a717 url("../deep2dimages/informationspace/icon-remarks.png") no-repeat 50% 50%;
}
.popup-sign .popup-con .btn-con .text-btn{
	width: 85px;
	height: 30px;
	line-height: 30px;
	float: left;
	margin-right: 0;
	cursor: pointer;
	text-align: center;
	font-size: 16px;
	color: #fff;
	background: #3b91ef;
	border-radius: 3px;
}
.popup-sign .popup-con .btn-con .text-btn:hover{
	background: #f2a717;
}
.popup-sign .popup-con .btn-con .text-btn.active{
	background: #f2a717;
}

/*************左侧添加标记弹窗*************/
.popup-sign-place{
	background: rgba(13,13,13,.9);
}
.popup-sign-place .popup-con{
	width: 100%;
}
.popup-sign-place .popup-con .btn-con{
	width: 340px;
	height: 180px;
	margin: 20px auto;
	position: relative;
}
.popup-sign-place .popup-con .btn-con .popup-input{
	width: 280px;
	overflow: hidden;
	margin-bottom: 15px;
}
.popup-sign-place .popup-con .btn-con .popup-input label{
	font-size: 14px;
	width: 50px;
	height: 30px;
	line-height: 30px;
	float: left;
	color:#ffffff;
	margin-bottom: 0;
}
.popup-sign-place .popup-con .btn-con .popup-input input{
	float: left;
	width: 230px;
	height: 30px;
	line-height: 30px;
	box-sizing: border-box;
	border: 1px solid #5BA4FF;
	background: #eff6fc;
	padding: 0 10px;
	border-radius: 3px !important;
	font-size: 14px;
	color: #3b3b3b;
}
.popup-sign-place .popup-con .btn-con .popup-input input#coordinate{
	background: #aaa;
	cursor: no-drop;
}
.popup-sign-place .popup-con .btn-con .popup-input input::-webkit-input-placeholder {
    color: #ccc;
    font-size: 14px;
}
.popup-sign-place .popup-con .btn-con .popup-input input:-moz-placeholder {
    color: #ccc;
    font-size: 14px;
}
.popup-sign-place .popup-con .btn-con .popup-input input:-ms-input-placeholder {
    color: #ccc;
    font-size: 14px;
}
.popup-sign-place .popup-con .btn-con .popup-input #my-remarks{
    float: left;
    width: 230px;
    height: 55px;
    box-sizing: border-box;
    border: 1px solid #5BA4FF;
    background: #eff6fc;
    padding: 10px;
    border-radius: 3px !important;
    font-size: 14px;
    resize:none;
}
.popup-sign-place .popup-con .btn-con .popup-icon{
	position: absolute;
	top: 20px;
	right: 0;
	width: 50px;
}
.popup-sign-place .popup-con .btn-con .popup-icon a{
	display: block;
	text-align: center;
	font-size: 14px;
	color: #3b91ef;
	margin-top: 5px;
	text-decoration: underline;
}
.popup-sign-place .popup-con .btn-con .popup-icon a:hover{
	color: #f2a717;
}

.popup-sign-place .popup-con .btn-con #popup-place-keep{
	margin-left: 85px;
	margin-right: 30px;
	padding: 0;
	border: 1px solid transparent;
	outline: none;
	width: 60px;
	height: 30px;
	line-height: 30px;
    font-size: 14px;
    background: #3B91EF;
    border-radius: 3px;
    color: #fff;
}
.popup-sign-place .popup-con .btn-con #popup-place-delete{
	margin: 0;
	padding: 0;
	border: 1px solid transparent;
	outline: none;
	width: 60px;
	height: 30px;
	line-height: 30px;
    font-size: 14px;
    background: #f2a717;
    border-radius: 3px;
    color: #fff;
}

/*************左侧更换标记样式弹窗*************/
.popup-change-img{
	width: 380px;
	height: 390px;
   	background: rgba(13,13,13,.9);
}
.popup-change-img .popup-con{
	width: 100%;
}
.popup-change-img .popup-con .btn-con{
	width: 340px;
	height: 210px;
	margin: 20px auto;
	position: relative;
}
.popup-change-img .popup-con .btn-con .img-list{
    width: 100%;
}
.popup-change-img .popup-con .btn-con .img-list ul{
	width: 100%;
	overflow: hidden;
}
.popup-change-img .popup-con .btn-con .img-list ul li{
	width: 50px;
	height: 50px;
	float: left;
	margin: 3px;
	cursor: pointer;
}
.popup-change-img .popup-con .btn-con .img-list ul li:hover{
	background: url("../deep2dimages/informationspace/sign-style-bg.png") no-repeat;
	background-size: 100% 100%;
}
.popup-change-img .popup-con .btn-con .img-list ul li.active{
	background: url("../deep2dimages/informationspace/sign-style-bg.png") no-repeat;
	background-size: 100% 100%;
}
.popup-change-img .popup-con .btn-con .img-list ul li img{
	width: 100%;
	height: 100%;

}
.img-list ul li img{
  border-radius:50%;

}
.popup-change-img .popup-con .btn-con #popup-place-return{
	display: block;
	margin: 0 auto;
	padding: 0;
	border: 1px solid transparent;
	outline: none;
	width: 60px;
	height: 30px;
	line-height: 30px;
    font-size: 14px;
    background: #3b91ef;
    border-radius: 3px;
    color: #fff;
}

/*************左侧文字备注弹窗*************/
.popup-text-remarks{
	width: 180px;
	height: 100px;
	position: relative;
}
.popup-text-remarks #remarks-textarea{
	width: 140px;
	height: 100px;
	resize: none;
	background: rgba(255,255,255,.8);
	color: #3b3b3b;
	font-size: 14px;
}
.popup-text-remarks #remarks-value{
	width: 140px;
	background: rgba(255,255,255,.8);
	color: #3b3b3b;
	font-size: 14px;
	display: none;
	border: 1px solid #ccc;
	box-sizing: border-box;
	overflow: visible;
    overflow-wrap: break-word;
}
.popup-text-remarks .remarks-btn{
	width: 40px;
	height: 20px;
	position: absolute;
	top: 0;
	left: 140px;
}
.popup-text-remarks .remarks-btn a{
	display: block;
	float: left;
	width: 20px;
	height: 20px;
	cursor: pointer;
}
.popup-text-remarks .remarks-btn a#remarks-sure{
	background: url("../deep2dimages/informationspace/icon-remarks-sure.png") no-repeat;
	background-size: 100% 100%;
}
.popup-text-remarks .remarks-btn a#remarks-edit{
	background: url("../deep2dimages/informationspace/icon-remarks-edit.png") no-repeat;
	background-size: 100% 100%;
	display: none;
}
.popup-text-remarks .remarks-btn a#remarks-delete{
	background: url("../deep2dimages/informationspace/icon-remarks-delete.png") no-repeat;
	background-size: 100% 100%;
}


.popup-text-remarks .popup-con .btn-con #popup-remarks-btn{
	margin: 0 auto;
	border: 1px solid transparent;
	outline: none;
	display: block;
    font-size: 14px;
    padding: 5px 10px;
    background: #3B91EF;
    border-radius: 3px;
    color: #fff;
}

/*************左侧添加库点弹窗*************/
/*.popup-add-library{
	width: 380px;
	height: 192px;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 10;
    background: rgba(255,255,255,.8);
    display: none;
}*/
.popup-add-library .popup-header{
	width: 100%;
    height: 30px;
    padding: 0 10px;
    overflow: hidden;
    background: rgba(0,0,0,.1);
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
}
.popup-add-library .popup-header .popup-title{
    width: 80%;
    height: 100%;
    float: left;
    line-height: 30px;
    font-size: 14px;
}
.popup-add-library .popup-header #close-popup-add-library{
	width: 30px;
	height: 30px;
	float: right;
	cursor: pointer;
}
.popup-add-library .popup-header #close-popup-add-library img{
	margin: 9px 0 9px 18px;
}
.popup-add-library .popup-con{
	width: 100%;
}
.popup-add-library .popup-con .btn-con{
	width: 340px;
	height: 122px;
	margin: 20px auto;
}
.popup-add-library .popup-con .btn-con .popup-input{
	width: 100%;
	overflow: hidden;
	height: 30px;
	margin-bottom: 15px;
	padding: 0 60px;
}
.popup-add-library .popup-con .btn-con .popup-input label{
	font-size: 14px;
	width: 50px;
	height: 30px;
	line-height: 30px;
	float: left;
}
.popup-add-library .popup-con .btn-con .popup-input span{
	display: block;
    float: left;
    font-size: 14px;
    line-height: 30px;
}
.popup-add-library .popup-con .btn-con .popup-input input{
	float: left;
	width: 290px;
	height: 30px;
	line-height: 30px;
	box-sizing: border-box;
	border: 1px solid #5BA4FF;
	background: #eff6fc;
	padding: 0 10px;
	border-radius: 3px !important;
	font-size: 14px;
    color: #3b3b3b;
}
.popup-add-library .popup-con .btn-con .popup-input input::-webkit-input-placeholder {
    color: #ccc;
    font-size: 14px;
}
.popup-add-library .popup-con .btn-con .popup-input input:-moz-placeholder {
    color: #ccc;
    font-size: 14px;
}
.popup-add-library .popup-con .btn-con .popup-input input:-ms-input-placeholder {
    color: #ccc;
    font-size: 14px;
}
.popup-add-library .popup-con .btn-con .popup-library-btn{
	border: 1px solid transparent;
	outline: none;
	display: block;
    font-size: 14px;
    padding: 5px 10px;
    background: #3B91EF;
    border-radius: 3px;
    color: #fff;
    float: left;
    margin-left: 110px;
    margin-right: 20px;
}
.popup-add-library .popup-con .btn-con .popup-library-btn.delete{
	margin: 0;
	background: #f2a717;
}
/*首页css*/
.newAdd{
  background:none;
  border:none;
}

.newAdd .closePupul{
  right:18px;
}
.newAdd .swiper-button-prev,.newAdd .swiper-button-next{
  top:94%;
}
.newAdd .swiper-button-prev{
  left:30%;
}
.newAdd .swiper-button-next{
  right:30%;
}
.tipuserinfoBas .bckMove{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	cursor: move;
  background: url('/static/image/animal-fold.png') no-repeat;
  background-size: 100% 100%;
}
.tipuserinfoBas .bckMove.active {
    background: url(/static/image/animal-open.png) no-repeat;
    width: 650px;
    height: 380px;
    background-size: 100% 100%;
}
.alarm-content{
  background: rgba(255,255,255,0.9);
}
.alarm-text,.alarm-remark{
  width:96%;
  margin:0 auto;
  overflow:hidden;
  height:40px;
  line-height:40px;
}
.alarm-left,.alarm-rig{
  float: left;
  width:50%;
  font-size:18px;
  color:#3b3b3b;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.alarm-remark{
  font-size:18px;
  color:#3b3b3b;
}
.alarm-left span,.alarm-rig span,.alarm-remark span{
  font-size:16px;
  color:#3e82ff;
}
.alarm-switch{
  height:40px;
  color:#3b3b3b;
  font-size:16px;
}
.legend-title {
  height: 40px;
  line-height: 40px;
  padding-left: 10px;
  border-bottom:1px solid #fff;
}
.legend-title span {
  color: #3b3b3b;
  vertical-align: middle;
  display:inline-block;
  font-size:16px;
}
.legend-title .legend-img{
  width:5px;
  height: 20px;
  margin-right:5px;

  vertical-align:middle;
}
.closepopup{
  float: right;
  margin-top:14px;
  margin-right:10px;
  cursor:pointer;
}
.closePupul-Alarm{
  width: 15px;
  height: 15px;
  position: absolute;
  right: 5px;
  top: 10px;
  cursor: pointer;
  z-index: 10000;
}
.alarm-manu,.alarm-look{
  width:96%;
  margin:10px auto;

}
.alarm-div{
  display:none;
}
.alarm-show{
  display:block;
}
.alarm-hide{
  display:none
}
.alarm-look span{
  color:#3e82ff;
  font-size:16px;
}
.alarm-look{
  height:110px;
  overflow:auto;
  font-size:18px;
  color:#3b3b3b;
}
.alarm-advice{
  height:98px;
  border:1px solid #5ba4ff;
  border-radius:5px;
}
.alarm-advice textarea{
  height:96px;
  font-size:16px;
  color:#3b3b3b;
  line-height:30px;
  width:100%;
}
.alarm-input{
  display:inline-block;
  width:18px;
  height: 18px;
}
.alarm-switch label{
  line-height:40px;
}
.alarm-switch input{
  margin-right:10px;
  border:none;
  outline:none;
  width:40px;
  height: 20px;
  appearance:none;
  -moz-appearance: none;
  -webkit-appearance: none;
  vertical-align:middle;
}
.alarm-switch input:after{
  content:url('/static/image/switch-close.png');
  background-size:100% 100%;
  width:40px;
  height: 20px;
}
.alarm-switch input:checked:after{
  content:url('/static/image/switch-open.png');
  background-size:100% 100%;
  width:40px;
  height: 20px;
}
.alarm-complete{
  width:300px;
  margin:10px auto;
}
.alarm-complete button{
  width:300px;
  height:40px;
  border-radius:5px;
  background:#409eff;
  outline:none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border:none;
  font-size:16px;
}
.swiper-slide .avatar{
  width:110px;
  height:140px;
  float:left;
 text-align:center;
  line-height:140px;
}
.swiper-slide .avatar img{
  max-width:110px;
  max-height:140px;
}
.pop-up1 .pop-content .swiper-slide ul{
      width: 270px;
  float:left;
}
.closePupul {
  width: 15px;
  height: 15px;
  position: absolute;
  background: url(../../../image/close.png) no-repeat;
  right: 5px;
  top: 10px;
  cursor: pointer;
  z-index: 10000;
}
.alarm-con{
  width:500px;
  height:80px;
  margin:0 auto;
  overflow:hidden;
  position:relative;
}
/*事件弹窗新改*/
.newAdd>>>.ol-popup:after,.newAdd>>>.ol-popup:before{border:none !important; z-index:-1;}
.littlePos{
  width: 250px;
  background: rgba(13,13,13,.85);
  border-radius: 4px;
  border: 1px solid rgba(73,87,98,0.75);
  box-sizing: border-box;
  padding:10px;
  color:#fff;
}
#div_map .littlePos ul{
  padding:10px;
  margin:0;
}
#div_map .littlePos ul li{
  margin:0;
  line-height:30px;
  height:30px;
}
.folder-open{width:645px;height:380px}
.pop-up1.tipuserinfoBas .pop-content{ height:100%; }
.pop-up1.tipuserinfoBas .swiper-button-next{background:url(../../../image/swipe-nextpage.png) no-repeat!important;z-index:10000000;width:28px;height:28px;cursor:pointer}
.pop-up1.tipuserinfoBas .swiper-button-next:active,#index .pop-up1.tipuserinfoBas .swiper-button-next:hover{background:url(../../../image/swipe-nextpage-active.png) no-repeat!important}
.pop-up1.tipuserinfoBas .swiper-button-prev{background:url(../../../image/swipe-prevpage.png) no-repeat!important;z-index:10000000;width:28px;height:28px;cursor:pointer}
.pop-up1.tipuserinfoBas .swiper-button-prev:active,#index .pop-up1.tipuserinfoBas .swiper-button-prev:hover{background:url(../../../image/swipe-prevpage-active.png) no-repeat!important}
.pop-up1.tipuserinfo.tipuserinfoBas .swiper-outer{ height:215px; }
.pop-up1.tipuserinfoBas .swiper-slide{ text-align:center; }
.pop-up1.tipuserinfoBas .swiper-slide img,.pop-up1.tipuserinfoBas .swiper-slide video{ max-height: 233px; max-width: 350px; }
.newAdd .pop-content { width: 280px;}
.closePupul{width:15px;height:15px;position:absolute;background:url(../../../../image/close.png) no-repeat;right:20px;top:10px;cursor:pointer;z-index:10000}
.pop-up1 .leftBas{width:30px;height:30px;position:absolute;border-radius:50%;top:15px;left:100px;background:url(../../../../image/leftBas.png) no-repeat center rgba(0,0,0,.6);background-size:20px 20px;z-index:99;cursor:pointer}
.pop-up1 .leftBas:hover{background:url(../../../../image/leftBasActive.png) no-repeat center rgba(0,0,0,.6);background-size:20px 20px}
.pop-up1 .rightBas{width:30px;height:30px;position:absolute;border-radius:50%;top:15px;left:160px;background:url(../../../../image/rightBas.png) no-repeat center rgba(0,0,0,.6);background-size:20px 20px;z-index:99;cursor:pointer}
.pop-up1 .rightBas:hover{background:url(../../../../image/rightBasActive.png) no-repeat center rgba(0,0,0,.6);background-size:20px 20px}
.pop-up1 .swiper-pagination.swiper-pagination-custom{background:rgba(0,0,0,.6);border-radius:4px;width:65px;height:25px;bottom:20px;left:50%;transform:translateX(-50%);font-size:16px}
.bigImgSwiper{position:absolute;height:100%;width:100%; left:0; top:0; display:none;background:rgba(0,0,0,.6);z-index:9999999999}
.bigImgSwiper .swiper-slide{text-align:center;line-height:55;max-width:100%;max-height:90%;display:block; overflow-x:auto; overflow-y:auto;}
.bigImgSwiper .swiper-button-next.swiper-button-disabled,#index .bigImgSwiper .swiper-button-prev.swiper-button-disabled{pointer-events:auto!important}
.bigImgBck{width:100%;height:100%;background:rgba(0,0,0,.6);z-index:9;position:absolute}
.bigImgSwiper .swiper-slide img,#index .bigImgSwiper .swiper-slide video{width:50%; height:auto;/* max-height:80% */}
.bigImgSwiper .swiper-slide video{margin-top:5%}
.bigImgSwiper .swiper-container{z-index:10;height:100%;width:80%}
.bigImgSwiper .closeBasBigImg{width:15px;height:15px;background:url(../../../image/close.png) no-repeat;position:absolute;right:25px;top:25px;cursor:pointer;z-index:99}
.bigImgSwiper .bigImgLeft{width:40px;height:40px;position:absolute;border-radius:50%;bottom:40px;left:42%;background:url(../../../image/leftBas.png) no-repeat center rgba(0,0,0,.6);z-index:99;cursor:pointer}
.bigImgSwiper .bigImgRight{width:40px;height:40px;position:absolute;border-radius:50%;bottom:40px;right:42%;background:url(../../../image/rightBas.png) no-repeat center rgba(0,0,0,.6);z-index:99;cursor:pointer}
.pop-up1.tipuserinfo.tipuserinfoBas .pop-detail{display:none;position:absolute;top:25px;right:33px;width:300px;padding:5px 0;height:323px;-webkit-box-sizing:border-box;box-sizing:border-box}
.pop-up1.tipuserinfo.tipuserinfoBas .swiper-outer{height:215px}
.pop-up1.tipuserinfo.tipuserinfoBas .swiper-detail{height:215px}
.pop-up1.tipuserinfo.tipuserinfoBas .pop-detail .detail{max-height:301px;overflow:hidden;overflow-y:auto;color:#fff;border:1px solid #909192;box-sizing:border-box;position:relative}
.pop-up1.tipuserinfo.tipuserinfoBas .pop-detail .detail::-webkit-scrollbar{width:8px;border-radius:10px;background:#070908}
.pop-up1.tipuserinfo.tipuserinfoBas .pop-detail .detail::-webkit-scrollbar-thumb{border-radius:10px;background:#495762}
.pop-up1.tipuserinfo.tipuserinfoBas .pop-detail .detail::-webkit-scrollbar-track{border-radius:10px;background:#070908}
.pop-up1.tipuserinfo.tipuserinfoBas .pop-detail .detail .hidePopDetail{position:absolute;width:15px;height:15px;right:5px;top:10px;background:url(../../../image/close.png) no-repeat;cursor:pointer;border:none}
.pop-up1.tipuserinfo.tipuserinfoBas .pop-detail .detail li{display:flex;border-bottom:1px solid #909192;box-sizing:border-box;clear:both}
.pop-up1.tipuserinfo.tipuserinfoBas .pop-detail .detail li:last-child{border:0}
.pop-up1.tipuserinfo.tipuserinfoBas .pop-detail .detail li .name{width:70px;box-sizing:border-box;float:left;text-align:right;padding:5px 8px;font-size:13px}
.pop-up1.tipuserinfo.tipuserinfoBas .pop-detail .detail li .con{display:block;float:left;width:200px!important;padding:0 8px;line-height:30px;font-size:13px;border-left:1px solid #909192;min-height:30px}
.pop-up1.tipuserinfo.tipuserinfoBas .pop-detail .detail li .con.tableTitle{border:0}
.pop-up1.tipuserinfo.tipuserinfoBas .pop-detail .detail li.title{margin-top:0}
.pop-up1.tipuserinfo.tipuserinfoBas .pop-detail .detail li.title i{left:5px}
.pop-up1.tipuserinfo.tipuserinfoBas .pop-detail .detail li.title p{left:5px;padding-left:15px;line-height:30px}
.TypeOne .type-left{float:left}
.pop-up1.tipuserinfo.tipuserinfoBas .pop-content .TypeOne li .type-rig{float:right;text-align:right;color:orange;width:75px!important}
.pop-up1.tipuserinfo.tipuserinfoBas .pop-content .TypeOne li .swipe-icon{margin-right:8px;margin-top:-5px}


.pop-up1.tipuserinfo.tipuserinfoBas .pop-content .TypeOne li .swipe-pos{font-size:16px;color:orange}
.pop-content .TypeOne li .swipe-ll{ vertical-align: middle; margin-right:5px; display:inline-block; width:20px; height:20px; background:url(../../../../image/swipe-poisition.png) center no-repeat; }
.pop-content .TypeOne li .swipe-mark{ vertical-align: middle; margin-right:5px;  display:inline-block; width:20px; height:20px; background:url(../../../../image/swipe-mark.png) center no-repeat; }
.pop-content .TypeOne li span{ vertical-align: middle; }
.bigImgSwiper .swiper-container{z-index:10;height:100%;width:80%}
.bigImgSwiper .imgscale{ position: absolute; right:10px; bottom:10px; /* transform:translate(-50%,-50%); */ font-size:24px; text-align: center; z-index:1000; color:rgba(255,255,255,0.6); }
.bigImgSwiper .swiper-slide img,.bigImgSwiper .swiper-slide video{width:50%; height:auto;/* max-height:80% */}
.bigImgSwiper .swiper-slide{ margin-top:25px; }
#div_map .ol-zoomslider{ background:rgba(13,13,13,.85); }
#div_map .ol-zoomslider button{ background:rgba(255,255,255,.6); }
.pop-up1.tipuserinfoBas .swiper-slide{ display:flex; align-items: center; justify-content: center; }

.tooltip {
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  color: white;
  padding: 4px 24px 4px 8px;
  opacity: 0.7;
  white-space: nowrap;
}
.tooltip-measure {
  opacity: 1;
  font-weight: bold;
}
.tooltip-static {
  background-color: #ffcc33;
  color: black;
  border: 1px solid white;
}
.tooltip-measure:before,
.tooltip-static:before {
  border-top: 6px solid rgba(0, 0, 0, 0.5);
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  content: "";
  position: absolute;
  bottom: -6px;

  left: 50%;
}
.tooltip-static:before {
  border-top-color: #ffcc33;
}
.ol-popup-closer {
    text-decoration: none;
    position: absolute;
    top: 0px;
    right: 8px;
    color: red;
}
.ol-popup-closer:after {
    content: "x";
}
/*MeasureTool*/


.gismeasure {
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  color: white;
  padding: 4px 24px 4px 8px;
  opacity: 0.7;
  white-space: nowrap;
}
.gismeasure-measure {
  opacity: 1;
  font-weight: bold;
}
.gismeasure-static {
  background-color: #ffcc33;
  color: black;
  border: 1px solid white;
}
.gismeasure-measure:before,
.gismeasure-static:before {
  border-top: 6px solid rgba(0, 0, 0, 0.5);
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  content: "";
  position: absolute;
  bottom: -6px;

  left: 50%;
}
.gismeasure-static:before {
  border-top-color: #ffcc33;
}
.ol-popup-closer {
    text-decoration: none;
    position: absolute;
    top: 0px;
    right: 8px;
    color: red;
}
.ol-popup-closer:after {
    content: "x";
}
/*MeasureTool*/

.MeasureTool{
  position: absolute;
  top: 2.0em;
  right: 5em;
  text-align: left;
  padding: 0;
}
.MeasureTool .ulbody{
  display: none;
}
.MeasureTool.shown .ulbody{
  display: block;
}
.ulbody li input:focus, .ulbody li input:hover {
  background-color: white;
  color: blue;
  font-weight: bold;
}
.MeasureTool ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.MeasureTool ul li{
  text-align: center;
}
.MeasureTool>ul>li>input{
   background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAABiUlEQVRIS8WUQU7CQBSG/ze6lxsoJxCPYMpePIG4almJW2giJq1xJ6ykbuAG6p6GIwgnkBsYtwb7zGsZLKUk0tI4m6btzP/N/+bNTyh4UMH6+D+A7fkdACwOHdO4TTq1vVENoGP9PW2O/NvowPb8UDwafO6Y1Zc4xO77ExDigFStvwEYPccymhrQGYxL86/gIw50TCM7gBkz1zLKWrD16NeVwgCMqXaRGcDgTwIdzANVvm+czgTS9kZDAl0AkLO5WZxTNgfM/EpEZwxcu6bRjQD+jIDDgNSJ4uAtFyAIcCnlEJBrVWutp3FFRMWZa1ZLuhkyl0hKs6+Cd73Ltuc3CXjQwNwA2ZkuibQrM+pSMnF21zCGOwHYfb8LwhUYPSauxw99N4Do1j7/3jtMHcuoyHsegESFxET4lN7Hnpoo/j6Kvkc3exEpy3nJSCk+7OKhtinYton0pB6thlooFZYkx1hZnwbIob2+NA2wlv1bEsNs0kMAK5Z012wpupye1Cu+i7Lu9K/rCnfwA90A1i8VnCB2AAAAAElFTkSuQmCC') logo.png;
   background-position: center center;
  background-repeat: no-repeat;
}
.MeasureTool input[type="button"]{
  background-color: rgba(255, 255, 255, 0.4);
  width: 60px;
  height: 26px;
  border: 0;
}
.MeasureTool .ulbody li{
  border-top: 1px solid rgba(221, 221, 221, 0.4);
}
.animal-info-wrap{
  position:absolute; width:96%; left:2%; top:3px; z-index:100;
}
.sp-fold{ position:absolute; width:60px; height: 33px; left:10px; top:0px; margin:0; z-index:100;
 background:url('../../deep2dimages/animal/sp-fold-up.png') center no-repeat;
  background-size:100% 100%; }
.new-mes{ position:absolute; right:16px; top:-10px;  background:url('../../deep2dimages/animal/new-message.png') center no-repeat;
  background-size:20px 20px; width:38px; height: 38px; margin:0; z-index:1000; }
.animal-top-wrap{
  height:204px; width:100%;
  padding:30px;
  background:url('../../deep2dimages/animal/detail-bg.png') center no-repeat;
  background-size:100% 100%;
  display:flex; justify-content: space-between; position:relative;
}
.ani-sex{ position:absolute; right:-20px; top:22%; transform: translateX(-50%); width:49px; height: 57px; margin:0; }
.ani-sex.ani-female{
  background:url('../../deep2dimages/animal/female-icon.png') center no-repeat;
    background-size:100% 100%;
}
.ani-sex.ani-male{
  background:url('../../deep2dimages/animal/male-icon.png') center no-repeat;
    background-size:100% 100%;
}
.ani-left{
  width:40%;
}
.ani-right{
  width:56%;
  padding-top:3px;
  margin-right:3%;
}
.ani-right .ani-nickname{ margin-bottom: 0; color:#653E3B; font-size:16px; font-weight:bold; white-space:nowrap; text-overflow: ellipsis; overflow: hidden; }
.ani-mid-info{
  height:44px;
  background:url('../../deep2dimages/animal/info-li.png') left center no-repeat;
  background-size:12px 38px;
}
.split-divider{ height:1px; border-bottom:1px dashed #814D29; margin:5px 0;}
.ani-mid-info p{ line-height: 22px; padding-left:16px; color:#9A8C74; font-size:14px; margin-bottom: 0; }
.ani-mid-info p span{ color:#653E3B; font-weight: bold;  display: inline-block; width:72px; }
.ani-img{background:#fff; height:115px; width:90%; margin:6px auto 2px; text-align: center; }
.ani-img img{ height:105px; max-width:calc(100% - 10px); margin-top:5px;  }
.ani-name{background:url('../../deep2dimages/animal/sp-name-bg.png') center no-repeat; font-size:14px; font-weight: bold;
  background-size:100% 100%; width:100%; height:30px; line-height: 30px; color:#653E3B;  text-align: center; margin-bottom:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.ani-label{ margin:5px 0 0; }
.ani-label span{ vertical-align:middle; margin:0 8px 0 0; display:inline-block; font-size:14px; color:#fff;line-height:24px; padding:0 10px;
/* background:url('../../deep2dimages/animal/label-red.png') center no-repeat; background-size:100% 100%; */ }
.ani-selfinfo{ color:#98633D; font-size:12px; margin-bottom: 0; }
.animal-bot-wrap{
  display:flex; justify-content: space-around; margin-top: -8px; padding: 0 20px;
}
.animal-bot-wrap p{
  width:33%; height:31px; margin:0; text-align: center; line-height:24px; color:#653E3B; font-weight: bold;
  background:url('../../deep2dimages/animal/sp-list-bg.png') center no-repeat; background-size:100% 100%;
}
@property --rotate {
    syntax: "<angle>";
    initial-value: 132deg;
    inherits: false;
}
:root {
    --card-height: 65vh;
    --card-width: calc(var(--card-height) / 1.5);
    --border-gradient-angle:0turn;
}
.map-line-dot{
  position: relative;
  z-index: 1;
  /* border-radius: 50%;width: 50px; height: 50px; */
}
.wave1,.wave2,.wave3,.wave4{
  display:none;
   width: 50px;
   height: 50px;
   position:absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%) scale(0);
   /* background-color: #5ddcff; */
   /* background-image: radial-gradient(rgba(78,0,194,0.5), #3c67e3,#5ddcff ); */
 /*  background-image: linear-gradient(circle at center ,#5ddcff, #3c67e3); */
   border:3px solid transparent;
   box-shadow: 0 0 10px rgba(78,0,194,1);
  /* background-color: #5ddcff; */
   border-radius: 100%;
   opacity: 1;
}
/* .wave1{ animation: wave-animation 1s ease-out infinite; } */
/* .wave2{ animation: wave-animation 2s ease-out 0.5s infinite;}
.wave3{ animation: wave-animation 2s ease-out 1s infinite; }
.wave4{ animation: wave-animation 2s ease-out 1.5s infinite;} */
@keyframes wave-animation {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity:0.2;
  }
}
.map-line-dot p{ margin:0; width:40px;height:40px;border-radius:50%; }
.map-line-dot::before{
  content: "";
  width: 56px;
  height: 56px;
  background-image: linear-gradient(var(--rotate) ,#5ddcff, #3c67e3 43%, #4e00c2);
  /* background-image: linear-gradient(var(--rotate) ,#D65252, #3c67e3 43%, #4e00c2); */
  /* background-image: linear-gradient(var(--rotate) ,#D65252, rgba(60,103,227,0.8) 43%, rgba(78,0,194,0.8)); */
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  top: -8px;
  left: -8px;
  animation: spin 2.5s linear infinite;
  visibility: hidden;
}
.map-line-dot::after {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    /* right: -3px; */
    z-index: -1;
    height: 46px;
    width: 46px;
    border-radius: 50%;
    margin: 0 auto;
    /* transform: scale(0.8);  */
    filter: blur(5px);
    background-image: linear-gradient(var(--rotate) ,#5ddcff, #3c67e3 43%, #4e00c2);
    box-shadow:0 0 10px transparent;
    opacity: 1;
    transition: opacity .5s;
    animation: spin 2.5s linear infinite;
}
@keyframes spin {
    0% {
          --rotate: 0deg;
      }    100% {
          --rotate: 360deg;
      }
     /* 0% {
       transform:rotate(0);
     }
     100% {
          transform:rotate(360deg);
     } */
     /* 0% {
           box-shadow: 0 0 10px #fff;
         }
         50% {
           box-shadow: 0 0 20px #fff, 0 0 30px rgba(85, 213, 243, 0.8);
         }
         100% {
           box-shadow: 0 0 10px #fff;
         } */
}
#finger-index{ position:absolute; margin-bottom:0; animation:finger 1.5s ease-out infinite; animation-delay: 1s; opacity:0;
  left:50%; transform:translateX(30px); top:50%; margin-top:30px; margin-left:20px; z-index:100; width:30px; height: 37px; background:url('../../deep2dimages/finger-index.png') no-repeat; background-size:30px 37px; }
@keyframes finger {
  0%{ transform:translateX(40px);opacity:0; }
  100%{ transform:translateX(-10px);;opacity:1 }
}
