123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745 |
- *,
- *:before,
- *:after {
- padding: 0;
- margin: 0;
- box-sizing: border-box;
- }
- html,
- body {
- height: 100%;
- font-size: 13px;
- background-color: #f3f3f3;
- font-family: 'Microsoft YaHei','Helvetica Neue',Helvetica,'PingFang SC','Hiragino Sans GB', Arial,sans-serif;
- /* overflow: hidden; */
- }
- .flex {
- display: flex;
- }
- .flex1 {
- flex: 1;
- }
- .flex-around {
- display: flex;
- justify-content: space-around;
- }
- .flex-between {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .flex-end {
- display: flex;
- justify-content: flex-end;
- }
- .flex-align-center {
- display: flex;
- align-items: center;
- }
- .text-center {
- text-align: center;
- }
- .font12 {
- font-size: 12px;
- }
- .main-color {
- color: #228af5;
- }
- .danger-color {
- color: #f56c6c;
- }
- .btm10 {
- margin-bottom: 10px;
- }
- .btm20 {
- margin-bottom: 20px;
- }
- a {
- text-decoration: none;
- cursor: pointer;
- }
- .dialog-full-icon {
- padding: 5px;
- color: #fff;
- position: absolute;
- right: 50px;
- top: 18px;
- font-size: 16px;
- cursor: pointer;
- }
- [v-cloak] {
- display: none;
- }
- #app {
- height: 100vh;
- }
- /* 头部 */
- .header {
- height: 77px;
- flex: 0 0 auto;
- background-color: #fff;
- display: flex;
- }
- .header-item {
- padding: 15px;
- text-align: center;
- color: #333;
- cursor: pointer;
- position: relative;
- }
- .header-item p {
- width: 150%;
- margin-left: -25%;
- }
- .header-item:hover {
- background-color: #cae5fb;
- color: #228af5;
- }
- .header-item.active {
- background-color: #cae5fb;
- color: #228af5;
- }
- .nav-dropdown {
- display: block;
- font-size: 13px;
- color: #333;
- }
- #designer {
- width: 100%;
- height: 100%;
- }
- .main-wrap {
- height: calc(100vh - 77px);
- padding: 10px 0;
- flex: 1;
- }
- .main {
- display: flex;
- padding: 0px;
- height: 100%;
- margin: 0 10px;
- background: #fff;
- border: 1px solid #e5e5e5;
- }
- /* 左侧 */
- .aside {
- height: 100%;
- background-color: #fff;
- border: 1px solid #e5e5e5;
- }
- .el-tree > .el-tree-node {
- display: inline-block;
- min-width: 100%;
- }
- /* el-tree 操作弹出 */
- .contextmenu__item {
- display: block;
- line-height: 34px;
- text-align: left;
- padding: 0 20px;
- }
- .contextmenu__item:not(:last-child) {
- border-bottom: 1px solid rgba(0, 0, 0, 0.1);
- }
- .menu {
- position: fixed;
- background-color: #fff;
- font-size: 14px;
- color: #444040;
- border-radius: 4px;
- border: 1px solid rgba(0, 0, 0, 0.15);
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
- white-space: nowrap;
- z-index: 1000;
- }
- .contextmenu__item:hover {
- cursor: pointer;
- background: #66b1ff;
- border-color: #66b1ff;
- color: #fff;
- }
- .main > div.left {
- flex: 1;
- overflow: hidden;
- padding: 5px;
- }
- .main > div.right {
- flex: 1;
- overflow: hidden;
- padding: 5px;
- border-left: 1px solid #ccc;
- }
- .el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content {
- background-color: #e8f3fe;
- }
- /* 公共弹框样式 */
- .el-dialog {
- border-radius: 8px;
- overflow: hidden;
- }
- .el-dialog__header {
- padding: 15px;
- background-color: #228af5;
- }
- .el-dialog__header .el-dialog__title {
- color: #fff;
- font-size: 16px;
- }
- .el-dialog__headerbtn .el-dialog__close {
- color: #fff;
- font-size: 20px;
- }
- .el-dialog__body {
- padding: 15px;
- border-top: 1px solid #f1f1f1;
- }
- .el-form-item--mini.el-form-item,
- .el-form-item--small.el-form-item {
- margin-bottom: 15px;
- }
- .build-modal .el-dialog__body {
- padding: 0;
- }
- .build-modal .el-card {
- margin-bottom: 10px;
- }
- .build-modal .el-card p {
- line-height: 1.6;
- }
- .build-modal .el-form {
- flex: 0 0 300px;
- margin-right: 30px;
- }
- .build-modal .el-card__header {
- padding: 10px;
- background-color: whitesmoke;
- }
- .build-modal .el-card__body {
- padding: 15px;
- }
- .inline-inputs .el-form-item__content {
- display: flex;
- justify-content: space-between;
- }
- .inline-inputs .el-form-item__content span {
- margin: 0 20px;
- }
- .select-box .el-radio-group {
- display: flex;
- flex-direction: column;
- margin-top: 15px;
- }
- .select-box .el-checkbox-group {
- display: flex;
- flex-direction: column;
- }
- .select-box .el-radio-group label {
- margin-bottom: 20px;
- }
- .select-box .el-checkbox-group label {
- margin-bottom: 15px;
- }
- .nav-icon {
- display: inline-block;
- width: 35px;
- height: 35px;
- margin-bottom: 3px;
- }
- .nav-icon1 {
- background: url(../images/navs/1.png) no-repeat;
- background-size: 100% 100%;
- }
- .nav-icon2 {
- background: url(../images/navs/2.png) no-repeat;
- background-size: 100% 100%;
- }
- .nav-icon3 {
- background: url(../images/navs/3.png) no-repeat;
- background-size: 100% 100%;
- }
- .nav-icon4 {
- background: url(../images/navs/4.png) no-repeat;
- background-size: 100% 100%;
- }
- .nav-icon5 {
- background: url(../images/navs/5.png) no-repeat;
- background-size: 100% 100%;
- }
- .nav-icon6 {
- background: url(../images/navs/6.png) no-repeat;
- background-size: 100% 100%;
- }
- .nav-icon7 {
- background: url(../images/navs/7.png) no-repeat;
- background-size: 100% 100%;
- }
- .nav-icon8 {
- background: url(../images/navs/8.png) no-repeat;
- background-size: 100% 100%;
- }
- .nav-icon9 {
- background: url(../images/navs/9.png) no-repeat;
- background-size: 100% 100%;
- }
- .nav-icon10 {
- background: url(../images/navs/10.png) no-repeat;
- background-size: 100% 100%;
- }
- .nav-icon11 {
- background: url(../images/navs/11.png) no-repeat;
- background-size: 100% 100%;
- }
- .nav-icon12 {
- background: url(../images/navs/12.png) no-repeat;
- background-size: 100% 100%;
- }
- .nav-icon13 {
- background: url(../images/navs/13.png) no-repeat;
- background-size: 100% 100%;
- }
- .nav-icon14 {
- background: url(../images/navs/14.png) no-repeat;
- background-size: 100% 100%;
- }
- .nav-icon15 {
- background: url(../images/navs/15.png) no-repeat;
- background-size: 100% 100%;
- }
- .nav-icon16 {
- background: url(../images/navs/16.png) no-repeat;
- background-size: 100% 100%;
- }
- .nav-icon17 {
- background: url(../images/navs/17.png) no-repeat;
- background-size: 100% 100%;
- }
- .nav-icon18 {
- background: url(../images/navs/18.png) no-repeat;
- background-size: 100% 100%;
- }
- .nav-icon19 {
- background: url(../images/navs/19.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon {
- display: inline-block;
- width: 14px;
- height: 14px;
- margin-right: 5px;
- vertical-align: -2px;
- }
- .tree-icon01 {
- background: url(../images/tree/project-1@2x.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon02 {
- background: url(../images/tree/project-2@2x.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon03 {
- background: url(../images/tree/project-3@2x.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon1, .tree-icon18, .tree-icon20, .tree-icon22 {
- background: url(../images/tree/project@2x.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon2 {
- background: url(../images/tree/class@2x.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon3 {
- background: url(../images/tree/sub-class@2x.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon4 {
- background: url(../images/tree/sub-class-child@2x.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon5 {
- background: url(../images/tree/form@2x.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon6, .tree-icon17, .tree-icon19, .tree-icon21 {
- background: url(../images/tree/floor@2x.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon7 {
- background: url(../images/tree/build@2x.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon8 {
- background: url(../images/tree/form8@2x.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon9 {
- background: url(../images/tree/floor@2x.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon10 {
- background: url(../images/tree/project@2x.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon11 {
- background: url(../images/tree/tong1.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon12 {
- background: url(../images/tree/tong2.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon13 {
- background: url(../images/tree/tong3.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon14 {
- background: url(../images/tree/tong4.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon15 {
- background: url(../images/tree/tong5.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon16 {
- background: url(../images/tree/tong6.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon100 {
- background: url(../images/tree/tong7.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon101 {
- background: url(../images/tree/tong8.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon102 {
- background: url(../images/tree/tong9.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon103 {
- background: url(../images/tree/tong10.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon104 {
- background: url(../images/tree/tong1.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon105 {
- background: url(../images/tree/tong2.png) no-repeat;
- background-size: 100% 100%;
- }
- .tree-icon-company {
- background: url(../images/icons/company.png) no-repeat;
- background-size: 110% 110%;
- }
- .home-content {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- flex: 1;
- }
- .home-content h1 {
- margin-bottom: 50px;
- }
- .home-content img {
- width: 80%;
- height: 50%;
- }
- .dialog-nowrap {
- pointer-events: none;
- }
- .dialog-nowrap .el-dialog {
- pointer-events: auto;
- }
- .el-drawer__wrapper {
- pointer-events: none;
- }
- .el-drawer__wrapper .el-drawer {
- pointer-events: auto;
- }
- /* 新建表格tab ...限制宽度 */
- .sheet-modal .el-tabs__item {
- max-width: 400px;
- overflow: hidden;
- padding: 0 15px 0 10px;
- text-overflow: ellipsis;
- }
- /* 使用element 滚动条样式 */
- ::-webkit-scrollbar {
- z-index: 11;
- width: 6px;
- height: 6px;
- }
- ::-webkit-scrollbar-thumb {
- border-radius: 5px;
- width: 6px;
- background: #b4bccc;
- }
- ::-webkit-scrollbar-corner {
- background: #fff;
- }
- ::-webkit-scrollbar-track {
- background: #fff;
- }
- ::-webkit-scrollbar-track-piece {
- background: #fff;
- width: 6px;
- }
- .ribbon-button-lock {
- background-image: url('../images/icons/lock.png');
- background-size: 100% 100% !important;
- }
- .ribbon-button-unlock {
- background-image: url('../images/icons/unlock.png');
- background-size: 100% 100% !important;
- }
- .ribbon-button-tags {
- background-image: url('../images/icons/tags.png');
- background-size: 100% 100% !important;
- }
- .ribbon-button-check {
- background-image: url('../images/icons/check.png');
- background-size: 100% 100% !important;
- }
- .ribbon-button-clear-source {
- background-image: url('../images/icons/clear.png');
- background-size: 100% 100% !important;
- }
- .ribbon-button-select {
- background-image: url('../images/icons/select.png');
- background-size: 100% 100% !important;
- }
- .gc-ribbon-bar .ribbon-button-item.ribbon-bigbutton {
- min-width: 40px;
- max-width: 60px;
- min-height: 0;
- }
- .grid-box {
- display: flex;
- flex-wrap: wrap;
- border-left: 1px solid #ccc;
- }
- .grid-box > div {
- width: 30px;
- height: 35px;
- text-align: center;
- line-height: 35px;
- color: #000;
- border-bottom: 1px solid #ccc;
- border-right: 1px solid #ccc;
- border-top: 1px solid #ccc;
- cursor: pointer;
- font-size: 18px;
- }
- .grid-box > div:nth-child(n + 21) {
- border-top: none;
- }
- .grid-box > div.checked {
- background-color: #409eff;
- color: #f1f1f1;
- }
- .char-tab .el-tabs__nav,
- .char-tab .el-tabs__content {
- max-height: 300px;
- overflow: auto;
- }
- .char-tab .el-tabs__item {
- height: 25px;
- line-height: 25px;
- font-family: 'chars';
- }
- .char-input .el-input__inner {
- font-family: 'chars';
- }
- .fonts {
- font-family: 'chars';
- }
- .char-pop {
- text-align: center;
- height: 80px;
- line-height: 60px;
- width: 80px;
- font-size: 60px;
- font-family: 'chars';
- }
- /* 拖拽的线 */
- #box {
- width: 100%;
- height: 100%;
- overflow: hidden;
- /* background-color:royalblue; */
- }
- #resize {
- width: 2px;
- height: 100%;
- cursor: w-resize;
- background-color: #ccc;
- float: left;
- position: relative;
- }
- #resize2 {
- height: 5px;
- width: 100%;
- background-color: #ccc;
- cursor: n-resize;
- position: relative;
- }
- #left {
- width: 350px;
- height: 100%;
- /* background:skyblue; */
- float: left;
- overflow: auto;
- }
- #right {
- float: right;
- width: calc(100% - 352px);
- height: 100%;
- /* background:tomato; */
- overflow: auto;
- }
- #top {
- height: 300px;
- width: 100%;
- /* background:skyblue; */
- overflow: auto;
- }
- #bottom {
- height: calc(100% - 305px);
- width: 100%;
- /* background:tomato; */
- overflow: auto;
- }
- .resImg {
- position: absolute;
- top: 0;
- bottom: 0;
- margin: auto;
- width: 12px;
- height: 60px;
- cursor: pointer;
- }
- #resize2 .resImg {
- position: absolute;
- left: 0;
- right: 0;
- margin: auto;
- height: 12px;
- width: 60px;
- cursor: pointer;
- }
- .left-tree {
- flex: 0 0 300px;
- padding: 10px 10px 10px 0;
- border: 1px solid #ccc;
- min-height: 400px;
- height: 100%;
- /* margin-right: 15px;
- border-radius: 5px; */
- overflow: auto;
- }
- .el-table tbody tr:hover > td {
- background-color: unset!important;
- }
- .el-table .cell {
- line-height: 1.2;
- }
- .capacity-cell {
- background-color: rgb(212, 243, 255);
- position: relative;
- }
- .capacity-cell:hover .xuan-btn {
- display: block;
- }
- .xuan-btn {
- position: absolute;
- top: 0;
- bottom: 0;
- margin: auto;
- right: 0;
- padding: 4px;
- display: none;
- }
- .bottom-cell {
- position: relative;
- padding-top: 20px!important;
- }
- .inline-input .el-input__inner {
- padding: 0 4px;
- }
- .scheme-table.el-table .cell {
- padding: 0 5px;
- line-height: 1.3;
- }
- .bottom-cell:hover .opration {
- display: block;
- }
- .opration {
- position: absolute;
- top: 0;
- right: 0;
- display: block;
- border: 1px solid #ccc;
- line-height: 1;
- display: none;
- }
- .opration i {
- cursor: pointer;
- font-size: 14px;
- color: #409EFF;
- border: 1px solid #409EFF;
- }
- .branch-list .el-radio-group {
- display: flex;
- flex-wrap: wrap;
- }
- .branch-list .el-radio-group label {
- flex: 0 0 50%;
- margin-right: 0px;
- margin: 6px 0;
- }
- .input-number input::-webkit-outer-spin-button {
- -webkit-appearance: none;
- }
- .input-number input::-webkit-inner-spin-button {
- -webkit-appearance: none;
- }
- .input-number input[type='number']{
- -moz-appearance: textfield;
- }
- /* table 行内编辑使用 */
- .item_input {
- display: none;
- }
- .item_input .el-input__inner {
- padding: 0px 2px;
- height: 18px;
- line-height: 18px;
- }
- .text-overflow {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .is-tooltipStyle {
- max-width: 20%;
- color: #fff;
- background-color: #444040;
- }
|