123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943 |
- @import 'cover';
- // 取消拖动时的选中
- div {
- -moz-user-select: none;
- -webkit-user-select: none;
- user-select: none;
- }
- .sm-btn {
- display: inline-block;
- // color: #51E9FF;
- // color: #5ECDF0;
- color: #64DAFF;
- background-color: rgba(38, 38, 38, 0.75);
- margin-bottom: 0;
- text-align: center;
- white-space: nowrap;
- touch-action: manipulation;
- cursor: pointer;
- -webkit-user-select: none;
- padding: 10px 12px;
- font-size: 17px;
- 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;
- &:hover {
- background: rgba(38, 38, 38, 0.9);
- color: #fff;
- }
- }
- .sm-panel {
- // margin-top: 2rem;
- // margin-left: 2rem;
- width: 340px;
- max-width: 340px;
- min-width: 280px;
- display: inline-block;
- position: absolute;
- right: 20px;
- top: 106px;
- z-index: 99;
- cursor: pointer;
- // border: 1px solid #526f82;
- background: url(/static/images/ghzc/内容框.png) no-repeat;
- background-size: 100% 100%;
- background-position: center;
- padding: 0px 10px;
- //overflow: hidden;
- @media (max-width: 750px) {
- margin-top: 2px;
- margin-left: 2px;
- max-width: 280px;
- }
- @media (max-height: 480px) {
- margin-top: 2px;
- margin-left: 2px;
- max-height: 440px;
- }
- @media (max-height: 300px) {
- max-height: 290px;
- }
- @media (max-height: 250px) {
- max-height: 240px;
- }
- }
- .sm-toggle-btn {
- @extend .sm-btn;
- position: absolute;
- width: 40px;
- height: 40px;
- box-sizing: border-box;
- // border-radius: 4px;
- background: transparent;
- z-index: 100;
- display: flex;
- justify-content: center;
- align-items: center;
- @media (max-width: 750px) {
- width: 35px;
- height: 35px;
- }
- @media (max-height: 480px) {
- width: 35px;
- height: 35px;
- }
- @media (max-height: 300px) {
- width: 30px;
- height: 30px;
- }
- }
- .sm-toggle-btn-only {
- background-color: rgba(38, 38, 38, 0.75);
- }
- .sm-content {
- overflow: hidden;
- transform-origin: top left;
- // background-color: rgba(38, 38, 38, 0.75);
- transition: transform 0.6s ease;
- }
- .sm-content-hidden {
- transform: scale(0, 0);
- }
- // 关闭按钮
- .closeBtn {
- // float: right;
- position: absolute;
- top: 6px;
- right: 10px;
- color: #ffffff;
- border: none;
- font-size: 20px;
- width: 22px;
- height: 22px;
- background: #335F87;
- border-radius: 4px;
- border: 1px solid rgba(123, 162, 198, 0.5);
- padding: 0px;
- // display: inline-block;
- text-align: center;
- line-height: 19px;
- }
- .closeBtn:hover {
- background-color: #336968
- }
- .sm-panel-header {
- height: 36px;
- line-height: 36px;
- padding-left: 15px;
- border-bottom: 1px solid rgba(38, 38, 38, 0.6);
- background: url(/static/images/ghzc//second_titlebg.png) no-repeat;
- background-size: 100% 100%;
- background-position: center;
- text-align: left;
- font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
- font-weight: bold;
- font-size: 16px;
- color: #FFFFFF;
- text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
- @media (max-width: 750px) {
- // height: 35px;
- line-height: 35px;
- padding-left: 10px;
- font-size: 13px;
- }
- @media (max-height: 480px) {
- // height: 35px;
- line-height: 35px;
- padding-left: 5px;
- font-size: 13px;
- }
- @media (max-height: 300px) {
- // height: 30px;
- line-height: 30px;
- padding-left: 0px;
- font-size: 12px;
- }
- }
- .headertwo{
- height: 72px;
- }
- .sm-function-module-content {
- // margin: 0.5rem 1rem 1rem 1rem;
- // padding: 5px 10px;
- overflow: auto;
- max-height: 528px;
- // background-color: rgba(23, 23, 23, 0.5);
- scrollbar-width: none;
- /* firefox */
- -ms-overflow-style: none;
- /* IE 10+ */
- @media (max-width: 1000px) {
- margin: 0.8rem 0;
- padding: 0 15px;
- }
- @media (max-width: 750px) {
- margin: 0.5rem 0;
- padding: 0 10px;
- max-height: 410px;
- }
- @media (max-height: 480px) {
- margin: 0.5rem 0;
- padding: 0 15px;
- max-height: 420px;
- max-width: 280px;
- }
- @media (max-height: 300px) {
- margin: 0.5rem 0;
- padding: 0 10px;
- max-height: 280px;
- max-width: 250px;
- }
- @media (max-height: 250px) {
- max-height: 240px;
- }
- }
- .sm-function-module-content::-webkit-scrollbar {
- display: none;
- /* Chrome Safari */
- }
- .sm-function-module-sub-section {
- margin-bottom: 18px;
- overflow: hidden;
- @media (max-width: 1000px) {
- margin-bottom: 1px;
- }
- @media (max-height: 480px) {
- margin-bottom: 1px;
- }
- @media (max-height: 300px) {
- margin-bottom: 0px;
- }
- }
- .sm-function-module-sub-section-setting {
- // font-size: 13px;
- margin: 0 0 8px 0;
- padding: 0;
- }
- .sm-function-module-sub-section-caption {
- margin: 0 0 8px 0;
- padding: 0;
- @media (max-height: 480px) {
- margin: 0 0 2px 0;
- }
- }
- .sm-function-module-btn-highlight {
- color: #009c95;
- border: 1px solid #009c95;
- }
- label {
- font-size: 13px;
- font-weight: 400;
- line-height: 1.8;
- display: inline-block;
- max-width: 100%;
- margin-bottom: 5px;
- @media (max-width: 1000px) {
- font-size: 12px;
- }
- @media (max-width: 750px) {
- font-size: 10px;
- }
- @media (max-height: 480px) {
- font-size: 12px;
- }
- @media (max-height: 300px) {
- font-size: 10px;
- }
- }
- .sm-half {
- /* 用于功能面板一行放两个控件 */
- width: 50%;
- float: left;
- margin: 0;
- padding: 0;
- border: none;
- }
- .sm-input {
- border-radius: 4px;
- -webkit-box-sizing: border-box;
- color: #606266;
- display: inline-block;
- line-height: 40px;
- transition: border-color .2s cubic-bezier(.645, .045, .355, 1);
- height: 25px;
- border: 1px solid #DCDFE6;
- padding: 0px 3px;
- }
- .sm-input-right {
- @extend .sm-input;
- float: right;
- width: 50%;
- }
- .sm-solider-input-box {
- float: right;
- width: 65%;
- @media (max-width: 750px) {
- width: 61%;
- }
- @media (max-height: 480px) {
- width: 61%;
- }
- }
- .sm-solider-input-box:after {
- /*伪元素是行内元素 正常浏览器清除浮动方法*/
- content: "";
- display: block;
- height: 0;
- clear: both;
- visibility: hidden;
- }
- .sm-input-long {
- @extend .sm-input;
- float: right;
- // width: 246px;
- }
- .sm-point {
- width: 5px;
- height: 5px;
- display: inline-block;
- background-color: #3C8DBC;
- border-radius: 50%;
- margin-bottom: 2px;
- }
- .sm-colorpicker {
- float: right;
- height: 12px;
- width: 50%;
- }
- .sm-select {
- width: 50%;
- border-radius: 4px;
- -webkit-box-sizing: border-box;
- color: #606266;
- display: inline-block;
- line-height: 40px;
- -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
- transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
- height: 25px;
- border: 1px solid #DCDFE6;
- padding: 0px 3px;
- @media (max-width: 750px) {
- font-size: 12px;
- height: 21px;
- }
- @media (max-height: 480px) {
- height: 21px;
- font-size: 12px;
- }
- }
- .sm-select-s {
- width: 65%;
- @media (max-width: 750px) {
- width: 64%;
- }
- @media (max-height: 480px) {
- width: 61%;
- }
- }
- .sm-select:after {
- content: '';
- display: inline-block;
- width: 0;
- height: 0;
- border: 5px solid transparent;
- border-top: 6px solid #ffffff;
- position: relative;
- top: 4px;
- left: 80px;
- @media (max-width: 750px) {
- display: none
- }
- @media (max-height: 480px) {
- display: none
- }
- }
- .sm-select-color {
- width: 66%;
- position: relative;
- @media (max-width: 1000px) {
- width: 65%;
- }
- @media (max-width: 750px) {
- width: 60%;
- }
- @media (max-height: 480px) {
- width: 60%;
- }
- }
- html,
- body,
- #app {
- width: 100%;
- height: 100%;
- margin: 0;
- padding: 0;
- overflow: hidden;
- color: #eee;
- position: absolute;
- top: 0;
- left: 0;
- }
- /*--------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------------*/
- /*--------地形裁剪补充 str-----------*/
- /*小标题*/
- //.label-container{
- // display: flex;
- // flex-direction: row;
- // font-size: 13px;
- // margin-bottom: 7px;
- //}
- input:focus {
- outline: none;
- }
- ;
- select:focus {
- outline: none;
- }
- ;
- button:focus {
- // border: none;
- background-color: rgba(121, 120, 120, 0.5);
- outline: none; //消除默认点击蓝色边框效果
- }
- input[type="checkbox"] {
- -webkit-appearance: none;
- width: 14px;
- height: 14px;
- display: inline-block;
- text-align: center;
- vertical-align: middle;
- line-height: 12px;
- border-radius: 2px;
- /*color: #3C8DBC;*/
- border: 1px solid #3C8DBC;
- margin: 0;
- }
- input[type="checkbox"]:checked::before {
- content: "\2713";
- border-color: #3C8DBC;
- color: #3C8DBC;
- }
- .min-input {
- width: 110px;
- height: 26px;
- background: rgba(51, 51, 51, 1);
- border: 1px solid rgba(60, 141, 188, 1);
- border-radius: 4px;
- color: #ffffff;
- padding-left: 10px;
- opacity: 0.8;
- @media (max-width: 750px) {
- width: 102px;
- }
- @media (max-height: 480px) {
- width: 102px;
- }
- @media (max-height: 300px) {
- width: 75px;
- }
- }
- //分析按钮盒子
- .boxchild {
- display: flex;
- justify-content: flex-end;
- margin-top: 10px;
- padding: 5px 0 5px 10px;
- @media (max-width: 750px) {
- margin-top: 5px;
- padding: 3px 0 3px 5px;
- font-size: 12px;
- }
- @media (max-height: 480px) {
- margin-top: 5px;
- padding: 3px 0 3px 5px;
- font-size: 12px;
- }
- @media (max-height: 300px) {
- margin-top: 2px;
- padding: 2px 0 2px 4px;
- font-size: 10px;
- }
- }
- //切换组件选中颜色和标题
- .titleColor {
- color: #009c95;
- cursor: default;
- border-bottom: 1px solid #009c95;
- font-weight: bold;
- }
- .title-txt {
- display: inline-block;
- font-size: 15px;
- padding: 0px;
- margin-right: 5px;
- @media (max-width: 1000px) {
- font-size: 14px;
- }
- @media (max-width: 750px) {
- font-size: 12px;
- }
- @media (max-height: 480px) {
- font-size: 12px;
- }
- @media (max-height: 300px) {
- font-size: 11px;
- }
- }
- //滑块
- input[type="range"]::-webkit-slider-thumb {
- -webkit-appearance: none;
- }
- input[type="range"]::-moz-range-thumb {
- -webkit-appearance: none;
- }
- .min-solider {
- background: rgba(51, 51, 51, 1);
- border: 1px solid rgba(60, 141, 188, 1);
- color: #ffffff;
- opacity: 0.6;
- vertical-align: middle;
- @media (max-width: 750px) {
- width: 63%
- }
- @media (max-height: 480px) {
- width: 63%;
- }
- @media (max-height: 300px) {
- width: 62%;
- }
- }
- //坡度坡向颜色带
- .color-select {
- display: flex;
- flex-wrap: wrap;
- position: absolute;
- justify-content: center;
- width: 48%;
- background-color: rgba(42, 42, 42, 1);
- right: 53px;
- z-index: 1000;
- border: 1px solid rgba(60, 141, 188, 1);
- @media (max-width: 1000px) {
- right: 43px;
- width: 50%;
- }
- @media (max-width: 750px) {
- right: 10px;
- width: 56%;
- }
- @media (max-height: 480px) {
- right: 10px;
- width: 56%;
- }
- }
- .ban {
- margin-bottom: 3px;
- }
- .ban:hover {
- border: 1px solid red;
- }
- .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: 0.4em 4em .01em 6em;
- font-size: 110%;
- color: #fff;
- text-align: center;
- white-space: nowrap;
- vertical-align: baseline;
- border-radius: .25em;
- line-height: 1.1;
- @media (max-width: 750px) {
- padding: 0.4em 5.6em .01em 4em;
- }
- @media (max-height: 480px) {
- padding: 0.4em 5.6em .01em 4em;
- }
- @media (max-height: 300px) {
- padding: 0.4em 4.6em .01em 4em;
- }
- }
- //分析清除按钮
- .tbtn {
- font-weight: 400;
- background-color: rgba(42, 42, 42, 1);
- margin-left: 5px;
- border-radius: 4px;
- color: darkgrey;
- border: 1px solid #686363;
- height: 26px;
- width: 56px;
- font-size: 13px;
- overflow: hidden;
- @media (max-width: 750px) {
- height: 22px;
- width: 50px;
- }
- @media (max-height: 480px) {
- height: 20px;
- width: 50px;
- }
- @media (max-height: 300px) {
- height: 20px;
- width: 45px;
- }
- }
- .tbn1 {
- color: #009c95;
- border: 1px solid #009c95;
- }
- .media-hidden {
- //缩小屏幕时隐藏
- @media (max-width: 750px) {
- display: none;
- }
- @media (max-height: 480px) {
- display: none;
- }
- }
- // 卷帘
- #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;
- }
- //@at-root
- .symbolicLibrary {
- display: flex;
- justify-content: flex-start;
- // background-color: rgba(37, 33, 33,0.8);
- padding: 5px;
- border: 1px solid rgb(58, 150, 78);
- margin-bottom: 18px;
- flex-wrap: wrap;
- .Thematicbox {
- width: 40px;
- height: 45px;
- // background-color: #fff;
- margin-right: 2rem;
- font-size: 12px;
- // color: cl;
- text-align: center;
- .minbox {
- width: 30px;
- height: 30px;
- margin: 0 auto;
- line-height: 29px;
- }
- .iconfont {
- font-size: 24px;
- }
- }
- .lightSelected {
- color: rgb(58, 150, 78);
- }
- }
- .symbolicLibrary::-webkit-scrollbar {
- display: none;
- /* Chrome Safari */
- }
- .ParticleSystem {
- .sm-function-module-sub-section {
- margin-bottom: 0;
- .sm-solider-input-box,
- .sm-select {
- width: 68%;
- }
- }
- }
- .flexbox {
- padding: 2px 6px 0px 6px;
- display: flex;
- align-items: baseline;
- justify-content: space-between;
- margin-bottom: 10px;
- @media (max-width: 750px) {
- margin-bottom: 2px;
- }
- @media (max-height: 480px) {
- margin-bottom: 2px;
- }
- button {
- // background-color: #333;
- color: white;
- }
- }
- .el-pagination__total {
- color: white;
- }
- .flybox {
- display: flex;
- justify-content: space-between;
- // background-color: rgba(37, 33, 33,0.8);
- padding: 5px;
- // border: 1px solid rgb(58, 150, 78);
- margin: 10px 0;
- .imgbox {
- width: 40px;
- height: 40px;
- }
- .imgbox:hover {
- background-color: #127bab;
- }
- }
- /* 滚动条整体样式(高宽分别对应横竖滚动条的尺寸) */
- body::-webkit-scrollbar {
- width: 10px;
- height: 10px;
- }
- /* 滚动条里面小方块 */
- body::-webkit-scrollbar-thumb {
- border-radius: 10px;
- -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
- background: rgba(85, 229, 38, 0.71);
- }
- /* 滚动条里面轨道 */
- body::-webkit-scrollbar-track {
- -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
- border-radius: 10px;
- background: #2a4fd1b3;
- }
- //在全局设置
- input[aria-hidden=true]{
- display: none !important;
- }
|