/* 通用样式 start */
html, body, #cesiumContainer {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #000;
    color: #eee;
    font-family: Microsoft YaHei;
    font-size: 10pt;
    -webkit-overflow-scrolling: touch;

    /* 禁止文字被鼠标选中 */
    moz-user-select: -moz-none !important;
    -moz-user-select: none !important;
    -o-user-select:none !important;
    -khtml-user-select:none !important;
    -webkit-user-select:none !important;
    -ms-user-select:none !important;
    user-select:none !important;
}
label{
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
}
label.label-block { /* 宽度为100%的label */
    width: 100%;
}
.text-center { /* 文字居中 */
    text-align: center;
}
.param-item-first-level { /* 第一层子项 */
    margin: 0;
    padding: 0 0 0 15px;
    width: auto;
    overflow: auto;
}
.param-item-second-level { /* 第二层子项 */
    margin: 0;
    padding: 0 0 0 30px;
    width: auto;
    overflow: auto;
}
li {
    color: #898787;
    margin: 0;
    list-style: none;
}
label > input, label > span{ /* 用于控制复选框与文字垂直方向上对齐 2-1 start */
    display: inline-block;
    vertical-align: middle;
}
label > input{ /* 用于控制复选框与文字垂直方向上对齐 2-2 start */
    margin: 0 0.5rem 0 0;
}
.disabled { /* 禁用鼠标样式 */
    cursor: not-allowed;
}
.width-adjust, .width-adjust + .sp-replacer {
    width: 95% !important;
}
.italic {
    font-style:italic;
}
.block {
    width: 100% !important;
}
input.disabled{ /* 禁用状态下的输入框 */
     background-image: url(../images/input-forbidden.png);
     background-repeat: no-repeat;
     background-position: center right;
     padding-right: 5px;
 }
#selDate, main select{
    width: 90%;
    height: 25px;
    color: lightgray;
    background-color: #333;
    border: 1px solid #686363;
    padding: 0 3px
}
/* 符号库 start */
.polygon-symbol-font-normal , .polygon-symbol-font-normal > *,
.polyline-symbol-font-normal , .polyline-symbol-font-normal > *,
.light-source-font-normal, .light-source-font-normal > *{
    color: #777;
}
.polygon-symbol-font-selected, .polygon-symbol-font-selected > a,
.polyline-symbol-font-selected, .polyline-symbol-font-selected > a,
.light-source-font-selected, .light-source-font-selected > a{
    color: #3f8eb9 !important;
}
.polygon-symbol-font-selected > label,
.polyline-symbol-font-selected > label,
.light-source-font-selected > label{
    color: #fff;
}

.light-param-btns { /*光源控制按钮*/
    display: none;
}

.float-elements-wrapper { /*浮动元素的包裹元素*/
    overflow: auto;
}
/* 符号库 end */
/* 覆盖原生Cesium查询控件的样式 start */
.cesium-geocoder-searchButton {
    background-color: rgba(38, 38, 38, 0.75);
}
.cesium-viewer-toolbar {
    top: 35px;
}
/* 覆盖原生Cesium查询控件的样式 end */

.input {
    width: 90%;
    height: 25px;
    color: lightgray;
    background-color: #333;
    border: 1px solid #686363;
    padding: 0px 3px
}
.input:focus {
    outline:none;
    border: 1px solid #009c95;
}

.my-form-control {
    border: solid 1px #444;
    background-color: rgba(38, 38, 38, 0.75);
    color: #ffffff;
    display: inline-block;
    vertical-align: middle;
    height: 38px;
    width: 100%;
    margin: 0;
    padding: 2px 6px;
    box-sizing: border-box;
}
.my-form-control:hover {
    border: 1px solid #009c95;
}

.form-group{
    position: relative;
    margin-bottom: 20px;
}

/* 滚动条样式 start */
body ::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
}

body ::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

body ::-webkit-scrollbar-thumb {
    cursor: pointer;
    border-radius: 5px;
    background: rgba(0, 0, 0, .25);
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
}

body ::-webkit-scrollbar-thumb:hover {
    background: rgba(128, 135, 139, 0.8);
}

body ::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(0, 0, 0, 0.15);
}
/* 滚动条样式 end */

.myModal-close { /* 关闭按钮 */
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ffffff;
    background-color: rgba(38, 38, 38, 0.75);;
    border: none;
    font-size: 1.5em;
}

/* 加载动画 start */
.transition-loader {
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    width: calc(100% - 200px);
    text-align: center;
}
.transition-loader label {
    padding: 6px;
    opacity: 0;
    display: inline-block;
    border-radius: 50%;
    background-color: #2ec5ad;
    margin-right: 18px;
}

.transition-loader label:nth-child(1) {
    -webkit-animation: loader 3s 600ms infinite ease-in-out;
    animation: loader 3s 600ms infinite ease-in-out;
}

.transition-loader label:nth-child(2) {
    -webkit-animation: loader 3s 500ms infinite ease-in-out;
    animation: loader 3s 500ms infinite ease-in-out;
}

.transition-loader label:nth-child(3) {
    -webkit-animation: loader 3s 400ms infinite ease-in-out;
    animation: loader 3s 400ms infinite ease-in-out;
}

.transition-loader label:nth-child(4) {
    -webkit-animation: loader 3s 300ms infinite ease-in-out;
    animation: loader 3s 300ms infinite ease-in-out;
}

@keyframes loader {
    0% {
        opacity: 0;
        transform: translateX(-300px) scale(1);
    }
    33% {
        opacity: 1;
        transform: translateX(0px) scale(2);
    }
    66% {
        opacity: 1;
        transform: translateX(0px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(300px) scale(2);
    }
}
@-webkit-keyframes loader {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-300px);
    }
    33% {
        opacity: 1;
        -webkit-transform: translateX(0px);
    }
    66% {
        opacity: 1;
        -webkit-transform: translateX(0px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(300px);
    }
}
/* 加载动画 end */

/* 颜色选择器 start */
.sp-replacer {
    margin:0;
    overflow:hidden;
    cursor:pointer;
    padding: 3.5px;
    display:inline-block;
    color: #333;
    vertical-align: middle;
    background-color: #333;
    width: 90%;
    border: 1px solid #686363;
}
.sp-replacer:hover, .sp-replacer.sp-active {
    border-color: #F0C49B;
    color: #111;
}
.sp-preview {
    height: 20px;
    border: solid 1px #222;
    margin-right: 5px;
    float:left;
    z-index: 0;
    width: 85%;
}
.sp-dd{
    padding: 2px 0;
    height: 16px;
    line-height: 16px;
    float:right;
    font-size:10px;
    color: #fff;
}
.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-color {
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:20%;
}
.sp-container {
    position:absolute;
    top:0;
    left:0;
    display:inline-block;
    z-index: 9999994;
    overflow: hidden;
    border-radius: 0;
    background-color: #ECECEC;
    border: solid 1px #f0c49B;
    padding: 0;
}
.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-container.sp-flat {
    position: relative;
}
.sp-palette-container {
    border-right: solid 1px #ccc;
}
.sp-palette .sp-thumb-el {
    display: block;
    position:relative;
    float:left;
    cursor: pointer;
    width:16px;
    height: 16px;
    margin:2px 1px;
    border: solid 1px #d0d0d0;
}
.sp-palette {
    max-width: 220px;
}
.sp-cf:before, .sp-cf:after {
    content: ""; display: table;
}
.sp-cf:after {
    clear: both;
}
.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;
}
.sp-alpha-enabled .sp-top {
    margin-bottom: 18px;
}
.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-top {
    position:relative;
    width: 100%;
    display:inline-block;
    margin-bottom: 3px;
}
.sp-top-inner {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
}
.sp-fill {
    padding-top: 80%;
}
.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;
}
.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-alpha-enabled .sp-alpha {
    display: block;
}
.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.sp-clear-display {
    background-position: center;
}
.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==);
}
.sp-slider {
    position: absolute;
    top:0;
    cursor:pointer;
    height: 3px;
    left: -1px;
    right: -1px;
    border: 1px solid #000;
    background: white;
    opacity: .8;
}
.sp-sat, .sp-val {
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
}
.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 {
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:84%;
    height: 100%;
    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%);
}
.sp-clear-enabled .sp-hue {
    top:33px;
    height: 77.5%;
}
.sp-clear-enabled .sp-clear {
    display: block;
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:84%;
    height: 28px;
}
.sp-hidden {
    display: none !important;
}
.sp-input-container {
    float:right;
    width: 100px;
    margin-bottom: 4px;
}
.sp-initial {
    float: left;
    border: solid 1px #333;
}
.sp-initial span {
    width: 30px;
    height: 25px;
    border:none;
    display:block;
    float:left;
    margin:0;
}
.sp-replacer.sp-disabled {
    cursor:default;
    border-color: silver;
    color: silver;
}
.sp-initial .sp-clear-display {
    background-position: center;
}
.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-button-container {
    float: right;
}
.sp-palette .sp-thumb-el:hover, .sp-palette .sp-thumb-el.sp-thumb-active {
    border-color: orange;
}
.sp-color, .sp-hue, .sp-clear {
    border: solid 1px #666;
}
.sp-clear {
    display: none;
}
.sp-dragger {
    border-radius: 5px;
    height: 5px;
    width: 5px;
    border: 1px solid #fff;
    background: #000;
    cursor: pointer;
    position:absolute;
    top:0;
    left: 0;
}
.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');
}
@media (max-device-width: 480px) {
    .sp-color { right: 40%; }
    .sp-hue { left: 63%; }
    .sp-fill { padding-top: 60%; }
}
/* 颜色选择器 end */
/* ========== 通用样式 end ========== */

/* 图层列表中的复选框 start */
.squaredTwo {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    margin: 5px 5px;
    border: 1px solid #898787;
}
.squaredTwo-light {
    border: 1px solid #fff;
}
.squaredTwo label {
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 0;
}
.node-selected > .squaredTwo {
    border: 1px solid #fff;
}
.node-selected > .squaredTwo > label:after {
    border: 3px solid #fff;
    border-top: none;
    border-right: none;
}
.squaredTwo label:after { /* 图层列表中复选框的勾 */
    content: '';
    width: 15px;
    height: 7px;
    position: absolute;
    top: 5px;
    left: 2px;
    border: 3px solid #898787;
    border-top: none;
    border-right: none;
    background: transparent;
    opacity: 0;
    transform: rotate(-45deg);
}
.check-icon-light:after {
    border: 3px solid #fff !important;
    border-top: none !important;
    border-right: none !important;
}

/* 自定义复选框 */
.squaredTwo label:hover::after {
    opacity: 0.3;
}
.squaredTwo input[type=checkbox] {
    visibility: hidden;
}
.squaredTwo input[type=checkbox] + label:after {
    opacity: 0;
}
.squaredTwo input[type=checkbox]:checked + label:after {
    opacity: 1;
}
.node-unchecked .squaredTwo input[type=checkbox] + label:after {
    opacity: 0;
}
/* 图层列表中的复选框 end */

/* 功能面板 start */
.mainView {
    position : absolute;
    right: 50px;
    top : 10%;
    width: 365px;
    z-index: 100;
}
.function-module-caption { /* 面板中功能模块的标题 */
    font-size: 14px;
}
.function-module-content {
    margin: 1rem 0;
    padding: 14px;
    background-color: rgb(23, 23, 23);
    border: 1px solid rgba(34,36,38,.15);
    overflow: auto;
    max-height: 615px;
}
.function-module-sub-section {
    margin-bottom: 18px;
    overflow: auto;
}
.function-module-sub-section-caption {
    margin: 0 0 8px 0;
    padding: 0;
}
.function-module-sub-section-caption-indent {
    margin: 0 0 8px 15px;
    padding: 0;
}
.function-module-sub-indent-section {
    margin: 0 0 8px 0;
    overflow: auto;
}
.function-module-btn {
    float: right;
    margin-top: -5px;
    margin-right: 8px;
}
.function-module-btn-highlight {
    color: #009c95;
    border: 1px solid #009c95;
}
.function-module-part {
    border: 1px solid #009c95;
    padding: 15px;
    overflow: auto;
}
.half { /* 用于功能面板一行放两个控件 */
    width: 50%;
    display: inline-block;
    float: left;
    margin: 0;
    padding: 0;
    border: none;
}
.third { /* 用于功能面板一行放三个控件 */
    width: 33%;
    display: inline-block;
    float: left;
    margin: 0;
    padding: 0;
    border: none;
}
.function-module-content input[type=radio] {
    display: inline-block;
}
/* 功能面板 end */

/* 符号库 start */
.mark-list {
    border:1px solid #2EC5AD; /* 符号库的边框 */
    overflow: auto;
    max-height: 165px;
}
.mark-list > div.mark-list-item {
    float: left;
    width: 25%;
    text-align: center;
    cursor: pointer;
    padding-top: 5px;
}
div.mark-list-item > a{
    font-size: 25px;
}
div.mark-list-item > label {
    display: block;
    cursor: pointer;
    padding: 0;
}
div.mark-list-item > img {
    width: 55%;
}
/* 符号库 end */

/* 资源面板 start */
.myModal {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(38, 38, 38, 0.75);
    z-index: 999;
}
.myModal-content {
    position: absolute;
    top: 20%;
    width: 45%;
    display: inline-block;
    border: 1px solid #526f82;
    color: #ffffff;
    background-color: rgba(38, 38, 38, 0.75);
    font-size: 10pt;
    padding: 12px 35px 35px 35px;
    left: 50%;
    transform: translateX(-50%);
}
.myModal-header {
    min-height: 16px;
    padding: 5px;
}
.myModal-body {
    background-color: rgb(23, 23, 23);
}
.selTypeContainer {
    margin-bottom: 20px;
}
.service-items {
    display: block;
    position: relative;
    top: auto;
    right: 0;
    overflow-y: auto;
    overflow-x: auto;
    text-align: left;
}
.myModal-content .service-items {
    max-height: 350px;
}
.service-item {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    position : relative;
}
.myModal-content .service-item{
    width: 24.5%;
    float: left;
    margin-bottom: 15px;
}
#selType {
    margin-left: 1.225%;
}
#baselayerWraper .service-item {
    margin: 5px;
    width: 155px;
    cursor: pointer;
}
.service-itemIcon {
    display: inline-block;
    position: relative;
    color: #edffff;
    box-sizing: border-box;
    border: 3px solid #ffffff;
}
.myModal-content .service-itemIcon {
    width: 90%;
    height: 129px;
    cursor: pointer;
}
#baselayerWraper .service-itemIcon {
    width: inherit;
    height: 100px;
}
.service-itemBg{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(35,36,36);
    left: 0;
    top: 0;
    opacity: 0;
}
.service-itemUnSelected{
    position : absolute;
    right : 0;
    top : 0;
    font-size : 16px;
    color : rgb(26,188,114);
    opacity : 0;
}
.service-itemSelected{
    opacity : 1;
}
.service-itemDes{
    position: absolute;
    left: 5px;
    top: 20px;
    color : #fff;
    font-size : 12px;
    font-weight : 400;
    opacity : 0;
}
.service-itemAttr:hover div.service-itemDes{
    opacity : 1;
}
.service-itemAdd{
    position : absolute;
    right : 0px;
    bottom : 0px;
    font-size : 20px;
    opacity : 0;
}
.service-itemAttr:hover div.service-itemAdd{
    opacity : 1;
}
.service-itemAttr:hover div.service-itemBg{
    opacity: 1;
    background-color: rgba(35,36,36,0.7);
}
.service-itemIcon > img {
    width: 100%;
    height:100%;
    margin-bottom: -3px;
}
.service-itemLabel {
    display: block;
    font-family: sans-serif;
    font-size: 10pt;
    text-align: center;
    vertical-align: middle;
    word-wrap: break-word;
    padding: 5px 0;
}
.nav{
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.nav-tabs>li{
    float: left;
    margin-bottom: -1px;
}
.nav>li{
    position: relative;
    display: block;
    width: 33.33%;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover{
    color: #009c95;
    cursor: default;
    border-bottom: 1px solid #009c95;
}
.nav-tabs>li>a{
    margin-right: 2px;
    line-height: 1.5;
    border: 1px solid transparent;
}
.nav>li>a:focus, .nav>li>a:hover{
    text-decoration: none;
}
.nav>li>a{
    font-size: 14px;
    position: relative;
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-align: center;
}
.tab-content>.tab-pane{
    display: none;
}
.tab-content>.active{
    display: block;
}
/* 资源面板 end */

#baseLayerGroup {
    width: 650px;
}

#baseLayerBtn > .dropDown-container { /* 底图选择面板 */
    padding: 5px 10px;
}

.range{
    vertical-align: middle;
    padding-top: 2px;
    padding-bottom: 2px;
}
/* 卷帘分割条 start */
#verticalSlider {
    position: absolute;
    left: 50%;
    top: 0;
    background-color: #D3D3D3;
    width: 5px;
    height: 100%;
    cursor: ew-resize;
}
#horizontalSlider {
    position: absolute;
    left: 0;
    top: 50%;
    background-color: #D3D3D3;
    width: 100%;
    height: 5px;
    cursor: ns-resize;
}
/* 卷帘分割条 end */
@media screen and (max-width: 1440px) { /* 低分辨率台式机显示器 */
    #customServicePan > div.function-module-content:first-child {
        max-height: 430px;
    }
}

@media screen and (max-width: 1366px) { /* 普通分辨率的笔记本电脑 */
    .function-module-content {
        max-height: 450px;
    }
}

@media screen and (max-width: 1024px) { /* iPad */
    .myModal-content {
        width: 70%;
        top: 12%;
    }
    #webServicePan .service-item {
        width: 33.3%;
    }
    #baseLayerGroup {
        width: 515px;
    }
}

@media screen and (max-width: 414px) { /* 大部分手机 */
    .myModal-content {
        width: 90%;
        top: 10%;
    }
    #webServicePan .service-item {
        width: 48.5%;
    }
    #webServicePan .service-itemIcon {
        height: 90px;
    }
    .mainView {
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
    }
    #baseLayerGroup {
        width: 100%;
    }
}












